Search:

Type: Posts; User: blankstare77

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    29
    Views
    3,061

    It's going okay except the fact that I have no...

    It's going okay except the fact that I have no time to work on it for a long time :(

    But here's my code anyway:


    #include <cstdlib> //includes rand() function (an example: when rand() %3 means...
  2. Replies
    8
    Views
    4,528

    Yes, it's required to say ...it's the law.

    Yes, it's required to say ...it's the law.
  3. Replies
    11
    Views
    1,725

    Yes, of course. But seriously, we're not talking...

    Yes, of course. But seriously, we're not talking a big leap here. It's not only good output since you design it specifically for your needs, it's yours; you own it. Having said that, it's also a...
  4. Replies
    11
    Views
    1,725

    You know what's better? Making your own.

    You know what's better? Making your own.
  5. Replies
    9
    Views
    3,259

    When You're ready to tackle games

    Okay can you guys make a list of what a programmer should know before tackling games?

    Functions, pointers, polymorphism, inheritance...you get the idea.

    What libraries too?
  6. Replies
    3
    Views
    2,716

    Are there any free online C++ classes?

    ? :confused:
  7. Replies
    17
    Views
    2,437

    Yes, agreed. And as for the math aspect, I'm...

    Yes, agreed.


    And as for the math aspect, I'm already in Pre-Calculus so I'm doing fine. Next year when I actually start my 3d game i'll already know about vectors and such. Matrices are a piece...
  8. Replies
    17
    Views
    2,437

    Well what skills are required? Obviously...

    Well what skills are required?

    Obviously mastery of C++. But what else?
  9. Replies
    17
    Views
    2,437

    What about custom graphics? Why not code it...

    What about custom graphics? Why not code it myself? To learn how everything works.
  10. Replies
    29
    Views
    3,061

    EDIT: Fixed it. It's because I named a function...

    EDIT:
    Fixed it. It's because I named a function Monster() and a class Monster so there was confusion. Changed function name to randMonster();.
  11. Replies
    17
    Views
    2,437

    By the way, I don't want to use OpenGL or...

    By the way, I don't want to use OpenGL or Direct3d for my first project. What about writing 3d in just C++? Possible?
  12. Replies
    29
    Views
    3,061

    I'm having trouble. I define a class Monster...

    I'm having trouble.
    I define a

    class Monster {
    //yada yada attributes
    }

    Monster Rabbit;
    Monster Mouse;
  13. Replies
    17
    Views
    2,437

    What about C# in games (math computations only)....

    What about C# in games (math computations only). How would you "glue" it with the C++ code per se? Would it be just as effective to use C++ only? Or just ignore all languages and only use C#?

    I...
  14. Replies
    4
    Views
    1,079

    C# 2.0....better than C++?

    C# 2.0

    Is it better than C++? Is it just a glorified version of C#? I hear it's supposedly supposed to replace C++ all together. It comes out in April.
  15. Replies
    17
    Views
    2,437

    .net and .asp?

    Okay my friend thinks he knows everything about computers and how to make 3d games and stuff.

    My question is that he said that .asp and .net were like the glue of the program and C++ was the...
  16. Replies
    29
    Views
    3,061

    CODE UPDATE: #include //includes...

    CODE UPDATE:


    #include <cstdlib> //includes rand() function (an example: when rand() %3 means
    //means that the answer can be either case/value 0, 1, or 2!
    #include <string>
    #include...
  17. Replies
    27
    Views
    6,787

    That's it? Vectors are just 3D points that form...

    That's it? Vectors are just 3D points that form line segments and view frustrums?
  18. Replies
    29
    Views
    3,061

    #include //includes rand() function (an...

    #include <cstdlib> //includes rand() function (an example: when rand() %3 means
    //means that the answer can be either case/value 0, 1, or 2!
    #include <string> // used for
    #include <iostream>...
  19. Replies
    29
    Views
    3,061

    I want to learn it, not take shortcuts. "Hassle"...

    I want to learn it, not take shortcuts. "Hassle" is usually associated with laziness.
  20. Replies
    3
    Views
    866

    I was using cout. But anyway I fixed it: ...

    I was using cout. But anyway I fixed it:



    #include <cstdio>
    #include <cstdlib>
    #include <string>
    #include <cmath>
    #include <iostream>
    using namespace std;
  21. Replies
    3
    Views
    866

    Calculator program problemo

    #include <cstdio>
    #include <cstdlib>
    #include <string>
    #include <cmath>
    #include <iostream>
    using namespace std;

    float Squareroot(float x);
    float Add(float x, float y);
    float Subtract(float...
  22. Don't let the name fool you. Seriously though,...

    Don't let the name fool you. Seriously though, those books are great for beginners and I'm learning a lot from it. Then I'll move on to an advanced book. I am by no means stating that this book has...
  23. That is a decent book. What are you talking about.

    That is a decent book. What are you talking about.
  24. So basically it's kinda pointless?

    So basically it's kinda pointless?
  25. Should I put those arguments in? I mean i've...

    Should I put those arguments in?

    I mean i've been programming for a while and int main(//nothing here) has been doing fine for me.
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4