2
votes
Game programming - How to avoid reinventing the wheel
As to what people have said about C/C++/Python, I'm a game developer and my company encourages C. Not b/c C++ is bad, but because badly written C++ is poison for game development due to it's diffic …
11
votes
How to create a FPS game?
this wins for most open ended question. You could literally write a book. But lets settle for pointing in the right direction...
Step one, you will need good debugging skills for a project …
0
votes
Calculating frames per second in a game
Good answers here. Just how you implement it is dependent on what you need it for. I prefer the running average one myself "time = time * 0.9 + last_frame * 0.1" by the guy above.
however …
1
vote
Is it possible to get high quality graphics in 2D?
One of the main reason that 2D graphics don't look as good us that they are usually low budget games. And there is a reason that most low budget games do things in 2D: It is a heck of a lot easier …
1
vote
Incomplete information card game
An additional answer in the spirit of the question you asked:
Read up on game theory if you haven't already. This is what you will find some good answer on how to implement any sort of inco …
