View Single Post
Old 02-10-2004, 03:04 AM   #10 (permalink)
webfiend
Insane
 
Location: Seattle?
Everybody else's ideas are best, because they seem to have been written by people who actually know something. That won't stop me from throwing in my 2 cents, though

You may want to play with PyGame (http://www.pygame.org/) a little as you get the basic ideas of game programming down. It relies on SDL (http://www.libsdl.org/), a cross-platform, open source multimedia library. Don't let that scare you off, though. SDL and PyGame both get used for making games in the real world - even in the Windows world that I hear about on occasion.

The big advantage of PyGame is that it is written in Python, which is a very easy language to get up to speed on. You said you hadn't programmed any games before. I don't know whether that also means you hadn't done much programming at all, but Python and PyGame are worth considering.

There are several tutorials available at the PyGame Web site, and I recently bumped across a book on using Python for game programming in my local giant mega-bookstore. I didn't have time to take a good look at it, but you could probably find something out poking around at Amazon.
webfiend is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73