How to develop game from step one

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
bhbtti
Posts: 30
Joined: Fri Jul 03, 2009 5:44 am
Contact:

How to develop game from step one

Post by bhbtti »

do i start developing gui Main Menu or what
if so i need help getting started with that
Sylence
Posts: 725
Joined: Sat Mar 03, 2007 9:01 pm
Location: Germany
Contact:

Post by Sylence »

You start with the planning. And then comes the game.
Software documentation is like sex. If it's good you want more. If it's bad it's better than nothing.
Bear_130278
Posts: 237
Joined: Mon Jan 16, 2006 1:18 pm
Location: Odessa,Russian Federation

Post by Bear_130278 »

For sure, you start not with asking this on the Forum 8)
Do you like VODKA???
Image
Image
CuteAlien
Admin
Posts: 9721
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

You start by writing small games. Like number guessing, Yahtzee. Then you write little larger game (Snake, Pacman). Then you write a little larger game (Jump 'n Run). Etc...
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Virion
Competition winner
Posts: 2148
Joined: Mon Dec 18, 2006 5:04 am

Post by Virion »

Scissors Paper Stone game is good for beginners too. I did that as my first game. 8)
Lil Margin
Posts: 212
Joined: Sun Jul 19, 2009 4:24 am
Location: Netherlands Antilles, Curacao

Post by Lil Margin »

The first thing you do is plan the game so while making it you dont get stuck on it and need to rewrite,etc
But there is no real way of starting a game, your the programmer so you program and decide whats coming first :)
Ravi08
Posts: 249
Joined: Thu Jul 17, 2008 12:25 pm

Post by Ravi08 »

I would say it depends on ur skill lvl, if ur new to c++ then learn and experiment with it ie create small games.

But if u know ur stuff then i would suggest planning ie firstly write down wat ur going to need such as animations, models. levels etc.

Once ur hav resources to create the game ie models etc then i would suggest lookin though irrlicht and gettin used to it then actaully startin the code.

Just my thought hope it helps.
Ravi08
Posts: 249
Joined: Thu Jul 17, 2008 12:25 pm

Post by Ravi08 »

Lil Margin wrote: But there is no real way of starting a game, your the programmer so you program and decide whats coming first :)
I also strongly agree with this, start the game how u want to start not how others want u to start it.
FuzzYspo0N
Posts: 914
Joined: Fri Aug 03, 2007 12:43 pm
Location: South Africa
Contact:

Post by FuzzYspo0N »

I also strongly agree with this, start the game how u want to start not how others want u to start it.
But there is no real way of starting a game, your the programmer so you program and decide whats coming first
yea i agree, ignore good logic and reasoning and start at the end of the project!

Or, you could bypass all the important things that games need and just do the fun stuff, then you dont need to worry. Or, you can...

Yea the point has been made, there are MILLLLLLLLLLLLLIONS of articles online (especially over on gamedev.net) about how to goa bout a good game design. once you see how to design a game, i suppose thats a good start to understanding what order things can be made.

Theres reasons people succeed and reasons people fail, rather listen to the ones succeeding (ie : research for yourself) and the ones who have actually been there and done that (and who dont code like space pirates with a hammer) and learn from others examples.

Also, suggest ideas to the community and we will help with what experience and knowledge we can offer (again research this before just blindly believing someone with a high post count) etc etc.

A good place to start is normally the design , and then the prototype. Make it fun first, and then make the rest. (imo)
d3jake
Posts: 198
Joined: Sat Mar 22, 2008 7:49 pm
Location: United States of America

Post by d3jake »

Ravi08 wrote:
Lil Margin wrote: But there is no real way of starting a game, your the programmer so you program and decide whats coming first :)
I also strongly agree with this, start the game how u want to start not how others want u to start it.
x2

Also, I reccomend planning every major part of your game before you program anything. This prevents ugly coding to "just make it work"
The Open Descent Foundation is always looking for programmers! http://www.odf-online.org
"I'll find out if what I deleted was vital here shortly..." -d3jake
bhbtti
Posts: 30
Joined: Fri Jul 03, 2009 5:44 am
Contact:

Post by bhbtti »

i have a game doc ready but i would like to know whats the first thing to program
wildrj
Posts: 301
Joined: Thu Mar 23, 2006 12:49 am
Location: Texas/ Cyberspace
Contact:

Post by wildrj »

Well start with a basic framework.. Entity system and GameState manager. build off of that.
http://wild.deathtouchstudios.com << My gamedev blog
<Programming is a way of life>
If at first you don't succeed press the delete key till you do :)
bhbtti
Posts: 30
Joined: Fri Jul 03, 2009 5:44 am
Contact:

Post by bhbtti »

how do i start a basic framework or where do i get it
wildrj
Posts: 301
Joined: Thu Mar 23, 2006 12:49 am
Location: Texas/ Cyberspace
Contact:

Post by wildrj »

Jesus man.. look how about this.. ill make your game then.. you can claim it to be yours... Look your clearly not ready to make a game im being the nicest i can but in all honesty.. Google.
http://wild.deathtouchstudios.com << My gamedev blog
<Programming is a way of life>
If at first you don't succeed press the delete key till you do :)
bitplane
Admin
Posts: 3204
Joined: Mon Mar 28, 2005 3:45 am
Location: England
Contact:

Post by bitplane »

You could always start by reading some code to a 2D game written in C++.
Try my Jetpac game
Submit bugs/patches to the tracker!
Need help right now? Visit the chat room
Post Reply