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

vote up 0 vote down

I wrote several games early on.

One of my first game in memory that I wrote from scratch (i.e. not typing in from a book) is a Space Invaders clone I tried.

The primary outcome of that project best expressed by abusing Edison: "Results! I have gotten a lot of results. I know several thousand things that won't work."

The most interesting problem I had was trying to figure out which alien I was hitting with the missile. I really struggled with that. The solution I came up with was each alien has a different ASCII (or whatever it was on the TRS-80) character in its center.

When the missile hit, I would "search" for the thing on the screen that looked like the ASCII character, and use that to determine the correct alien to delete.

Now, clearly, this is wrong way to do it. Heck it was obviously wrong at the time I was doing it, but I at the time simply could not think of a better way, and at least the technique let me progress.

What I think the real take away from that experience is that much of the time, software builds software. Only through the creation process do you really flesh out the details of a project. In a way, a project can start one way and end another because you simply didn't see or plan the path that you inevitably took. But, like music, you have to play something just to see how it sounds and how it works. Otherwise you get nowhere.

The best quality of software is simply that it is cheap to fail. Sure there's time invested, but the material is 100% recyclable, and free to use. So, don't be afraid to try stupid things. Don't be afraid to leave "stupid things" in your code if it advances the goal and opens up something new. You can always come back and fix the stupid things.

In fact, that only way you're going to learn the stupid things is to do them and later through experience or learning, discover the errs of your ways.

Risk is cheap in software, may as well take it.

link|flag
vote up 0 vote down

When I was a young boy... I built a very bad imitation of Pac Man on my Commodore Pet 4016 in BASIC. Soon after, I graced the floppy disks of my Atari 800 with a minefield type of game I called Cow Crossing. (You can guess what the "mines" were.) Those were the days.

link|flag
vote up 0 vote down

Console Noughts and Crosses/Tic Tac Toe in C#. AFAIK, I didn't learn anything new, so, no, it didn't make me a better developer.

link|flag
vote up 0 vote down

The first game I developed was called Gunfight which ran on HDOS (early 1980s). It was a two player shooter. I don't know if it made me a better developer but it really taught me the value of backing up. After it was done, I accidentally deleted the only copy of the source code. It had taken me a few days to develop and luckily the code was still fresh in my head, so I sat down and banged out the same code again in about an hour. I wish I still had that kind of memory ;-)

link|flag
vote up 0 vote down

"Low flying psychopath simulator" written in AMOS on an Amiga A600. Basically a rip-off of TLL on the speccy, but with an F-15 jet sprite rendered in Imagine 3.0 :)

Aaah, those were the days.

link|flag
vote up 0 vote down

I haven't done much game programming, so I took a while to write one. It was Blackjack written in Python. I wrote it one morning before school to just kill some time. Sadly, it's been lost to the ages.

link|flag
vote up 0 vote down

My first 3D graphics game was 3D Tetris written in opengl. I spent less than a month coding it.

You can find it here.

link|flag
vote up 1 vote down

My turn!

I created "aMazing Mazes" for MS-DOS using Turbo Pascal. The first version made use of ASCII characters with some ANSI-style graphics. There is also background music, and later you could choose from the 5 worlds. Each world has 4 stages.

The game is a maze game where you should find the diamond so that the exit door will appear (inspired by Solomon's Key for NES). Later I added spells which you can get when finishing a world (inspired by Megaman).

I made a port where I rendered maps in Pascal graphics instead of ASCII, though it was not finished fully, but I had a great time programming for graphics.

Things I learned:

  1. Collision logic.
  2. Math is very important.
  3. Gameplay design basics.
  4. Algorithms you have to figure out yourself (in an era with no Internet).
link|flag
vote up 0 vote down

Madlibs for the Apple IIe in BASIC. It asked a bunch of questions to get the values for required variables, then outputted the final story once everything was collected. Probably didn't make me a better developer considering I was six years old, but made me pretty proud of myself at the time. I guess if it taught me anything, it taught me the awesomeness of being able to put in a disk, hit one key (I think 5 or F5), and start programming.

link|flag
vote up 0 vote down

Breakout using Visual Basic 6 :)

link|flag
vote up 0 vote down

The first (computer) game that I remember writing was on an Apple IIe in 6th grade... It was my first experience with the Apple's high-res graphics mode and consisted of a bunch of "missiles" (i.e., steadily advancing pixels) coming in from the top and right edges of the screen which the player had to dodge to survive. I don't recall the filename, but it didn't have any name other than that and I don't particularly recall anyone else ever playing it.

The following year, I wrote a text-based "fly around intercepting enemy space cruisers to save your home planet" game which was fairly popular among some of my friends, so that was probably the first one I wrote that anyone else played.

link|flag
vote up 0 vote down

My first game was the first program I ever made: OS: iPhone, Android, any other computer. language: PHP, HTML, Javascript, Java you can go http://www.isaacwaller.com/gulp/ to play it.

link|flag
vote up 0 vote down

My first (real) game would be Spacewar for Mac OS 7. I started writing it in FutureBasic (a dialect of Basic for the Mac that had functions, scope, etc.), eventually porting to C and then C++ (as I gradually learned those languages). While I mostly finished it, it was horrendously unstable - it could take down your OS if you looked at it funny.

Looking back, I didn't really know what I was doing at the time, although at the time I thought that I did. I had to put Trigonometry to use to get ship movement and homing torpedoes working, so that was a nice bonus.

I was also proud of the fact that an online friend of mine at the time was writing a Windows version at the same time, but never finished. I was glad that I was able to stick through it until the end, or close enough to the end for the time.

link|flag
vote up 1 vote down

Lode Runner with Turbo Pascal (BGI, anyone?)

Better programmer? No, not really. (I became a better programmer when I got a real job)

link|flag
vote up 1 vote down

I did a blackjack game in Turbo Pascal. It turned out pretty slick even though I only had DOS characters to work with. It was a great learning experience. I modeled a real deck of cards and used a random function to "shuffle" the cards. The cards were displayed using little DOS hearts, clubs, etc. I had a timer loop so there was some delay in displaying the cards. Of course I had to keep track of the score, betting and winnings. I still have the executable (just played a few rounds!) but I lost the source code a long time ago.

link|flag
vote up 2 vote down

Monopoly. DOS. QuickBasic. I learned how to waste time and make it look like I was doing something I was supposed to be doing (it was high school). This lesson was more valuable than any. ;-)

Woops, that's not right. BlackJack, same O/S, same Language. only preceded the Monopoly game by a couple of months, though. Again, same lesson learned.

link|flag
vote up 2 vote down

My first attempt at a game was Blackjack on a CDC Cyber 74, running NOS/BE. It was written in Fortran, and used a command line interface.

The first person to use it soon discovered that they could enter a negative bet, and then deliberately lose. The program would then -subtract- a -negative- bet from the total money, which was the same as a win.

This program taught me a lesson that I never forgot. Check your inputs.

link|flag
vote up 1 vote down

I'm still working on my first game (because I'm far too ambitious and it's going to take me forever). Since August, I've had to teach myself:

  • Version control using Subversion and Mercurial
  • Javascript
  • Python
  • C (the math calculations were too slow in Python)

For someone who's only known PHP for the last 8 years, I'd say it's made me a better developer more than anything else I've done in my whole career.

link|flag
show 2 more comments
vote up 1 vote down

The first game that I can remember coding was a snake/mouse game on the Commodore 64 using character graphics and sprites. It had ten difficulty levels and was a lot of fun to play. I learned about simple optimization among other things. It was all what would now be called spaghetti code, but that was all I knew at the time, and was the norm. (Take a look at basic programs in a magazine like COMPUTE! from back in the 80's - Its amazing what the code looked like. - Meaningless variable names and goto's & gosub's all over the place.)

link|flag
vote up 4 vote down

My first real programming project was a Gameboy Advance game entitled "Falling Star". It was a Scorched Earth clone with some fancy transparency effects, multi-player, AI, etc, which I developed on emulators and hacked hardware. Originally it was Phase I in my master plan to become the next Warren Spector. Phase II was when I got contracted for by a tabletop RPG company to produce a GBA version of their game, spent six months on it, was never paid, and collapsed into a slovenly pile of anti-industry human matter.

The project taught me more than I would have ever though possible about programming. Particularly with regards to resource management, team formation, and code-as-math. I'm sure that if I looked at the code today (I do have a copy somewhere) I would marvel that it worked at all, but it did work, was suitably bug-free, and accomplished something that I truly lusted after: seeing my own code run on native hardware. (Thank god for the #gbadev hackers.)

If not for that project I don't know that I would still be interested in coding today. It was a way to get at the interesting design problems by writing the code myself (because finding a coder was impossible), but I ended up enjoying the coding so much that the design began to seem insignificant.

I can't find any reference to the project online anymore, but every once in a while I find mention of it on GBA roms site, which trade it like a full title. I guess that is another accomplishment of sorts.

link|flag
vote up 1 vote down

My first attempt was on an Atari 800 doing a tile based RPG which I was way too inexperienced complete. My first completed game was a space invaders type shoot em up using assets from other games. My first entirely original game was Inferno, a side scrolling platformer written in Blitz Basic.

Edit to Add - Every game I have developed has definitely made me a better developer. They have introduced me to new languages (lua, blitz, flash) and new areas of programming (ai, physics).

link|flag
vote up 0 vote down

Lunar Lander here as well.

Two days after finishing the monster I learned there was this thing called functions.

We've been in love ever since.

link|flag
vote up 1 vote down

Lunar Lander in VB6 a few years back was my first ever attempt at a game. The hardest part was getting the alien spaceship to chase you properly and avoid the obstacles the level randomly generated. I just never had the motivation before then to build a game, but since then have recreated many games like Simon and 4-in-a-Row in SVG/Javascript with use of AJAX.

link|flag
vote up 1 vote down

I started by modifying the source code for ZORK on a TRS-80, when the other übergeeks would let me on it, back in Junior High School. In those days, the keyboard was still attached to the computer, we had a cassette tape drive, and the screen was a flat text monochrome green.

The thing had massive DATA sections and I was amazed at how they made the whole thing work. How did those things turn into a working program? (It was written in BASIC.)

I was all of 15 at the time. But thus began my fascination with computer programs.

It is pitch black. You are likely to be eaten by a grue.

link|flag
vote up 1 vote down

I did a clone of the classic "Pong" game in C under DOS with custom assembly language graphics routines and a multithreading library from Mix Software. 10mhz 8088 machine with CGA 320x200 4 color graphics and keyboard input!

link|flag
vote up 2 vote down

I am not a game developer at all, but Robocode was and is a super interesting learning experience. Not just for gaming, but it is also an interesting testing ground for basic AI concepts, adaptive heuristics and flat out tuning.

link|flag
vote up 2 vote down

"Cat and Mouse", in BBC BASIC on a BBC Model B. Aged about 9 I'd guess.

The cat was represented by a 'C', the mouse by a 'M'. Each was controlled by a human player, sharing a keyboard. The cat was fast, but had a lot of momentum. The mouse was slow but could change direction faster.

Although it would look very simple now, it was a great foundation for my programming career - this is where I first learned to manage loops, variables, all the basics.

Also it's where I learned about keyboard clash.

link|flag
vote up 5 vote down

AssaultCube, a full FPS game based on the existing Cube engine. Lessons learned:

  • OpenGL graphics development
  • Cross platform C++ development using SDL
  • Designing lightweight network communication using Enet
  • Optimizing C++ code for better performance (physics, etc)

It increased my C++ skills and taught me quite some refactoring skills, when to rewrite code, how to reuse legacy things, etc.

link|flag
vote up 1 vote down

My first game was a text adventure called Necromancer programmed on my C16.

Later ported it to the Dragon 32 and BBC.

Ahh the heady days of youth.

link|flag
show 2 more comments
vote up 1 vote down

My first game was "Tabi's Dangers", a text-mode adventure game for DOS coded with Turbo BASIC. Sorry, no website, it's lost on a hard drive somewhere in my parents' attic.

Algorithms and/or AI? Sure, I had state-of-the-art instruction line parsing with INSTR and CASE. One block per room.

No graphics, you got the idea for user interaction, no file format/storage, no project. But hey, it had computer-generated music. Feeding random strings to TB's PLAY is a lot of fun when you're 8.

I remember it all started out as a block of code per room, with a few global variables for inventory. The program would initially just GOTO from one to the other as the character moved around. Then, for some reason, I heard about GOTO being the root of all spaghetti, so I just replaced them all with GOSUBs. Ta-da! Problem solved. I did eventually learn about RETURN, but it wouldn't have made any sense to use them with my program's architecture. So I didn't. I left everything as is, but then I actually hoped it would let me see some kind of a stack overflow error. Sadly, it never did.

Of course it made me a better programmer. It made me a programmer, period, and that's good enough.

link|flag

Your Answer

Get an OpenID
or

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