Click here to Skip to main content
15,893,487 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Mini CCCs 27 - Done Pin
Tim Deveaux19-Feb-19 18:41
Tim Deveaux19-Feb-19 18:41 
GeneralRe: Mini CCCs 27 Pin
OriginalGriff19-Feb-19 19:32
mveOriginalGriff19-Feb-19 19:32 
GeneralHalf Gross Pin
Peter_in_278019-Feb-19 17:47
professionalPeter_in_278019-Feb-19 17:47 
GeneralRe: Half Gross Pin
Tim Deveaux19-Feb-19 18:16
Tim Deveaux19-Feb-19 18:16 
GeneralRe: Half Gross Pin
OriginalGriff19-Feb-19 19:42
mveOriginalGriff19-Feb-19 19:42 
GeneralRe: Half Gross Pin
Jörgen Andersson19-Feb-19 22:18
professionalJörgen Andersson19-Feb-19 22:18 
GeneralGame development Pin
Zaf Khan19-Feb-19 19:22
Zaf Khan19-Feb-19 19:22 
GeneralRe: Game development PinPopular
CodeWraith19-Feb-19 20:47
CodeWraith19-Feb-19 20:47 
Zaf Khan wrote:
But have no skills in game design besides the concept of the game in my head.
One simple rule: It must be fun. Avoid everything that is overly complicated or repetitive, You must find the optimal spot between boredom and stress. And forget the word 'realistic'. You can make your own little reality and can make the rules as you please.
Zaf Khan wrote:
I would like to use Unity engine
You are starting at the wrong end. If you try to do everything at one, the whole thing will descend into chaos. How about taking a tip from web development and use a three tier approach?

- The 'lowest' tier is a data layer. It must not be built with or around a database, but it can be. The are many more options, like storing your data (like your map) in binary files, XML, punched paper tape, floppy disks or anything else that suits your needs. All this layer does is to store data (like for example a tile of your map) or find it for you when you ask for it.

- The middle tier is the game logic. Here is where the games rules are implemented. It uses the functions of the lower tier to fetch and store the data it needs.

- The uppermost tier is the presentation layer. It does nothing more (huge understatement!) Than take the player's inputs, call functions of the middle tier to process them and then 'present' the returned results to the player. Here you must do all the drawing and again you are totally free to use anything at your disposal, from simple console output to huge rendering engines like Unity. Build the simplest presentation layer you can at first. Console I/O is really easy, but limited and ugly. This way you can concentrate on the lower tiers, build and test them without getting bogged down with how to draw this or that. Once you have a working game, you can still write a new presentation layer with any fancy graphics you like and concentrate on doing that and nothing else.

Zaf Khan wrote:
My programming is okay
Self praise stinks. Smile | :) You will quickly find that you have chewed off too much. That's okay as long as you can work at one problem at a time and don't try to do everything at once. Use that three tier approach to keep your problems separated and try to keep the scope of your game small until you know that you can handle it. Better a small finished game than an eternal construction site.

How I know that? I started out on this thing[^]. The data layer (yes, I take my own medicene) can spew out solar systems in 4 billion universes, each with 4 billion galaxies, each of the galaxies having hundreds of billions of complete soloar systems with planets and moons. Talk about an insane scope. I should take a year or two off and finally finish it. Smile | :) Not that such a beast ever is really 'finished'.
I have lived with several Zen masters - all of them were cats.

His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.


modified 20-Feb-19 5:26am.

GeneralRe: Game development Pin
Zaf Khan11-Mar-19 9:46
Zaf Khan11-Mar-19 9:46 
GeneralRe: Game development Pin
Mike (Prof. Chuck)19-Feb-19 21:06
professionalMike (Prof. Chuck)19-Feb-19 21:06 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 9:48
Zaf Khan11-Mar-19 9:48 
GeneralRe: Game development Pin
GuyThiebaut19-Feb-19 22:01
professionalGuyThiebaut19-Feb-19 22:01 
GeneralRe: Game development Pin
Mike (Prof. Chuck)19-Feb-19 22:56
professionalMike (Prof. Chuck)19-Feb-19 22:56 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 9:49
Zaf Khan11-Mar-19 9:49 
GeneralRe: Game development Pin
RickZeeland19-Feb-19 23:31
mveRickZeeland19-Feb-19 23:31 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 9:50
Zaf Khan11-Mar-19 9:50 
GeneralRe: Game development Pin
ZurdoDev20-Feb-19 1:08
professionalZurdoDev20-Feb-19 1:08 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 10:49
Zaf Khan11-Mar-19 10:49 
GeneralRe: Game development Pin
Slacker00720-Feb-19 2:56
professionalSlacker00720-Feb-19 2:56 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 10:06
Zaf Khan11-Mar-19 10:06 
GeneralRe: Game development Pin
Slacker00711-Mar-19 10:08
professionalSlacker00711-Mar-19 10:08 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 10:13
Zaf Khan11-Mar-19 10:13 
GeneralRe: Game development Pin
TuanGabhala20-Feb-19 22:25
TuanGabhala20-Feb-19 22:25 
GeneralRe: Game development Pin
Zaf Khan11-Mar-19 10:49
Zaf Khan11-Mar-19 10:49 
GeneralUh-oh Pin
#realJSOP19-Feb-19 13:30
mve#realJSOP19-Feb-19 13:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.