vote up 24 vote down star
16

What first game did you program?

Name your game, the OS and language, and even a Website URL to get your game. Old DOS Games and Flash Games with ActionScript are allowed. Game kits are allowed, too.

...and did it make you a better developer?

Programming games can be addicting, and it will bring out the best in us as we create our first game. What lessons did you learn form most?

  • Algorithm and/or AI's?
  • Graphics?
  • User Interface?
  • File Formats and Data Storage?
  • Project and Time Management?

Can you say that because you practiced programming by creating this game, you became more immersed with the programming language you used and helped you become a better developer?

flag
show 2 more comments

77 Answers

prev 1 2 3
vote up 0 vote down

I had a penchant for Pac-Man.

First in GW-BASIC. You know, 320x200, 16 color, theme song via PLAY command and piezo buzzer.

Then, to kill time in high school computer science, where we had to learn Pascal, I created my most ambitious version. Features included

  • 3D map (wireframe)
  • Rotate and tilt map while playing
  • Jump (to avoid ghosts)
  • Customizable maps. You could create maps using a simple text format, and select them using a tiled preview.
  • All done on a 286! (which meant, alas, it was unplayable when I brought it home to my 486)

Finally, I created a Javascript version, circa 2004. How much has changed since then!

They're all long gone now... the last one being a victim of Hurricane Katrina. No great loss!

link|flag
vote up 0 vote down

The first time I even really used a computer was typing in a game from a book. Long ago, my friend and I laboriously slaved over a computer we barely knew how to use, typing in an enormous (to us) BASIC program that doubtlessly ultimately would create a shockingly mediocre game. It took us about 3 hours to type in, then another half hour to fix the typos (I, as the typer, had a tendency to type THAN instead of THEN), and then we didn't even get to play it because his mother had finished her meeting, and we had to go home. 3-4 hours "wasted".

And every minute was awesome. As I was typing it all in, I could guess (it was BASIC, after all), what the commands would do, and I was trying to convince my friend that we should replace the strings reading "B-17 bomber" with "X Wing" and things like that. He was too scared, afraid it wouldn't work, but I knew it would. I was so giddy...I knew I could do anything I wanted!

Now, I know a lot better about the "anything" part, but that was what got me into programming at all...so in that sense, I'm definitely better than I would have been otherwise.

link|flag
vote up 1 vote down

First game I programmed was a Space War game running on DEC VT125 / GIGI terminals. You drove a little space ship around with your arrow keys and space-bar fired bullets at rocks and the bad aliens. I wrote this around 1980. Probably in Pascal on RT-11 running on a PDT-11 (personal computer!)

alt text

outputting ReGIS code.

Before that I had done some minor Game-like things on an IMLAC PDS-1 and a COSMAC Elf single board PC.

Since then I've done games for Atari 800, Commodore 64, Amiga, Sun and IBM Workstation, and PC.

And yes I think like everything I've done it all certainly helped improve my skills.

link|flag
vote up 0 vote down

My first programming experiences as a kid were me and a couple of friends making games in QBASIC. Our first one was a text adventure, it didn't really work. The most successful was a "lights out" clone.

As a full-time web developer now I tinker with a game engine as a hobby and to learn. Working with a game engine has taught me a lot of things that you don't necessarily learn when developing web sites.

link|flag
vote up 0 vote down

My first game was called "The Railfanning Game", and it's about as exciting to play as the title suggests. I wrote it for a friend of mine, and he made the graphics.

Platform: TI83Plus calculator from Texas Instruments
Language: TI-Basic
Web site: http://sourceforge.net/projects/ti83railfan/

I wrote several variations of the game, each time adding some strange new feature. All of the development took place during our high school math class. After high school I decided to take all the "best" features and combine them into one game, which is the v4.0 available on SourceForge.

I learned a lot about code minification and memory management. (Variables persist after the program terminates unless you clear them explicitly.)

link|flag
vote up 0 vote down

Wow, I entered games not long ago.
My first wan a text based commands Quest in C#.

Recently I translated the engine to JS (And it was much more shorter :-) ) http://blackrenz.googlepages.com/quest.html

link|flag
vote up 0 vote down

A Ports of Call clone in VB 3. I was about 15 at the time and this was the first time at all that I tried to program.
(I don't know if this game is known outside Germany - it was made by a German company and it has only a German Wikipedia entry, but no english one.
So, for those who do not know it: Ports of Call is a trading simulation where you can buy freight ships and earn money by transporting cargo around the world).

The screens where you could buy and load ships were all working (and I was very proud of what I had accomplished!), but the original game had a main screen with a world map, where you could see your ships moving around the world. I made the map, but I had no clue how to let the ships move over it.
That's when I lost interest.

So I didn't really learn anything. When I found the code years later and looked at it, I learned one thing: back then when I wrote it, I didn't know what functions were. Just copy-and-paste spaghetti code :-)

link|flag
vote up 0 vote down

The first game I wrote was a turn-based racing game with still graphics to add to the experience over the text. It was for the commodore 64, and I was five years old. It took me two months and filled the better part of a single sided 5 1/4" floppy disk.

Yes, a turn based racing game. You'd go cross country and encounter obstacles and interesting people who would help you get to your destination faster. There was also subterfuge where you could damage your opponent's changes of winning.

link|flag
vote up 0 vote down

Nokia Snake Clone on VB4. My dad had bought me the visual basic bible book, and I spent close to a week figuring out how to do keyboard interaction. It was an awesome experience and taught me how to program from books.

link|flag
vote up 0 vote down

I replicated in a TRS/80 Model I a text-based game I saw in a CP/M computer. A horse race. The horses looked like this:

-( 1 )'=
 <   >
    -( 2 )'=
     /   \
  -( 3 )'=
   <   >

At each iteration of the loop, a randomly chosen horse would advance one character cell, while changing the "leg" disposition.

The original, CP/M version was made by a classmate of mine. People would gather around the computer and bet money. I kid you not.

link|flag
show 1 more comment
vote up 0 vote down

Chess. Windows. Java. Assignment for a post-secondary course.

Instructor focussed solely on object-oriented programming theory in his lectures and neglected to teach us anything about GUI stuff (Swing). Everybody had all their classes set up with constructors, but nothing more. The lab assistant gave us code examples on how to use MouseListener. I managed to get that set up so all my squares were clickable. Movement and capturing sort of worked, but I never figured out how to implement the movement rules.

I learned absolutely nothing from the exercise. I already knew how to copy-paste, and being taught to blindly copy-paste source code is not good. Next assignment was Game of Life which turned out even worse.

link|flag
vote up 0 vote down

If I recall properly, the first game I wrote was pong in Java... 1.2 maybe? I learned I didn't want to be a games programmer. Or do any sort of graphics programming. Man, do I hate that crap.

EDIT After reading another post, I realised that the Game of Life was probably the first game I programmed. I was in C++ on Windows. It was a console based version and I had tons of fun doing it. I had just learned about pointers. By myself mind you, not in the class. The class was a bit rubbish. So I thought pointers were the coolest thing ever. So I built my game board as a pair of two dimensional arrays. I looked at the board "on top" to figure out what the next move was. I then wrote the move to the "back" board and then flipped the pointers and did it again. I thought it was really cool, and still do actually. The instructor wouldn't even look at my code. She taught by showing a slide show of code to do X and then everyone was supposed to copy it down. I don't think she even understood what pointers were really. Which makes me very sad that she was an instructor. :-(

link|flag
show 1 more comment
vote up 0 vote down

First one I remember was a Reversi (Othello) with a computer player in 1980.

link|flag
vote up 0 vote down

A clone of Tetris, in JavaScript. It taught me how absolutely terrible I was at game programming, some stuff about object-collision detection, OOP and that I don't give Tetris all the credit it deserves. Now when I look back at it, I'm just glad that I wrote it a few years ago because the code is pretty ugly...

link|flag
vote up 0 vote down

TI99/4a - Basic - the game was Camel from the "More Basic Computer Games" book.

It was a text based game where you tried to get your Camel across the desert without dying. It kept us entertained for hours.

No, it did not make me a better developer. I was ten at the time.

link|flag
show 1 more comment
vote up 0 vote down

First Game

I played with code a lot on the BBC Micro during the 80s, but the first proper deliverable game I actually finished was a multi platform platform game for the Commodore Amiga. Nobody really played beyond 3 levels, but it was nice to finally get something finished.

Much to my annoyance the simplistic MSDOS based Tetris game I followed that up with (written in Turbo Pascal) was way much more popular among friends and family. The really annoying part was my roommate at university knocked me off the hi-score table and I could never get back on again after that.

Did it make me a better developer?

Yes, it taught the adolescent me that coding discipline matters. A lot.

I spun my wheels a lot from badly named variables, no tabulation and making the subroutines too big. I had finally found out the hard way why gotos are so reviled. It is the game actually worked when I think about it... :)

The lessons learned gave me a huge advantage when I started getting formal programming training at school shortly afterwards.

link|flag
vote up 0 vote down

I had worked on a Pac-Man clone on a Commodore PET computer using BASIC (lots of PEEKs and POKEs). I think I got about as far as the dude getting around the maze without crashing into it. Better developer? Maybe from only the point of view or starting to learn to think like a computer (that it literally does exactly what you tell it).

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.