




Teaching Kids to Make Games? 134
FreakerSFX asks: "My son has shown an avid interest in video games like most kids his age. What's different now is that he insists that he wants to learn how to build his own game. He's 9 and fairly gifted from a mathematics and computer standpoint and certainly capable of learning basic programming. What tools/books are recommended for a neophyte computer game programmer?" I remember one of my first exposures to computer languages was Logo,
which was a language that seems perfectly suited to young children. There is a Windows version available here that seems like it would be perfect for the development of simple games, especially for youngsters. What languages, and language resources, are you aware of that might be suitable for youngsters with an interest in creating games, and learning programming?
Assembly. (Score:2, Funny)
Re:Assembly. (Score:1)
Re:Assembly. (Score:2, Funny)
Re:Assembly. (Score:2)
By 12 I was doing City and Guilds qualifications at college.
Throw them in at the deepend I say.
Of couse, back then I didn't know how to convert mnemonics into the hex values for assembly. But did have a programs to do vice versa. It make coding a very slow and trial and error process.
All these nerds want the kid to end up like us? (Score:3, Interesting)
Programming isn't about syntax, and it isn't about variable scope or recursion or data structures or loops or any of that crap - it is about expressing, simulating, or recreating real world ideas in a digital format. The biggest problem most progr
Re:All these nerds want the kid to end up like us? (Score:2)
1. Imagine
2. Define
3. Architect
4. Develop
5. Deliver
I would be wary of teaching stone-age software design concepts to impressionable young minds...
Re:All these nerds want the kid to end up like us? (Score:2)
By all means, share the development methodology that you use here - don't just detract, contribute.
Re:Assembly. (Score:5, Interesting)
A few random pleasant memories:
- I was teaching a little girl to program in C. She was pretty good, given that we were using pretty primal tools (I think it was Turbo C on my Osborne Executive). The best part was that she was so tiny that she had to reach _way_ up to hold my hand when we crossed the street that ran through the camp. That just blew my mind -- one minute this brilliant kid was coding a sort routine in C, and the next she was a timid little girl holding my hand crossing the street.
- I had a whole gang of kids using the Lisp built into the BBC Micro (Acorn?). We had great fun writing an adventure game with a simple parser, so that kids could move around a simple network of rooms, pick stuff up and move it around and drop it. Some of the older kids implemented locking and unlocking doors. Pretty good for a two week, one hour a day course.
- A bunch of the older kids learned 6502 assembler on the Apple ][, using a simple assembler and the ROM debugger. Unlike the x86's, the 6502 is so simple to program (very clean design) that by the end of the class some of the kids were reading the binary straight rather than disassembling it. We wrote killer video games -- they had snakes running around the screen, gobbling "apples" and growing longer, until you hit a wall and the game ended. That was two weeks at 2 hours a day, so it was only for the most dedicated little geeks.
- Programming Robot Wars -- that was a very simple assembly language that controlled simulated robots. They loved coding their robots and seeing whose robot won. The modern robot simulators are superior in every way (e.g. alphaworks' Robocode [ibm.com], but Robot Wars was nice and simple and fun.
- Logo, of course. It's an amazing language. People usually think of it as a simple language for teaching, and it's great for that, but it's actually nearly identical to Lisp, so you can do all of the cool recursion, etc., in Logo. The usual stages of the day were Logo for little kids, then BASIC, then Pascal for the advanced students. I found that kids that went straight from Logo to Pascal did 100% better than the kids who were taught BASIC -- the BASIC kids had so many stupid ideals drilled into them that they were almost incapable of programming. But straight from Logo to Pascal was easy -- though the kids did complain about having to wait for things to compile.
- Logo turtles -- the ones that were little robots that ran around on the floor, with a pen and an optical sensor. Those were fun...
Man, that was fun. I've got to get back into teaching.
Control expectations (Score:5, Insightful)
Since I don't know too many nine year olds, I can't fathom what games they're playing (Pokemon still? Yuyu Hashuko?), but my suggestion is to first control his expectations. What I mean is, you should be aware that even though he is gifted in math and has an interest in programming, that he won't be able to recreate Max Payne 2 or WarCraft III. Or even Pokemon on the GBA. That simply requires money. Some of the simplest games like Tetris aren't instantly easy to program.
Deep breath.
With that out of the way, I'd suggest writing a text only RPG or something like that. You can learn a lot about how games work coding up MUDs and such, and you don't have to worry about making the eye candy to go with it. When I was nine I coded up a mud in Basic (of course that was in the late 80's but whatever). Once you've got a fairly fun text RPG, you can try making it into a 2d world (a la Zelda) which wouldn't be too hard to implement.
I realize I haven't answered your question about programming languages and websites mostly because that usually leads to flame wars ("Nu uh! Ruby/VBA/C++ Rocks! Python/C/Java Sux!"), but if he's try interested in programming a game, I think a mud is a good place to start. I have a preference for Python, so you may want to check out pygame.org [pygame.org] as well.
Re:Control expectations (Score:1)
try mods (Score:2)
An addition to a game (even if it's just putting Pokemon artwork on someone's armor) is more bite-sized.
Re:Control expectations (Score:2)
Today 1) games are so much more sophisticated and 2) readily accessible programming tools like the BASIC that came with PCs (wow, Gates and Wo
Re:Control expectations (Score:1)
I still can crash a system just because. though windows really shouldn't count should it?
Re:Control expectations (Score:1)
another kid i know started writing IRC bots when he was in 6th grade, and now in 9th grade is exploring assembly on his TI calc.
some kids will use the limitations they are giv
Re: Control expectations (Score:1)
The downside compared to MUDs is that LambdaMOO is designed primarily as an educational/social environment, so any RPG
Re:Control expectations (Score:2)
I also wrote a simple drawing program (not gimp
simple physics games (Score:2)
Another simple game to code is "artillery". It doesn't even have to be interactive in real time.
Re:Control expectations (Score:2)
It's a good point, but I wouldn't worry too much about it. My experience is that simply getting a simple pick-a-path-to-adventure type text game working is a huge thrill for most (geeky) kids. Sure, it may not be flashy, but they get a feeling of control and power, something they don't normally get (being kids and all).
Furthermore, armed with a good game creation toolkit (I'm woefully out of touch at the moment), you can in fact create neat graphic
Re:Control expectations (Score:2)
Who says you have to worry about eye candy in graphical games? I'd start off with a bouncing ball and then make Pong out of it.
Why even start with Logo? (Score:1)
Re:Why even start with Logo? (Score:1)
Re:Why even start with Logo? (Score:1)
try PureBasic (Score:1)
here is a little blurb from their page!
purebasic [purebasic.com]
Re:try PureBasic (Score:1, Flamebait)
basic computer programming (Score:3, Insightful)
I don't see why a kid today can't type in a page of BASIC code out of a book. Once he sees the structure and gets the idea of how things fit together in a logical flow, the next steps should fall into place naturally.
Re:basic computer programming (Score:2, Interesting)
I strongly belive that teaching children BASIC as a firs
Get it started right (Score:1)
Everything that needs to be done, can be done with C. Done.
Re:Get it started right (Score:2)
Riiiiiight, like there's absolutely nothing in C that could possible confuse a kid who knows nothing about programming, right? Nothing that could possibly make it difficult and frustrating to get it to work at all?
Like hell.
Everything that a 9 year old that's trying to learn basic game programming can be done in VB with probably less difficulty than C, if for no other reason because
Re:Get it started right (Score:2)
Your basic, vb, and pascal type languages make learning C style languages difficult. The reverse is not true. A c programmer can pick up those style of languages fairly easily (not that they are all that worthwhile to add to your portfolio).
Don't get me wrong, give them libraries that make it possible to write programs that DO SOMETHING the first day, don't hand them raw C. But do make i
SEUCK! (Score:1)
Encourage his interest! (Score:2, Funny)
------
Michael Jackson
Re:Encourage his interest! (Score:2)
Squeak Smalltalk [squeak.org]
Morphic Tutorial [uolsinectis.com.ar]
But rather than read about it, download and run it. It's fantastic!
Morphic is approachable to little kids, assuming that they're old enough to read a bit (or you sit with them to tell then what's what). And Smalltalk is deep and open enough that they can learn as much as they want. Want to understand how the event handler works? Walk through it in the (source level) debugger. Since the entire en
Really need books? (Score:2)
If he can already code, then probably he's best off with a language/platform reference that isn't too dry, and lots of example code that other have written so he can get a feel for how people put programs together.
Let me pull out my walking stick and reminisce about the Old Days (programmers with a longer history are of course free to run over me in their wheel chairs.) BASIC on something like the VIC20, Apple II or C64 was a great learning environment: immediate f
BYOND (Score:4, Interesting)
You might take a look at BYOND [byond.com] (Build Your Own Net Dream). It has a simple tile-based graphics engine, an object oriented language that is easy to learn, and automatic networking so you don't have to do any extra work to get multiplayer games. And it's completely free to download and use.
We've had a number of kids around the junior high age get involved and create their own games using BYOND. For most of them, it's their first introduction to real programming, and serves as a great springboard for getting into more advanced languages like C++ and Java. In fact, the success in that age group has almost become a problem -- the community is swarming with young adolescents and we adults feel like a minority there sometimes. We're even thinking of pushing it as an educational tool somewhere down the line...
Browse around at some of the games listed on the games site [byond.com] to get an idea of the system's capabilities. You won't be making first person shooters, but it could be just right for someone your son's age. Puzzle games and RPG/adventure style games do particularly well in BYOND. Once you've downloaded the client (Downloads link, obviously), you can even connect to any games that are currently online. Just beware the ones in the Unpublished section - they may or may not be up to snuff, and may be hosted by immature 13 year olds looking to be rude.
Then take a look at the programming guide [byond.com] and jump in to see if it will work for you. I'm not sure if 9 years old is too young for this, but your son sounds very smart, so he may pick it up just fine. Good luck!
What is the License, Dumbass? (Score:2)
You sucker kids into creating content linked to your shitty libraries, then even provide some kind of hosting scam, and in the end all they're left with is a few cents in their PayPal account, right? While you "adults" keep all their blood, sweat, and tears in little plastic vials.
Considering that the software doesn't even have a disclaimer of liability, maybe I should just su
Re:What is the License, Dumbass? (Score:2)
> the software doesn't even have a disclaimer of liability, maybe I should just sue your ass
Jesus Christ, LIGHTEN UP!
These are some people having fun learning to program games, mostly kids. They probably don't have a lot of LAWYERS working with them, and hopefully don't have alot of jerks who want to 'kick their ass' or 'sue their ass' because of it.
Re:What is the License, Dumbass? (Score:2)
Pygame (Score:2)
Re:Pygame (Score:2)
Interactive Fiction (Score:2, Informative)
Re:Interactive Fiction (Score:2)
I reccommend Alan [welcome.to], which is very easy to use.
Simple.. (Score:1)
Do what I did: (Score:1, Funny)
Re:Do what I did: (Score:2)
Memories (Score:1)
Logo was too simple and limited to be interesting.
Basic (MS Basic 1.0) was easy, and the interpreter made it a hands-on, "sandbox", experience. I don't think I would have been hooked by a compiled language back then. On the other hand, it's pretty limited and what is
101 BASIC Games and Realistic Expectations (Score:2)
That said, you may want to start by working with some realistic expectations. Does you son understand the sheer amount of work necessary to do the games that he probably plays? Does he understand that the first few games that he does are likely to be very simple in nature? When my wife started learning how to program, she was an avid user and excited about the possibility of becoming a programmer. She was dissapointed at how a full day of working could on
Flash or game level editors. (Score:3, Interesting)
You could also take a look at Macromedia Flash. They have a usable scripting language and you can draw or import graphics and sounds from elsewhere.
modding instead of coding from scratch (Score:1)
You can create your own levels and such for many state-of-the art titles. It's challenging and rewarding. Some people get into the industry this way.
There are many games/engines that can be modified.
Garage Games took this mod idea in an interesting direction by taking the technology used for Tribes 2 and marketing it as an engine for a sm
Suggestions (Score:2)
I second DarkBASIC (Score:1)
Squeak, squeak! (Score:3, Interesting)
Re:Squeak, squeak! (Score:2)
Re:Squeak, squeak! (Score:1)
Pygame, Python, etc. (Score:2)
LiveWires [livewires.org.uk] has some Python courses specifically for non-programmers and young people, some with a slant toward games.
You might also look at Guido van Robot [sourceforge.net], a Pyth
Echo? (Score:1)
Go For It (Score:2)
For the love of jebus, not a BASIC dialect (Score:2)
I vote Python or Scheme.
Re:For the love of jebus, not a BASIC dialect (Score:2)
Re:For the love of jebus, not a BASIC dialect (Score:1)
Re:For the love of jebus, not a BASIC dialect (Score:2)
Re:For the love of jebus, not a BASIC dialect (Score:2)
Keep in mind that modern dialects of BASIC are really closer to interpreted Pascal than the BASIC that screwed up so many kids back in the day. So aside from a few random leftovers, modern BASIC is a pretty decent language (though it's still crappy compared to Ruby or even Perl).
So, in the context of the primal BASIC that the poster was referring to...
I used to teach programming to kids; the official sequence then wa
Re:For the love of jebus, not a BASIC dialect (Score:2)
BASIC du jour (Score:2)
Let this kid learn the Basic of this day: Visual Basic .Net 2003!
Python and PyGame (Score:1)
As a result it is possible to easily write games in python while promoting good coding prat
On a related note (Score:4, Informative)
That's all I can find in a quick scan of my bookmarks from way back when...
Forth (Score:2)
Text Adventures (Score:2)
Re:Text Adventures (Score:2)
tads [tads.org] or
(no link jumped into my hands) are decent toolkits.
might try the interactive fiction archive [ifarchive.org] for more along these lines.
it'll hone the storytelling, which is pretty durn important against the graphics and whatnot. kids games are jawsome!
there was a pretty neat one using claymation from a few years ago, as an adjunct to the text. i think it was in Tads - a quick look through the competitions from previous years and nothing rang a bell for me - maybe some
Re:Text Adventures (Score:2)
I believe that game was The Neverhood [dreamworksgames.com] -- ring any bells?
Re:Text Adventures (Score:2)
it was a one-guy effort, and was in the running for the interactive fiction competition...
not to take the limelight from a perfectly good alternate.
my experience (Score:2)
I think HyperCard was the ideal introduction to programming. You some simple GUI apps in a WYSIWYG way, and every kid who learns to use it immediately grasps its potential for making games. It requires 0 programming knowledge up-front, but as kids start wanting to do more elaborate things, they can jump right in to the HyperTalk language, whose syntax is more English-like than any pro
GW-BASIC to Perl (Score:1)
GW-BASIC
Maybe not the most elegant solution, but certainly a reasonable starting point at the end of the microcomputer era. This is how I leared. Of course having an uncle who could also code in BASIC and a father who occasionally dabbled helped too. I still have my old book "Using BASIC" from Que, well worn and loved, which I received for a birthday sometime around 8 or 9. The book itself had some mediocre tutorial value, but the real value was in the quick reference at the b
Over limit by 2 chars! (Score:1)
Why not C/C++? (Score:1)
Re:Why not C/C++? (Score:2)
Re:Why not C/C++? (Score:1)
Learn Java or buy a C=64 (Score:3, Interesting)
A few years later my dad got us a copy of Kids and the C=64 but the games in that didn't seem as fun as the ones we were making, which were more graphical.
Learning by making games is the way to go. Kids can learn some algebra concepts by learning the simple graphics libraries and learning to do simple animations.
A few years ago a 12 year old sent me an email and asked if I would help him make a video game. He had seen one of my others games on the web and wanted to learn. I thought it was cool that he dared to ask, so I took him up on it. We decided to code in Java since it is freely available and you can put your work up on a website for others to see. The result is at http://www.angelfire.com/games4/anirak/ [angelfire.com]. I did most of the programming and he did the design of the game and the graphics. We went over the code using instant messenger he understood it and would modify it to try out different things. It was a lot of fun for him.
After that I started writing a pacman [angelfire.com] type tutorial on the same site, but only recently have I made any progress on it. Unfortunately the stuff I have done recently is pretty complex. It is probably easier to stick to shot-em-ups that don't involve complex boards or AI when using the game as a learning tool for children.
If you want to use any of the code on those sites for educational purposes feel free to do so.
Re:Learn Java or buy a C=64 (Score:1)
Does X5K MaStEr X5K (the kid) ever read slashdot?
Has he done any other programming since making Anirak?
BTW my high score was 308000...If you've tried it, post yours.
-TMF
Re:Learn Java or buy a C=64 (Score:2)
I just played and barely reached level 40. Score was (oddly enough) 3,080,000.
There are several tricks to it that aren't listed on the webpa
Programming? (Score:1)
3d gamestudio (Score:2)
www.3dgamestudio.com
Stagecast (was coca) (Score:2)
It's now cross platform (java), and available from Stagecast [stagecast.com]
Looks like it gives a great intro to OO programming, since every character is an object to which you can assign properties and behaviors.
Re:Stagecast (was coca) (Score:3, Informative)
And mods, this is the direct answer to the Ask Slashdot question, the tool built for expressly this purpose. A friend taught his 8-year old daughter how to use it and she was absolutely delighted.
Pseudo-programming language... (Score:2)
Of course, I might be biased as I used gwbasic to write a text adventure game when I was a kid, but who knows :)
Alice perhaps? (Score:2)
check this out:
http://www.alice.org
I'm 21 and extremely interested in game development, always have been. My uncle brought over a copy of Alice for me when he was visiting for Christmas, I played with it for about 15 minutes, I found it to be a little simplistic, but I can see how a kid might just go crazy over it, especially one with little to no programming skills.
The nice thing about Alice, is that it teaches well structured program
Jumping into games too soon? (Score:1)
My programming language of choice is WinBatch, and I did once try to make a network Poker game.
As soon as my nephew moves back to my locality, I am going to expose him to Linux and WinBatch.
Speaking of Linux and WinBatch, has anyone confirmed whether or not Wine will run WinBatch?
One or the other.... (Score:2)
That being said, get him started with making board or card games, and learn the basics of rule creation, game balancing, etc.. early on.
Use Alice (Score:3)
It's developed by Carnegie Mellon University, and at it's simplest is directed towards telling interactive stories. It's sufficiently flexible to allow a wide range of applications, however. The interface is intuitive, and it has a large library of pre-built objects to get started with.
Interpreted and interactive (Score:2)
When the kid outgrows Logo (which he will do fairly quickly), then I'd suggest moving him on to other languages that are interpreted* and interactive - that is, that allow you to type commands at the command line to see "What happens if I do it this way".
TCL, Python, Perl, Forth, Ruby, (gack)Basic(gack again) are all good ways to go in this regard.
Of course, you want to teach the kid the value of looking a
Robocode! (Score:1)
try:an almost identical 'ask slashdot' from 5/2003 (Score:3, Informative)
"I have been asked to teach a week-long class on Computer Game Design for a small group of computer literate kids, around 9-13 years old. My plan is to have them create a simple game, while exposing them to aspects of story design, artwork, animation, and simple programming. To this end, I'm looking for a 'game construction kit' that is simple enough that they can have a working game by the end of the week with some guidance. Anyone remember the 'Arcade Game Construction Kit' on the Commodore 64? Adventure Game Studio looks good, but it may be too complex. The genre is flexible, but it does need to generate a distributable Win32 binary that they can take home. Are there any Windows packages, public domain or otherwise, that can do this, especially any designed for kids?"
god i need a fscking life...i've tearned into jeeves.
SDL (Score:2)
Project 1: Make a puzzle game, maybe one of those image sliding things where you divide an image up into a 5x5 set of tiles, mix them up, remove one and you have to shuffle things. Additions to this would be to make the tiles 'anim
C-64 (Score:2)
It can be easier to get going with only the bare basics of a computer, it's a simple enough system that a young teen (ok,
Start with Basic, move onto Assembly language when you run out of power (or get very bored with Basic).
With a C64 you'll soon also be messing with hardwar
Check this article and Game Maker (Score:2)
HTML, then Macromedia Flash (Score:2)
For an experiment, see how he feels about putting together a puzzle/"choose your own adventure" style game in HTML. Have each page represent a new location or result from an action and link them all together ("Click here to turn left down the corridor or here to drink the potion on the table"). This will teach him a bit about game structure and let him throw in a few (admittedly, static) graphics, all with a very low technical knowledge threshold. It will also introduce the idea of
D'ho! (Score:2)
I forgot to mention the obvious: You can do this with any authoring tool or even with MS Word (which I'd suggest over teaching him to manipulate an HTML file with a text editor at this stage).
Also, the kid can upload the pages to a Geocities site and share it with his friends, generate some web traffic, start a company, go public, become a millionarie, and buy for a villa in Tuscany for his parents!
Sorry. I had a 1999 dot-com flashback there for a moment. This is s
Depends on what the kid wants (Score:3, Informative)
But not everyone that wants to make games wants to learn programming, and this was a source of some frustration in my own younger years, because although I had tools available, I saw what I was going on, and I had plenty of ideas, my drive to actually create code was almost zero. So I let things sit quite a long time, and was almost entirely dependent on finding tools that minimized the amount of structural work needed(graphics routines, objects, tile engines) and maximized the amount of control I had over the critical segments of gameplay, like collisions and shooting. The best free one around like that today is Mark Overmars' Game Maker. It allows you to do some very complex things with a C-subset scripting language, while at the same time providing a strong IDE and toolset. It's unfortunately tied to DirectX and Win32, though, and it's also not an opensourced project(for a $15 registration fee you get a couple more options), but the free version is by no means crippleware, and for what it does it's very good. Also the forums are quite funny because the majority of the posters are kids playing at game development, and not even really having the smarts to do well with such a great tool.
Now I'm a freshman in college and plan to get at least a BA in CS, not because I like it, but because it's going to keep pushing me to advance my skills until I'm well capable of making games of all complexities. (I plan to go into shareware/independent gaming, so learning all skills equally well is a Good Idea. Also a good recipe for using up all my spare time.)
I've moved on from Game Maker to Pygame since I started college; my current greatest accomplishment with it is doing a scrolling tile engine(with all sizes, screen border etc. adjustable); it took three times for my code to be really anything close to clean, and after the second time I decided OOP is not a magic bullet for anything. My next project is to add a modular framework that includes the tile engine; using this framework, users will be able to make maps that play differently, because each map will load some Python code and objects in addition to settings for the tiles. It's kind of confusing me, which the tile engine did too, the first time, but I think that if I keep at it I'll get somewhere, and from there it'll just snowball until all of the sudden the game I'm planning is done hehe
Perl (Score:2)
Documentation for the language is widepspread, copious and mature, and perl also makes a great general purpose language.
Also, Perl's syntax and language constructs tend to favour people who are exploring and playing, rather than implementing a rigid design they already have all mapped out in t
Jiggle (Score:2)
Re:LogoMotion and CodeRally (Score:2, Interesting)
http://www.magicsquare.com/LM2/
and CodeRally is at:
http://www.alphaworks.ibm.com/tech/coderally
BTW, he mastered LogoMation quickly and loved the colored patterns he could product.