Search:

Type: Posts; User: Tazar_Azar

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds; generated 38 minute(s) ago.

  1. Replies
    5
    Views
    1,005

    In follow-up: // vector add const...

    In follow-up:


    // vector add
    const CVector operator+(const CVector &vec) const
    {
    return CVector(x + vec.x, y + vec.y, z + vec.z);
    }

    // vector add...
  2. Replies
    1
    Views
    3,401

    www.gametutorials.com = your new mommy! its a...

    www.gametutorials.com = your new mommy! its a great site ;) and has a tutorial on what you want.
  3. Thread: Bitmaps

    by Tazar_Azar
    Replies
    17
    Views
    2,137

    BitBlt works fine. Go to GameTutorials...

    BitBlt works fine. Go to GameTutorials and read the "Displaying a Bitmap" Tutorial in the win32 section. Should work quite nicely :).
  4. Replies
    3
    Views
    1,663

    Or even better, contact me. AIM: Gamer Tazar......

    Or even better, contact me. AIM: Gamer Tazar... I am the one hes asking this for. For more information on what he means:

    In a game in OpenGL, how would you make it go from the Title Screen in...
  5. Replies
    8
    Views
    2,538

    They are going to make another website......

    They are going to make another website... criminal news is very, very, very dumb...
  6. Replies
    7
    Views
    1,606

    not sure if i understandyou so imma guess you...

    not sure if i understandyou so imma guess you could just put:




    case VK_RIGHT:

    if (amntxrot <= 360) {
    amntxrot += 1.0f; //assuming you have floats and this is for increasing degrees
  7. Replies
    3
    Views
    12,557

    GameTutorials (http://www.gametutorials.com) has...

    GameTutorials has a tutorial on getting the FPS (in OGL). Exactly what yer lookin for :).
  8. Replies
    6
    Views
    1,349

    Actually, gametutorials does start you out from...

    Actually, gametutorials does start you out from the beginning. Very beginning. Like my big tutorial will that i will have more time to work on once school is out. Teachers are bombing us with...
  9. Thread: Screensaver

    by Tazar_Azar
    Replies
    4
    Views
    2,190

    I am thinking of making a quick screen saver with...

    I am thinking of making a quick screen saver with OpenGL, does the "scrnsave" library work with that? Where can i access it, and does it have documentation for how to use it? Thanks.
  10. Replies
    25
    Views
    3,314

    According to NeHe's tutorials, this stops a...

    According to NeHe's tutorials, this stops a screensaver:


    case WM_SYSCOMMAND:

    case WM_SCREENSAVER: //i think that, or maybe SCREENSAVERSTART

    return 0; //this stops it from starting
    ...
  11. Replies
    3
    Views
    1,086

    flikm, maybe i can help a little, i will IM you...

    flikm, maybe i can help a little, i will IM you tonight im not that great though.
  12. Replies
    5
    Views
    1,064

    double buffering/backbuffering works best. that...

    double buffering/backbuffering works best. that way the images don't flicker. (this is for windows, i don't know what else you use it for = | ). www.gametutorials has a tutorial on it, it is...
  13. Replies
    21
    Views
    2,715

    I am learning OpenGL now, its great! and not hard...

    I am learning OpenGL now, its great! and not hard either.
  14. Replies
    12
    Views
    4,053

    I have a code to get it in OGL at home, i am at...

    I have a code to get it in OGL at home, i am at school right now. I'll post the function when i get home, if you want it in OGL.
  15. Replies
    7
    Views
    1,647

    yea, it depends on the OS what the button will...

    yea, it depends on the OS what the button will look like. I have only had W98 and now have XP HE. If you put the button code (ask if you need) it will appear like XP wants it too. If you want some...
  16. Replies
    7
    Views
    1,647

    yea, it depends on the OS what the button will...

    yea, it depends on the OS what the button will look like. I have only had W98 and now have XP HE. If you put the button code (ask if you need) it will appear like XP wants it too. If you want some...
  17. Replies
    4
    Views
    2,545

    In the dialog resource editor select the...

    In the dialog resource editor select the slider...

    I know you use MSVC++ okie :). I will talk to you on AIM tonight then maybe.
  18. Replies
    5
    Views
    1,065

    If you are using Dev-C++ then all you gotta do is...

    If you are using Dev-C++ then all you gotta do is go to:

    Options --> Compiler Options --> Linker Tab -->

    Then check the COmpile as win32.

    Something like that, i use MSVC right now.
  19. Replies
    11
    Views
    2,123

    Xterria: Rogue is a console game where you move...

    Xterria: Rogue is a console game where you move around the character RPG i think...

    Invicible: His icon is from his game Doom 2-D. Right Xterria?
  20. Thread: Pong

    by Tazar_Azar
    Replies
    9
    Views
    1,400

    Using regular win32, load a bitmap like GT says,...

    Using regular win32, load a bitmap like GT says, i don't know anything about DirectX or allegro...
    here is the link, its towards the bottom of the page:
    ...
  21. Thread: First Game

    by Tazar_Azar
    Replies
    15
    Views
    1,775

    Got it! Here is the link, its called "Vector...

    Got it! Here is the link, its called "Vector Based Collision" or something like that, i believe its exactly what you want. It features a ball bouncing off of the sides of the window, if you have any...
  22. Thread: First Game

    by Tazar_Azar
    Replies
    15
    Views
    1,775

    I think it has to do with Vectors or something......

    I think it has to do with Vectors or something... I don't ecall if they have a tutorial on that. I am at school now so I can't go to it since it has "game" in its link. I do remember seeing a...
  23. Thread: First Game

    by Tazar_Azar
    Replies
    15
    Views
    1,775

    I would like to know also, but I just kind of...

    I would like to know also, but I just kind of started already using my knowledge from gametut's... if only i could delete them wicked buttons! Then I could continue...
  24. Thread: battleship

    by Tazar_Azar
    Replies
    10
    Views
    5,372

    And so it seems i do everything that takes up...

    And so it seems i do everything that takes up more lines! It makes it more organized for me. Always use brackets on if's, declare variables on different lines, etc..
  25. Replies
    54
    Views
    5,188

    Lol, I just seen your Picture thing Frenchfry! ...

    Lol, I just seen your Picture thing Frenchfry! Is newbiesoft really a group? that would be a great group for me!
Results 1 to 25 of 57
Page 1 of 3 1 2 3