Page 1 of 3

How to develop game from step one

Posted: Wed Jul 22, 2009 8:21 am
by bhbtti
do i start developing gui Main Menu or what
if so i need help getting started with that

Posted: Wed Jul 22, 2009 8:44 am
by Sylence
You start with the planning. And then comes the game.

Posted: Wed Jul 22, 2009 9:39 am
by Bear_130278
For sure, you start not with asking this on the Forum 8)

Posted: Wed Jul 22, 2009 10:49 am
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...

Posted: Wed Jul 22, 2009 11:15 am
by Virion
Scissors Paper Stone game is good for beginners too. I did that as my first game. 8)

Posted: Wed Jul 22, 2009 3:35 pm
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 :)

Posted: Wed Jul 22, 2009 6:06 pm
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.

Posted: Wed Jul 22, 2009 6:09 pm
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.

Posted: Wed Jul 22, 2009 7:52 pm
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)

Posted: Wed Jul 22, 2009 7:54 pm
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"

Posted: Wed Jul 22, 2009 9:08 pm
by bhbtti
i have a game doc ready but i would like to know whats the first thing to program

Posted: Wed Jul 22, 2009 9:37 pm
by wildrj
Well start with a basic framework.. Entity system and GameState manager. build off of that.

Posted: Wed Jul 22, 2009 9:53 pm
by bhbtti
how do i start a basic framework or where do i get it

Posted: Wed Jul 22, 2009 11:56 pm
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.

Posted: Wed Jul 22, 2009 11:57 pm
by bitplane
You could always start by reading some code to a 2D game written in C++.
Try my Jetpac game