simple openGL game

Started by
6 comments, last by yabba_dabba 17 years, 8 months ago
what is the simplest starter game to program using openGL, I need something really,really simple,
Advertisement
asteroids, bomberman or pong ;)
pong?
Hangman, but you could easily do that with different library.

What games have you made already?

I mean opengl is capable of making great games, usually you start using opengl for games the require you to draw/render faster.

I third pong.
I also recommend pong, even more than the other types of basic games since you can focus more on the graphics/opengl part than gameplay (it seems that is what you are getting at). It's not like can't have a Particle Engine and all that fancy stuff just because it's pong. People have done amazing things to pong.
im too for pong.(also it was my first game :)
IMO: Try something static first , that is a game with no moving objects. If you want a really, really simple project you're probably not ready for pong, tetris, arconid, etc.

The steps are these:
1. Learn language => text-based games
2. Learn drawing, windows => static games (TicTacToe)
3. Learn animation => arcade games

One problem for newbies (as me) is breaking down the goal into single steps.

For example:
I. Can you draw in a window? Yes => go to IV / No => go to II
II. Can you initialise your graphics libary? Yes => go to I / No => go to III
III. Can you can comple and run a hello world program? >Yes => go to II / No => buy a book on programming
IV. Can you read keyboard / mouse input? ....

This topic is closed to new replies.

Advertisement