Search:

Type: Posts; User: aresashura

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,230

    UPDATED

    For the person that said the mouse would be cool here is the update with implemented mouse have fun
  2. Replies
    3
    Views
    1,230

    I am pretty sure you can just take that out and...

    I am pretty sure you can just take that out and compile it cause all it is for is making a .pch file so try that if not I will give you StdAfx.h and StdAfx.cpp
  3. Replies
    3
    Views
    1,230

    Source for WinTicTacToe

    Here is the source for WinTicTacToe. It is not as functional as the .exe I posted but I am working on it I hope to implement the mouse later on but here you go for now.

    Ryan
  4. Replies
    1
    Views
    1,990

    I think 4.5 try going to www2.discreet.com and...

    I think 4.5 try going to www2.discreet.com and check it out

    Ryan
  5. Replies
    7
    Views
    1,394

    FIGURED OUT THE PROBLEM

    When I copied it on to the disk the disk is corrupted so I will find a better disk and put it on here. Sorry it does create and illegal operation. SO SORRY

    Ryan


    Ok this one works CROSS MY...
  6. Replies
    7
    Views
    1,394

    Sorry

    I just don't really wanna post the source code. It performs and Illegal operation can I see what the error is? HMM that's strange cause it works on the old PI 133 at school then my PII 233 and my...
  7. Replies
    7
    Views
    1,394

    Windows Tic Tac Toe

    You don't see many of these around so here have fun it is only 2 player with no AI I am gonna start the code over so I can tighten it up and put some AI on there and tell me what you think of the...
  8. Windows Games

    Would the GDI functions in Windows be fast enough for a Mario game or even a zelda game cause there really isn't that much going on in these games (well mario anyways). Another question for Zelda...
  9. Replies
    5
    Views
    3,649

    I have already learned a lot of C++

    I wouldn't wanna switch to C and start learning that I am not saying that I am a master at C++ but I know enough not to wanna switch over and start relearning stuff. Also zen by reading all your...
  10. Replies
    5
    Views
    3,649

    Books Books Books

    I need a good book for DirectDraw and Direct3d I picked up a book recently Advanced 3-D game programming by adrian perez I don't really like it. I mean it what direct draw does and such but then...
  11. As I said in my first post this is a ways away...

    As I said in my first post this is a ways away also by real I mean code created by myself not cut and copy. I didn't not mean it as me picking up a book reading it and then busting out Zelda.
    ...
  12. Replies
    30
    Views
    4,969

    Sorry about that last reply I accidently hit...

    Sorry about that last reply I accidently hit Submit Reply.

    OK what you wanna do is have a macro that prints out blah+=1; and blah2+=1;

    alright if that is true try this

    #define...
  13. Replies
    30
    Views
    4,969

    Sounds like like you need to overload a operator....

    Sounds like like you need to overload a operator. Unless you NEED to do this with a macro.
  14. Replies
    2
    Views
    2,035

    Good Game Programming Books

    Anybody have suggestions for good Game Books I have Advanced 3d Game programming with DirectX 7.0. Thanks

    Ryan
  15. Replies
    5
    Views
    1,993

    The compiler wouldn't take the \ as a...

    The compiler wouldn't take the \ as a continuation at school so I am wondering if that is what you are having problems with here is the revised version.


    #include <iostream.h>

    #ifndef...
  16. Replies
    5
    Views
    1,993

    Here it is compiled

    Here it is compiled
  17. Replies
    5
    Views
    1,993

    Mine worked on my computer what do you mean by...

    Mine worked on my computer what do you mean by stray escape sequences??? Thanks

    Ryan
  18. Replies
    30
    Views
    4,969

    You wanna print a Variable name?????

    Try using the stringizing operator

    #define PRNVARIABLE(a, b) cout << #a << " = " << a;

    void main()
    {
    PRNVARIABLE(a, a)
    }

    what the stringizing operator does it just prints out what you...
  19. Replies
    5
    Views
    1,993

    Check my Tic Tac Toe game for bugs please

    it is at this thread http://www.cprogramming.com/cboard/showthread.php?s=&postid=49010&t=8654#post49010. Thanks everyone that uses it :)

    Ryan
  20. Replies
    5
    Views
    5,114

    here is my version just finished tonight have not...

    here is my version just finished tonight have not worked out all bugs cause haven't had any but anyways if I was to do AI I would just have it do a random number between 1 and 9 until it finds a...
  21. Replies
    5
    Views
    5,114

    I am also in the middle of a Tic Tac Toe game. I...

    I am also in the middle of a Tic Tac Toe game. I don't know what you mean by MINIMAX and alpha beta algorithms. I am currently using a 2 dimensional array. I recently learned how to pass a 2d...
  22. Thread: easy help

    by aresashura
    Replies
    4
    Views
    1,355

    Alright the reason is you initialized value as a...

    Alright the reason is you initialized value as a char instead of an int. I changed and it worked.

    #include <iostream.h>
    #include <conio.h>

    int frompto();
    int fromotp();

    int frompto() ...
  23. Replies
    4
    Views
    1,879

    if you mean print in text mode try this ...

    if you mean print in text mode try this

    #include <iostream.h>

    void main()
    {
    cout << "I am printing to the screen";
    }

    the #include directive with <iostream.h> is necessary for using the...
  24. Replies
    2
    Views
    1,420

    I believe there is also a itoa (integer to alpha...

    I believe there is also a itoa (integer to alpha numeric). What do you mean clear out string without deleting?? Or if you just wanna put an integer at the end of string use strcat() adds a string...
  25. People interested in Joint game making in the future

    Alright this is probably WAY early but might as well start looking now and maybe getting some ideas but would any of you game programmers out there be willing to create a zelda game? I think that is...
Results 1 to 25 of 66
Page 1 of 3 1 2 3