1

Possible Duplicate:
What are some good resources for getting a beginner started in developing games?

I'm a CS student, having plenty enough knowledge in programming, and general algorithms. What is your suggestion in game developing? How to start?

Thanks a lot!

  • 3
    http://gamedev.stackexchange.com/questions/41/what-are-some-good-resources-for-getting-a-beginner-started-in-developing-games http://gamedev.stackexchange.com/questions/640/tips-for-someone-new-to-game-development http://gamedev.stackexchange.com/questions/4011/getting-started-questions not to mention the entire site. –  Dec 24 '10 at 21:17

3 Answers3

5

Well, (if you don't already know one) the first step is probably learning a graphics API like SDL (C/C++), Pygame which is basically the Python binding of SDL (Python), or XNA (C#/.NET).

Probably the most important point is start simple. Don't try making a huge 3D MMORPG, like a lot of beginners do.

Here's a nice list of small, simple games to start with. The general idea is to get a feel of how to develop games specifically, rather than programming generally.

Here's a good list of resources which are worth checking on.

After that, work your way up from 2D to 3D. You'll need to learn OpenGL or DirectX, or one of the many engines and wrappers for different languages.

After that, run wild. As long as you know what you're doing, and it doesn't feel like you're diving in the deep end, you should be fine.

Good luck! :)

'Make Games Not Engines'. this ScientificNinja article is probably one of the most important things to read. (I frequent GD.Net) The amount of people I see, very often hardly being able to program, talking about having to make 'a general engine to do everything' is huge. They rarely get anywhere.

Another thing to mention, though is probably one of the most important things: Take your game through to the end, that is finish it. I for one have many half done game projects lying about, and as such you sort of forget about it and have little to say 'I achieved this' to other people and to motivate yourself.

Pikalek
  • 12,372
  • 5
  • 43
  • 51
PrettyPrincessKitty FS
  • 10,315
  • 8
  • 43
  • 68
2

Okay, you asked: learn everything you can about:

  • 3D/4D matrices: rotation matrices, projection matrices, matrix inversion, matrix product...

  • trigonometry and geometry: trigonometric circle, arc-functions, common properties of a circle, a square, a triangle etc.

  • "Advanced OOP" in C++: virtual function and pure virtual function behaviors, and the classic STL containers: list, vector, but especially map.

  • Design patterns: you can begin with the composite pattern, the factory pattern, observer pattern, prototype pattern, and of course the singleton pattern (which is more a language feature than a true DP).

  • Optimization matters: how why when use references/pointers, the reason multiple inheritance can slow down, and other complicated stuff like where and how you should declare and use variables and your data.

Finally, do some little game on your won, you might have to do a classic game like tetris or pacman, but eitherway it will be hard to find a better idea of game.

jokoon
  • 5,243
  • 8
  • 38
  • 59
0

I'd suggest starting with something small, probably 2d.

Also, I'd recommend using an already made engine or framework. Starting from scratch with OpenGL or DirectX is possible, but it will be daunting.

Also, make sure the engine you choose has a nice community behind it, so you can ask questions.

In summary, try LÖVE.

egarcia
  • 1,582
  • 10
  • 16