up vote 5 down vote favorite
share [g+] share [fb]

I came across a very good game called Light Bot. It is a game which is good for beginner programmers. I am about to create a game, but, I am lacking good ideas (like the Light Bot idea). How do you guys come up ideas for your games or software?

edit: I am probably going to use Allegro/C++

link|improve this question

You might have better luck with a more general question, like "How do you come up with creative ideas for new software". – JosephStyons Oct 1 '08 at 2:49
Thanks, that might help. – strider24 Oct 1 '08 at 2:54
You might want to try gamedev.net for more ideas and info. – Zee JollyRoger Oct 1 '08 at 2:54
Btw, if you want a simple technology to get started with games, take a look a pygame: You can use Python + SDL to make decent games. pygame.org/news.html – torial Oct 1 '08 at 2:55
feedback

closed as not constructive by Anna Lear Nov 25 '11 at 5:22

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

8 Answers

up vote 10 down vote accepted

Think of an interesting mechanic - particles, gravity, rotation, reflection, whatever.

Make it into something that a user can interact with - a toy.

Then add in some kind of goal and scoring system.

Easy!

:P

link|improve this answer
feedback

Same way you come up with ideas for anything. Steal shamelessly.

link|improve this answer
I am stealing all your ideas here. Any more sources to steal from? :) – strider24 Oct 1 '08 at 3:03
2  
Clarification: steal from worthy sources ;) I am not one of 'em! – ryw Oct 1 '08 at 3:06
I meant ideas from stackoverflow. – strider24 Oct 1 '08 at 3:07
feedback

Check http://www.mechanicalcat.net/tech/ld48/wiki/ThemeSuggestions for some interesting ideas from the 48 hour game programming contest.

link|improve this answer
feedback

I use weird ideas my kids come up with for game designs, for example when my eldest boy was little, we used to avoid stepping on crack / lines on the street. He then said to me, can you create me a game and we came up with Line Jumper a 2D top view jumper - not finished, but it gave me an idea! Try applying simple concepts to create original idea - they are usually the most fun and addictive games - check out indie games like peggle, water bugs, hammer heads, etc.

link|improve this answer
feedback

Evolution is the best way. Start getting your hands dirty by creating something to begin with. Try it out, see whether it's fun, think of ways of making it even more fun, then riff on those and iterate on that. Don't be afraid to throw out bad ideas or to contemplate crazy ones; just keep on hammering away. It's extremely unlikely that you'll design an amazing game up-front without doing any coding first---games need to be fun, and you just can't design fun without a bit of suck-and-see.

link|improve this answer
feedback

Honestly, I'll just try to sit down and take a moment to myself in a quiet area, with a notebook and a pencil/pen. I'll just let my mind wander a bit. Not saying I have the best ideas, but If you keep a notebook for JUST ideas, you can always reference them. No matter how good or how bad, you might be able to come back to that notebook six months later.

link|improve this answer
feedback

brainstorming and discussion and free-association and copy-catting are all useful, but then use techniques from the masters to refine the good ideas into great ideas

Caveat: Andrew Rollings is a friend of mine. But his book is still great!

link|improve this answer
feedback

An XNA tutorial I've been going through for 2D gaming uses a simplified version of Scorched Earth to introduce a lot of concepts like Texture, turns, angles, drawing, tradeoffs, etc..

http://www.riemers.net/eng/Tutorials/XNA/Csharp/series2d.php

There are a number of other tutorials (for XNA), that if you are brave, might give you some basic game ideas to translate into the particular environment you will use.


An alternative strategy though is to start with a game you love and try to make the next version of it. An awesome XNA game (incomplete) is a sequel to a Microprose game called Birth of the Federation. The author used it as an excuse to learn all the latest and greatest MS technologies. http://www.codeplex.com/Supremacy

link|improve this answer
feedback

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