Search:

Type: Posts; User: The Dog

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    15
    Views
    3,305

    Okay, so I've sorted out all the niggling...

    Okay, so I've sorted out all the niggling issues... Now onto 3d rendering.

    How would I go about using IBillboardSceneNode for my 2d objects?
    I don't want to resort to using draw2dImage()...
  2. Replies
    15
    Views
    3,305

    Thanks, i'll check it out..

    Thanks, i'll check it out..
  3. Replies
    15
    Views
    3,305

    No not those kinds of issues. Some of the...

    No not those kinds of issues. Some of the bullets that are supposed to vanish, just stay at the edge of the screen. It's weird because not all of the bullets do it. I'm assuming the screen is...
  4. Replies
    15
    Views
    3,305

    Thanks, those screenshots are using Gosu, which...

    Thanks, those screenshots are using Gosu, which uses OpenGL. I've updated my code to use Irrlicht, but I'm experiencing issues and I'm now questioning the value of using 3d as opposed to accelerated...
  5. Replies
    15
    Views
    3,305

    don't have anything close to a game yet... just...

    don't have anything close to a game yet... just the ability to render the bullet patterns...
  6. Replies
    15
    Views
    3,305

    Thanks. Managed to convert my project in an hour...

    Thanks. Managed to convert my project in an hour or two... Some rendering issues, but I'll figure them out...
  7. Replies
    15
    Views
    3,305

    I'm currently using gosu, which is cross platform...

    I'm currently using gosu, which is cross platform and object oriented. I'm not keen on using something like SDL or the newly released allegro.

    Also, I'm looking for an sdk that abstracts lower...
  8. Replies
    15
    Views
    3,305

    Game engine advice

    Hi

    I've written a small demo showing off a bulletml script... The game will basically be a typical shmup with a few gameplay twists (haven't figured them all out yet...).

    What I want is a 3d...
  9. >> There is a simple solution to your problem....

    >> There is a simple solution to your problem. You don't need to 'find' empty holes or array indices if you never have any. So what type of data structure has or could have constant time insertion...
  10. Hi Bullets are created and removed outsidet...

    Hi

    Bullets are created and removed outsidet the game's update method as I'm utilising BulletML and because I prefer it this way. The overhead of the iteration required for updating active bullets...
  11. Minimizing array lookup times using effective indexing...?

    Hi

    I've decided to get into games development and have quite a bit of catching up to do.
    Currently, I'm writing a shmup engine (which I've done before, but I lost my code!).

    For my bullets, I...
  12. Thread: Wierd problem

    by The Dog
    Replies
    7
    Views
    17,593

    Remove the file output stream and use printf...

    Remove the file output stream and use printf instead, then check to see if does the same thing...
  13. Replies
    2
    Views
    10,296

    No it's not the same memory. If you need space...

    No it's not the same memory. If you need space for a string, use malloc.
    Once you've allocated memory for it, don't re-assign the pointer for example:



    char *s1 = malloc(80);

    strcpy(s1,...
  14. Replies
    7
    Views
    3,558

    HINT: Why do you need to check if a character is...

    HINT: Why do you need to check if a character is a consonant if you've already ascertained that it is a vowel?

    *EDIT*

    I've just read your printf's now... Change the false printf's to be "The...
  15. Replies
    4
    Views
    1,220

    Hi Theoretically, yes! But the fields in a...

    Hi

    Theoretically, yes! But the fields in a delimited file should not contain the delimiter themselves,
    so the parsing might fail when that happens, which may be okay.

    Is there a way to use...
  16. Replies
    4
    Views
    1,220

    Hi Basically, everything between the delimiter...

    Hi

    Basically, everything between the delimiter which, in this case is a ','.
    The fields themselves may have extra delimiters which, in this case is a '"'.

    So the matching should be:

    (1)...
  17. Replies
    4
    Views
    1,220

    Regex: Corrct expression to use.

    Hi

    I'm looking for a fast expression to parse a file which contains potentially millions of records
    such as the following:



    "363111000686","923028199557","923456973171","03-01-2008...
  18. Thread: newb question

    by The Dog
    Replies
    3
    Views
    2,250

    I'd suggest using a Factory.

    I'd suggest using a Factory.
  19. Replies
    6
    Views
    1,949

    Print the output you get, as well the input to...

    Print the output you get, as well the input to the function...
  20. A copy of the pointer is passed. Regardless of...

    A copy of the pointer is passed. Regardless of the content, the fact that it's a copy is the important.
  21. You have two options: 1) Return a newly...

    You have two options:

    1) Return a newly allocated pointer.
    2) Pass a reference to the original pointer to the function. (So the function will accept a **)

    Don't give up, struggle until you...
  22. Replies
    2
    Views
    1,906

    I haven't touched C in a long time, but memory...

    I haven't touched C in a long time, but memory allocation isn't mandatory for structs. They are treated as normal variables and placed on the stack...
  23. Replies
    4
    Views
    1,202

    Be simple. The original string has 7 characters,...

    Be simple. The original string has 7 characters, so make space for str1.

    Also, your logic is completely flawed.

    str must move from the back to the front (decrement the pointer),
    and str1 must...
  24. Replies
    8
    Views
    1,685

    What's the format of the file? What is...

    What's the format of the file?
    What is 'playerrecords'? What does it look like?

    >> Am i just doing this backward or am i missing something simple?
    What errors do you get?
  25. Replies
    4
    Views
    3,656

    Thanks BobS0327. Will give ur code a go. ...

    Thanks BobS0327.

    Will give ur code a go.

    Thanks again.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4