Search:

Type: Posts; User: Justin W

Page 1 of 15 1 2 3 4

Search: Search took 0.03 seconds; generated 57 minute(s) ago.

  1. Replies
    3
    Views
    1,273

    Thanks for the direction. :)

    Thanks for the direction. :)
  2. Replies
    5
    Views
    2,133

    He is placing the bitmap in two places.

    He is placing the bitmap in two places.
  3. Replies
    3
    Views
    1,273

    Running in back until summoned.

    This has got to be a stupid question, but here's what I'm doing. A parent process gives control to a child process and minimises itself. As the child process runs (which is not limited to programs...
  4. Replies
    56
    Views
    8,765

    :eek: Oh, hi hun. *cough* Calling ya now. :D

    :eek: Oh, hi hun. *cough* Calling ya now. :D
  5. Thread: Tile engines

    by Justin W
    Replies
    7
    Views
    2,706

    The problem isn't with the switch statement, it...

    The problem isn't with the switch statement, it is with this:
    tilebuffer=load_bitmap("castlefloor.bmp",default_palette);

    You do this for each tile and every time is access the hard drive to load...
  6. Thread: Tile engines

    by Justin W
    Replies
    7
    Views
    2,706

    Might try some Borland sites and user groups for...

    Might try some Borland sites and user groups for tile engines then. If you do go with Allegro, there are a myriad of those things as well. www.allegro.cc is a good place to start the search - there...
  7. Replies
    41
    Views
    8,183

    Poll: Borland 5.5:...

    Borland 5.5: http://www.borland.com/bcppbuilder/freecompiler/cppc55steps.html
  8. Thread: Tile engines

    by Justin W
    Replies
    7
    Views
    2,706

    What are you using as a graphics lib? Often an...

    What are you using as a graphics lib? Often an appropriate tile engine tutorial will be available for specific graphics library.
  9. Replies
    8
    Views
    2,102

    What version of Borland's compiler do you have? ...

    What version of Borland's compiler do you have? See my sig for a graphcial installer for Allegro with Borland that requires no make or command line at all. ;) Has worked with all versions of...
  10. Replies
    9
    Views
    1,941

    It sticks to the top of the screen (though you...

    It sticks to the top of the screen (though you may continue shooting more if you like). Is that what you are trying to get rid of? There are two ways to do this. 1) Send the bullet flying past the...
  11. Replies
    14
    Views
    3,314

    I horde, especially electronically. I have...

    I horde, especially electronically. I have everything (that hasn't been accidentally wiped out) I've ever done since the 80s, often with multiple copies. Sometimes it is fun to go back with them......
  12. Replies
    2
    Views
    1,310

    There are as many ways to do this as you can be...

    There are as many ways to do this as you can be creative. One way would be to use collision detection with your character and the ground. Possibly by outlining ground objects with a certain special...
  13. Replies
    9
    Views
    1,941

    OK, I see what's going on. The biggest problem...

    OK, I see what's going on.

    The biggest problem is this:
    void showBuffer ();
    {

    blit (buffer, screen, 0, 0, 0, 0, 640, 480);
    }

    Does not declare a function because of the semicolon after...
  14. Replies
    9
    Views
    2,274

    Poll: Well, I will disagree because refreshing the map...

    Well, I will disagree because refreshing the map on a console looks awful. gotoxy() will be good experience because it resembles dirty rectangles in "regular" games.
  15. Replies
    9
    Views
    1,941

    OK, what exactly do is happening now? Or,...

    OK, what exactly do is happening now? Or, rather, what do you want to happen? Does left and right still work the way you want it to? But not up and down? If so, then there must be a difference...
  16. Replies
    7
    Views
    1,589

    This actually works quite well if the typical...

    This actually works quite well if the typical machine is vastly overpowering your game. In this case, they all run at equal speeds. However, if there is a chance the game will run on older...
  17. Replies
    9
    Views
    1,941

    for(int w=0;w

    for(int w=0;w<50;w--)

    w is always less than 50, thus it is an infinite loop. (Actually, it would eventually overflow the integer and thus become greater than 50, but with screen refresh times,...
  18. Replies
    12
    Views
    3,863

    Patch XP. As much as possible. If you got an...

    Patch XP. As much as possible. If you got an OEM, then you can get a blue screen of death from something as insignificant as adding RAM, so for a new computer I would recommend reinstalling before...
  19. Replies
    7
    Views
    1,487

    Hence the registry installer. When you install...

    Hence the registry installer. When you install your program, then your installer can remove a previous version..
  20. Replies
    2
    Views
    1,042

    Yeah I use Gnome for my XP... ;) ... .......

    Yeah I use Gnome for my XP... ;)

    ...

    .... classic though. And get that "Bliss" background away from me! :p
  21. Thread: Help

    by Justin W
    Replies
    2
    Views
    935

    If it is 5.5 from the command line, be sure you...

    If it is 5.5 from the command line, be sure you have:

    -Ic:\bcc55\include -Lc:\bcc55\lib

    as switches for the compiler, where bcc55 is wherever you put the compiler. I'd write a batch file to...
  22. Thread: game loop

    by Justin W
    Replies
    3
    Views
    1,498

    Typically speaking, one loop through the "game...

    Typically speaking, one loop through the "game loop" usually represents a "frame" in the animation of the game.



    start_loop:
    Update game logic (where is everyone and why).
    Write picture to...
  23. Thread: gamecode

    by Justin W
    Replies
    17
    Views
    2,517

    Here's some rough code to do the trick. Mind you...

    Here's some rough code to do the trick. Mind you this has the opposite effect that once it starts moving, it doesn't stop. Not difficult to see how to modify it to stop after a while though, or...
  24. Replies
    6
    Views
    2,328

    LOL :D Yay! I have top posts in 6 places...

    LOL :D

    Yay! I have top posts in 6 places right now! I should be fired! Back to work!
  25. Replies
    7
    Views
    1,487

    Making it require an installer could help for a...

    Making it require an installer could help for a single drive, as the registry entries would have to be particular to where it's been put. Then make them register the program with the code as...
Results 1 to 25 of 371
Page 1 of 15 1 2 3 4