Search:

Type: Posts; User: TWIXMIX

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,196

    Hey, It's pretty simple to link allegro if you...

    Hey, It's pretty simple to link allegro if you have it installed and are compiling via the command line. Simply:

    1)cd to your source location.
    2)run gcc -lalleg-4.2.2 sourcefiles.c

    Obviously,...
  2. Replies
    9
    Views
    2,746

    I'd probably give a stack of try, read up on it...

    I'd probably give a stack of try, read up on it if you don't know how to implement them.

    They work on a last in last out basis so just do checks that way. It's actually a pretty simple problem...
  3. Replies
    7
    Views
    2,067

    Okay, I purchased C++ Programming by Larry Ullman...

    Okay, I purchased C++ Programming by Larry Ullman and Beginning Game Programming by Michael Morrison. Hopefully these books are decent, the store didn't have a huge selection.
  4. Replies
    7
    Views
    2,067

    20 views no replies?

    20 views no replies?
  5. Replies
    8
    Views
    2,367

    Allegro is a simple choice if you want to begin...

    Allegro is a simple choice if you want to begin with that.

    THere are some decent tutorials at http://www.loomsoft.net/resources/alltut/alltut_index.htm
  6. Replies
    7
    Views
    2,067

    C and Game Programming Books

    I'm looking into buying a few books. Some C/C++ programming books and maybe a few specific to game programming.(2d or 3d)

    I was wondering if you guys had any books that you could recommend. These...
  7. Replies
    43
    Views
    11,032

    I'll help you with some beta testing Bubba. My...

    I'll help you with some beta testing Bubba. My email address is <<snipped>>
  8. Replies
    32
    Views
    4,714

    I'll help you out. I've been looking for a...

    I'll help you out. I've been looking for a programming partner for awhile. We just have to layout what style we're going to program with so we don't get confused.
    You can contact me at...
  9. Thread: Need testers

    by TWIXMIX
    Replies
    5
    Views
    2,317

    I'm willing to help with the beta test. You can...

    I'm willing to help with the beta test. You can add me to msn at: [email protected]
  10. Replies
    4
    Views
    1,212

    Yea, I forgot to remove the dAlive before I...

    Yea, I forgot to remove the dAlive before I posted here. I took that out of my code.
    Thanks for the advice, I'll look into it.
  11. Replies
    4
    Views
    1,212

    Program Not Functioning Correctly

    Hello,
    I'm in the process of creating a dog simulation program to see what c++ I remember. I am having a problem, though. When my dog dies, I would like to it go back to the init function. I can do...
  12. Replies
    11
    Views
    2,706

    There you go. I had to take some stuff out but...

    There you go.
    I had to take some stuff out but it should still work.
  13. Replies
    11
    Views
    2,706

    they are in the textures folder , which is right...

    they are in the textures folder , which is right off of where the .exe is.
    I already tried putting them in the same directory as the executable but I still got nothing.
  14. Replies
    11
    Views
    2,706

    OKay I have got it all going and I set up a...

    OKay I have got it all going and I set up a little thing to tell me if the textures are loading correctly.

    They're not.
    THere is now reason, that I can see, which would cause my textures to not...
  15. Replies
    11
    Views
    2,706

    oops... I forgot about the whole non-gif thing. ...

    oops... I forgot about the whole non-gif thing.

    Thanks alot.

    I'll test that out again.
  16. Replies
    11
    Views
    2,706

    Here is the source. It is a basic 2D tile engine....

    Here is the source. It is a basic 2D tile engine.



    #include <allegro.h>
    #include <string>
    #include <fstream>
    using namespace std;

    void drawMap(BITMAP *b, int sx, int sy);
  17. Replies
    11
    Views
    2,706

    ERROR BUILDING .EXE. Can someone help.

    I'm trying to make a basic 2D tile engine with allegro and I'm getting this error:

    SVCRT.lib(crtexew.obj) : error LNK2001: unresolved external symbol _WinMain@16
    tileEngine.exe : fatal error...
  18. Thread: SDL or Allegro

    by TWIXMIX
    Replies
    29
    Views
    4,431

    I really just wanted to do some 2d graphic games....

    I really just wanted to do some 2d graphic games.
    anyone got any tutorials for any of these?
  19. Thread: SDL or Allegro

    by TWIXMIX
    Replies
    29
    Views
    4,431

    SDL or Allegro

    I'm fairly good ar c++ and I want to move on to something other the the dos window.

    I'm trying to figure out which graphics library to use.
    Keep in mind that I'm sort of a noob.

    Anyone got any...
  20. Replies
    12
    Views
    2,324

    I don't know how to help you but I have one thing...

    I don't know how to help you but I have one thing to tell you.
    Put your code in the code tags to make it alot easier to read.
  21. Replies
    6
    Views
    2,293

    Hey, everything works fine for me. No flickering...

    Hey, everything works fine for me.
    No flickering of the mouse or screen.

    Anyway, jverkoey, everything looks good. It's a good start to your idea.
    I can't wait until I can program something like...
  22. Replies
    7
    Views
    1,820

    yea I noticed the playerWin bool. I forgot I...

    yea I noticed the playerWin bool.
    I forgot I made that :confused:
    I know what the problem is now though.
    Thx alot guys
  23. Replies
    7
    Views
    1,820

    I'm having a problem with this line in my code...

    I'm having a problem with this line in my code now

    playerWin(array, 3, 3);

    The error says : "playerWin" cannot be used as a.

    thats all it says.

    Ive tried ...
  24. Replies
    7
    Views
    1,820

    playerWin(array, 3, 3); THere seems to be a...

    playerWin(array, 3, 3);


    THere seems to be a problem there
  25. Replies
    7
    Views
    1,820

    Tic Tac Toe Problem. Need HELP!!!!

    #include <iostream>
    #include <time.h>
    using namespace std;
    void playerTurn(int *playerPickRow, int *playerPickCol);
    void compTurn(int *compPickRow, int *compPickCol);
    void playGame();
    void...
Results 1 to 25 of 57
Page 1 of 3 1 2 3