Search:

Type: Posts; User: Grantyt3

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: Snake

    by Grantyt3
    Replies
    2
    Views
    3,112

    Snake

    Well, I'm well into a snake game, but I'm having issues with storing the snake "pieces". At first I was planning on using vectors, but people suggested to me using a ring queue. I'm wondering what...
  2. Replies
    3
    Views
    2,903

    Yep, I got it working, thanks!

    Yep, I got it working, thanks!
  3. Replies
    3
    Views
    2,903

    Make a Variable Available to All Classes?

    I'm relatively new to classes, and I'm trying to figure out something:

    I have two classes, and they both need to access a boolean array, but if I declare that array in one of the classes, even if...
  4. Replies
    4
    Views
    2,974

    The problem with Resource Hacker is that when I...

    The problem with Resource Hacker is that when I open the .exe file, nothing shows up for me to change like it does with any other .exe file that already has an icon. I guess I need a program that can...
  5. Replies
    4
    Views
    2,974

    IconWorkshop isn't free though

    IconWorkshop isn't free though
  6. Replies
    4
    Views
    2,974

    Free Exe Icon Changer?

    Does anyone know of a free .exe icon changer? Because the .exe files that are created with Visual Studio don't have an icon and I want to put my own icon.
  7. Thread: Really Weird

    by Grantyt3
    Replies
    1
    Views
    847

    Really Weird

    for(int i = 0; i < 5; i++)
    {
    expblity = expblity + 64;
    for(int x = 0; x < 5; x++)
    {
    expblitx = expblitx + 64;
    blit(explode,exps[x][i],0,0,0,0,expblitx,expblity);
    }
    }
  8. Replies
    1
    Views
    1,081

    Writing For Other Platforms

    How do you write programs for PocketPC's, PalmOS and phones? What do you do differently from writing computer programs?
  9. Replies
    8
    Views
    2,417

    Nevermind, It works now. Thanks! I still don't...

    Nevermind, It works now. Thanks! I still don't see why itoa did what it did though, but I guess it doesn't matter.
  10. Replies
    8
    Views
    2,417

    All it did is flicker "Score: -1". OH wait, it...

    All it did is flicker "Score: -1". OH wait, it was flickering because I didn't draw it to the buffer first.
  11. Replies
    8
    Views
    2,417

    What do you mean non-standard? There both Allegro...

    What do you mean non-standard? There both Allegro functions.
  12. Replies
    8
    Views
    2,417

    But this doesn't seem to be a problem with the...

    But this doesn't seem to be a problem with the output of text, just the conversion.
  13. Replies
    8
    Views
    2,417

    Really Weird itoa Problem

    For my breakout clone, I need to convert the integers for the score and the level number into arrays of characters so I can display them on the screen with Allegro's textout function. I searched on...
  14. Replies
    10
    Views
    1,988

    Nevermind, I fixed it.

    Nevermind, I fixed it.
  15. Replies
    10
    Views
    1,988

    ballx and bally are always positive. I'm...

    ballx and bally are always positive. I'm confused: You make an array like blocks[x][y] right? But don't you access the information like blocks[y][x]? This always happens. Actually, I counted wrong,...
  16. Replies
    10
    Views
    1,988

    There, it's fixed.

    There, it's fixed.
  17. Replies
    10
    Views
    1,988

    No, that is the exact code. I copy and pasted,...

    No, that is the exact code. I copy and pasted, but it took the [i] part out because it thought I was trying to italisize.
  18. Replies
    10
    Views
    1,988

    OH wait, it's not like that in the actual CPP...

    OH wait, it's not like that in the actual CPP file. I think it got taken out because it thought I was trying to italisize something. But it's not actually like that so that's not it.
  19. Replies
    10
    Views
    1,988

    Oops, why didn't I catch that? That's definately...

    Oops, why didn't I catch that? That's definately messed up. I'll fix that and see if it makes a difference.
  20. Replies
    10
    Views
    1,988

    My Breakout Clone is Insane

    This seems really strange to me. I've tried over and over to fix it myself, but I just can't see what the problem is. I'm making a breakout clone, you know where you control the paddle and you hit...
  21. Replies
    8
    Views
    1,402

    I looking for, I guess it would be called, a GUI...

    I looking for, I guess it would be called, a GUI Library that would have functions that would allow you to create a GUI for your program. Like how I'm using Allegro for graphics functions, I would...
  22. Replies
    8
    Views
    1,402

    Good Free GUI?

    I'm wondering if any of you know of a good free C++ GUI?
  23. Thread: Allegro

    by Grantyt3
    Replies
    1
    Views
    937

    Allegro

    Does anyone who wants to play a game I made with Allegro, have to have Allegro installed?
  24. Replies
    3
    Views
    6,010

    Oh oops. Was it supposed to be if(collision ==...

    Oh oops. Was it supposed to be if(collision == true)?

    It still thinks that it's always colliding...
  25. Replies
    3
    Views
    6,010

    Collision Detection

    The final hurdle in my little snake game: collision detection. I read a tutorial on Allegro collision detection, and used their method. I have the snake, and I have the little fruit that you have to...
Results 1 to 25 of 55
Page 1 of 3 1 2 3