Search:

Type: Posts; User: ~Kyo~

Page 1 of 14 1 2 3 4

Search: Search took 0.02 seconds.

  1. Thread: Graphic library

    by ~Kyo~
    Replies
    5
    Views
    3,330

    www.allegro.cc It is cross platform and...

    www.allegro.cc
    It is cross platform and pretty straightforward.
  2. Thread: 2D vision engine

    by ~Kyo~
    Replies
    3
    Views
    3,008

    I had given up on this site and posted on...

    I had given up on this site and posted on dreamincode.net ... What was happening is that there are some issues where the vertices get out of order(best description I can give) which makes the...
  3. Replies
    10
    Views
    1,450

    i is never init... god knows where that data is...

    i is never init... god knows where that data is going... unless he is in debug then I am slightly learning towards the 0 element each time. He defines j as an int twice as well we aren't getting the...
  4. Replies
    1
    Views
    675

    It should give a pointer to the 0 element of...

    It should give a pointer to the 0 element of nodes which I can only assume is an array of Event pointers. It seems like the code would benefit from a vector though.

    It seems like this is probably...
  5. cout

    cout<<v_abs<<endl;

    What does that even do? I can't even follow this code. std::cout a void return?

    I think you may have cut a little too much code out of what you are doing here.


    ...
  6. Replies
    7
    Views
    1,168

    He was trying to use delete to begin with instead...

    He was trying to use delete to begin with instead of saying don't use delete I gave him another option. My response not only gives a solution it shows how to properly use delete(which is worth at...
  7. Replies
    7
    Views
    1,168

    Use pointers ie: delete must be used in...

    Use pointers ie:
    delete must be used in conjunction with new.


    myobject *obj = new myobject;
    //do stuff with obj using the -> operator and not the . operator
    //I'm done with obj lets get rid...
  8. Replies
    10
    Views
    1,450

    So what error is it giving? Or am I missing the...

    So what error is it giving? Or am I missing the question completely?
  9. Replies
    2
    Views
    1,595

    Try loading the image into video ram and passing...

    Try loading the image into video ram and passing pointers to the draw function? Similar to my game at the moment. I only load a texture the first time I see it and I only ever load it once. It...
  10. Thread: 2D vision engine

    by ~Kyo~
    Replies
    3
    Views
    3,008

    Ok well I didn't see the edit button.... Just...

    Ok well I didn't see the edit button.... Just uploaded a video to youtube showing the problems I am facing. https://www.youtube.com/watch?v=SeKz2GrMo28&feature=youtu.be
  11. Thread: 2D vision engine

    by ~Kyo~
    Replies
    3
    Views
    3,008

    2D vision engine

    Hello all,
    My current project is a top down shooter and I am trying to get wall to block the player's vision. I can do this with just a simple point to point check vs my walls, but I am trying...
  12. Replies
    5
    Views
    3,047

    Um yea.... 0 is not the number 0, but 0 as in the...

    Um yea.... 0 is not the number 0, but 0 as in the value 0. You could always do int zero = '0'; and use casting though. atoi does something like this:



    int number;
    char string_of_numbers[5]...
  13. Replies
    5
    Views
    3,047

    atoi() doesn't work for you? Edit heres a link...

    atoi() doesn't work for you?

    Edit heres a link even:

    std::atoi, std::atol, std::atoll - cppreference.com
  14. Replies
    5
    Views
    1,716

    Try fixing your errors and warnings first. When...

    Try fixing your errors and warnings first. When I tried to compile that mass of code all I see are 2 errors and 13 warnings.



    ||=== gokutrnks, Debug ===|...
  15. Replies
    5
    Views
    1,716

    post the errors

    post the errors
  16. Replies
    19
    Views
    3,440

    Poll: I never said you in particular would steal it. ...

    I never said you in particular would steal it. Posting code for all to see allows ANYONE to steal it. Last I checked you don't need to register to view the forums, then again that was years back...
  17. Replies
    19
    Views
    3,440

    Poll: Depends entirely on what all the shump can do, ...

    Depends entirely on what all the shump can do, triangle walls etc? Or just some square bs? Resource management so files don't multi load? Seeing as how the board is an open forum and really...
  18. Replies
    19
    Views
    3,440

    Poll: When my code supports editing of text files to...

    When my code supports editing of text files to design levels, and add creatures, how much work would it really take. I dot notice slow frame rates - ever on anything be it Starcraft 2 or the new...
  19. Replies
    19
    Views
    3,440

    Poll: I post on 2 boards here and over at allegro when...

    I post on 2 boards here and over at allegro when I have issues. If after that neither board can solve the issue I post it on stackoverflow. Once upon a time I got very useful help from this forum...
  20. Replies
    19
    Views
    3,440

    Poll: Even when posting code you all couldn't help. ...

    Even when posting code you all couldn't help. Remember the post over here http://cboard.cprogramming.com/cplusplus-programming/147200-fstream-problem.html ? Got run around in circles. Funny...
  21. Replies
    19
    Views
    3,440

    Poll: Then don't, I will not provide links to source...

    Then don't, I will not provide links to source based on the fact someone can compile it and call it their own. Or generate and find exploits. Don't download it then w/e. I trust you as little as...
  22. Replies
    25
    Views
    5,553

    Move search function declaration above the ...

    Move search function declaration above the logout declaration.
  23. Replies
    19
    Views
    3,440

    Poll: Since I plan to port to a multiplayer platform,...

    Since I plan to port to a multiplayer platform, source at the moment would probably allow exploits. Cboard is known for it's trolls if someone requests the source then I may give it to them, but as...
  24. Replies
    19
    Views
    3,440

    Poll: top down 2d shooter needs a little testing

    Direct Download link:
    https://ws.onehub.com/files/cehulyte

    Screen Shots: (submit your own I will post them)
    https://ws.onehub.com/files/9rw3li12
    https://ws.onehub.com/files/37ggbfio
    ...
  25. Replies
    6
    Views
    1,563

    I remember writing a game very similar to this...

    I remember writing a game very similar to this back in the day I made players fight my professors, but only the ones I liked that said crazy things to put in the pre combat dialogues.
Results 1 to 25 of 326
Page 1 of 14 1 2 3 4