Let's have a good POV..
#1 Members - Reputation: 112
Posted 20 July 2012 - 02:02 AM
I already program in C, I've also tried the Allegro library but... I want to know how a game is developed. What's its structure, how should I create it, what tools should I use and so on. I would like to use professional-like tools (C++, OpenGL [open-source!]... etc) and maybe you can help me.
How can I understand C++ (coming from C, so I don't need the "ok, this thing is called variable" chapter) and OOP? What should I do next? Which books can help me in my project?
So to sum it up: what's the game structure? How can I make it work? How can I do it?
Suggest me books to buy and so on. Thank you guys!
PS: (this is quite OT but...) I'm not a native english speaker so I'd like some correction and some "grade" with my english. Thanks! (help me improve!)
#2 Members - Reputation: 142
Posted 20 July 2012 - 02:40 AM
My understanding is that the main distinguishing characteristic between C and C++ is that C++ is object oriented, while C is not. My experience with C is limited though, however OO is the dominant kind of programming knocking around right now I believe. If you've ever worked in one of the .net languages, that's OO.
One metaphor I find is nice with OO programming is to imagine what you want your program to do is a project you're overseeing, and each of your objects is somebody on your team working on it. You organize them to work on their own parts, and at the end, you get the big picture you want.
I'm afraid I can't point you in the direction of a good book or anything, as I approached C++ with lots of prior experience in OO programming. I'm sure there's plenty of people here who can, though!
And finally, I'd have assumed your native language was English. You write very eloquently, and use punctuation well. There's people born here in England whose English isn't as clear as yours!
#3 Members - Reputation: 112
Posted 20 July 2012 - 02:51 AM
Thanks!I believe OpenGL is an open standard, rather than being open source. But that's a mistake we all make at some point.
My understanding is that the main distinguishing characteristic between C and C++ is that C++ is object oriented, while C is not. My experience with C is limited though, however OO is the dominant kind of programming knocking around right now I believe. If you've ever worked in one of the .net languages, that's OO.
One metaphor I find is nice with OO programming is to imagine what you want your program to do is a project you're overseeing, and each of your objects is somebody on your team working on it. You organize them to work on their own parts, and at the end, you get the big picture you want.
I'm afraid I can't point you in the direction of a good book or anything, as I approached C++ with lots of prior experience in OO programming. I'm sure there's plenty of people here who can, though!
And finally, I'd have assumed your native language was English. You write very eloquently, and use punctuation well. There's people born here in England whose English isn't as clear as yours!
I read that I should also use SMFL or SDL but... what if I'll want to share my games on Steam / iOS Store / Android Store and so on? Steam shouldn't be a big problem, I think but what about the others? iOS uses Obj-C so no SDL / SMFL / Allegro. Android uses Java (as far as I know)... so what then?
I've got no ideas at all... where should I start? C++? A multimedia library?
But then comes again the question: how is really structured a game? What's the "formula" behind a game?
#4 Members - Reputation: 271
Posted 20 July 2012 - 02:57 AM
One metaphor I find is nice with OO programming is to imagine what you want your program to do is a project you're overseeing, and each of your objects is somebody on your team working on it. You organize them to work on their own parts, and at the end, you get the big picture you want.
This same can be applied to C team programming, but C++ is still much more powerful with overloading and templates, but basic class functionality you can get by doing something like this with structures and their pointers which is pretty much enough of object style game programming in my mind.
struct MyStruct {
int MyPlayerID;
char * MyCharacterName;
};
void SetPlayerID(struct MyStruct * this, int ID) {
this->MyPlayerID = ID;
}
void SetCharacterName(struct MyStruct * this, char * CharacterName) {
this->MyCharacterName = CharacterName;
}
If you want to use OpenGL, look into glfw which is small framework for creating window, handling input events and OpenGL context is created for you. Though staying with C might be little more annoying as I damn hate C/C++ arrays, but you still need to use them with OpenGL. If you want to learn C++ there exists quite extensive reference/tutorial sites for this like cplusplus.com and cppreference.com.
I read that I should also use SMFL or SDL but... what if I'll want to share my games on Steam / iOS Store / Android Store and so on? Steam shouldn't be a big problem, I think but what about the others? iOS uses Obj-C so no SDL / SMFL / Allegro. Android uses Java (as far as I know)... so what then?
I've got no ideas at all... where should I start? C++? A multimedia library?
But then comes again the question: how is really structured a game? What's the "formula" behind a game?
Steam is for desktop games so SMFL and SDL are fine. iOS and Android kinda need Obj-C and Java, but there exists many Software Development Kits for mobile which allows you to use other languages like Lua, C/C++.
Edited by TMKCodes, 20 July 2012 - 03:00 AM.
#5 Members - Reputation: 112
Posted 20 July 2012 - 03:10 AM
Could you reccomend me some books? C++ (OOP too) / Game structure (veeeery important since I don't know WHERE to start) / Libraries...
One metaphor I find is nice with OO programming is to imagine what you want your program to do is a project you're overseeing, and each of your objects is somebody on your team working on it. You organize them to work on their own parts, and at the end, you get the big picture you want.
This same can be applied to C team programming, but C++ is still much more powerful with overloading and templates, but basic class functionality you can get by doing something like this with structures and their pointers which is pretty much enough of object style game programming in my mind.struct MyStruct { int MyPlayerID; char * MyCharacterName; }; void SetPlayerID(struct MyStruct * this, int ID) { this->MyPlayerID = ID; } void SetCharacterName(struct MyStruct * this, char * CharacterName) { this->MyCharacterName = CharacterName; }
If you want to use OpenGL, look into glfw which is small framework for creating window, handling input events and OpenGL context is created for you. Though staying with C might be little more annoying as I damn hate C/C++ arrays, but you still need to use them with OpenGL. If you want to learn C++ there exists quite extensive reference/tutorial sites for this like cplusplus.com and cppreference.com.I read that I should also use SMFL or SDL but... what if I'll want to share my games on Steam / iOS Store / Android Store and so on? Steam shouldn't be a big problem, I think but what about the others? iOS uses Obj-C so no SDL / SMFL / Allegro. Android uses Java (as far as I know)... so what then?
I've got no ideas at all... where should I start? C++? A multimedia library?
But then comes again the question: how is really structured a game? What's the "formula" behind a game?
Steam is for desktop games so SMFL and SDL are fine. iOS and Android kinda need Obj-C and Java, but there exists many Software Development Kits for mobile which allows you to use other languages like Lua, C/C++.
Thanks!
#6 Crossbones+ - Reputation: 1064
Posted 20 July 2012 - 04:53 AM
Personally I like this tutorial http://www.learncpp.com also explains what C++ and the Computer is doing under the hood. However, I think it doesn't give you the skillset for how you design an OO program.
On OpengI found this here which i like so far, it starts by explaining the terminology and basic math behind OpenGL.http://arcsynthesis.org/gltut/Basics/Intro%20Graphics%20and%20Rendering.html
On game structure I found this very helpful. http://content.gpwiki.org/index.php/SDL:Tutorials:Complete_2D_Engine_Overview
It gave me a great overview what a gameengine should do.
I know these aren't books but I hope it helps a bit until you know what books you want to buy.
Setting fire to these damn cows one entry at a time!
#7 Members - Reputation: 112
Posted 20 July 2012 - 06:35 AM
Thank you for your links.I had the book "Practical C++ Programming", which is a nice starter book. It also covers general programming practices.
Personally I like this tutorial http://www.learncpp.com also explains what C++ and the Computer is doing under the hood. However, I think it doesn't give you the skillset for how you design an OO program.
On OpengI found this here which i like so far, it starts by explaining the terminology and basic math behind OpenGL.http://arcsynthesis.... Rendering.html
On game structure I found this very helpful. http://content.gpwik...Engine_Overview
It gave me a great overview what a gameengine should do.
I know these aren't books but I hope it helps a bit until you know what books you want to buy.
Does the "Game Engine Structure" also show me how a "game loop" is created / developed?
#8 Members - Reputation: 271
Posted 20 July 2012 - 06:52 AM
Could you reccomend me some books? C++ (OOP too) / Game structure (veeeery important since I don't know WHERE to start) / Libraries...
Thanks!
I never have read one book about programming languages fully, except almost one about Go. I like more of learning from the language/library's documentation.
Though I have read OpenGL SuperBible, Bjee's Guide to network programming and Game Engine Architecture. Another good source for OpenGL and general graphics programming is at http://arcsynthesis.org/gltut
Game Loop is just a for or while or do-while loop. xD
#9 Members - Reputation: 112
Posted 20 July 2012 - 06:55 AM
Hmm yeah but I think that I've explained the whole thing in a kinda bad way. With game loop I mean: I start doing this and that... now... how can I set my game to "go to the next level?". What if my pg dies? And so on...
Could you reccomend me some books? C++ (OOP too) / Game structure (veeeery important since I don't know WHERE to start) / Libraries...
Thanks!
I never have read one book about programming languages fully, except almost one about Go. I like more of learning from the language/library's documentation.
Though I have read OpenGL SuperBible, Bjee's Guide to network programming and Game Engine Architecture. Another good source for OpenGL and general graphics programming is at http://arcsynthesis.org/gltut
Game Loop is just a for or while or do-while loop. xD
#10 Members - Reputation: 271
Posted 20 July 2012 - 06:58 AM
Hmm yeah but I think that I've explained the whole thing in a kinda bad way. With game loop I mean: I start doing this and that... now... how can I set my game to "go to the next level?". What if my pg dies? And so on...
This is one way to manage what is done and when. http://gamedevgeek.com/tutorials/managing-game-states-in-c/
#11 Crossbones+ - Reputation: 1064
Posted 20 July 2012 - 06:59 AM
Well yeah, it shows a way to do it. I suggest you try to undestand the intensions of the tutorial i mentioned. Then you think about how you would do it, do it and then see how it worked out.Hmm yeah but I think that I've explained the whole thing in a kinda bad way. With game loop I mean: I start doing this and that... now... how can I set my game to "go to the next level?". What if my pg dies? And so on...
I would not think about how you go from one level to another when you don't have one level.
E: another tutorial worth looking at may be: http://lazyfoo.net/SDL_tutorials/index.php
If you work without SDL you can skip the SDL specific explanations. Here is also an introduction to tools you will make/need like Timing in games, caping frames and so on. Very basic and easy to understand tutorial in my opinion.
Edited by Bluefirehawk, 20 July 2012 - 07:03 AM.
Setting fire to these damn cows one entry at a time!
#12 Members - Reputation: 358
Posted 20 July 2012 - 07:07 AM
I think there are several books you can use.
I suggest
C++:
- The C++ Programming Language by Bjarne Stroustrup (You will learn nearly everything ;) )
- Effective C++ by Scott Meyers (Great book about best practise)
- OpenGL SuperBible by Richard S. Wright, Jr., Nicholas Haemel, Graham Sellers and Benjamin Lipchak (My favorite OpenGL book)
- Game Engine Architecture by Jason Gregory (Best book about engine design ever, explain game loops a little too)
PS: I will update this reply when I remember other books that I have read.
I have a blog: omercan1993.wordpress.com look there for more content
And I also do some art: omercan1993.deviantart.com
And whats about the Pear3DEngine? Never heard of it? Go and look!
Yeah, and currently I do this: SimuWorld
PS: Please look at this poll on my blog about scripting languages: A opinion poll about scripting language
#14 Crossbones+ - Reputation: 2422
Posted 20 July 2012 - 12:59 PM
Please make sure not to make all your game states singletons as suggested in this article, the last thing you want is a ton of global state sitting around being "managed"... the rest of the article seems pretty standard though.This is one way to manage what is done and when. http://gamedevgeek.c...me-states-in-c/
Edited by Saruman, 20 July 2012 - 01:00 PM.
#15 Members - Reputation: 271
Posted 20 July 2012 - 01:59 PM
Please make sure not to make all your game states singletons as suggested in this article, the last thing you want is a ton of global state sitting around being "managed"... the rest of the article seems pretty standard though.
This is one way to manage what is done and when. http://gamedevgeek.c...me-states-in-c/
Thanks for mentioning that. I myself forgot about the damn singletons I myself hate them probably more than any other programming technique. It has been a while since I read that article, but I knew that it talked about State Manager.
Edited by TMKCodes, 20 July 2012 - 02:00 PM.
#17 Members - Reputation: 194
Posted 20 July 2012 - 10:01 PM
So... C++ with a media library such as SDL.Then I'll move to platform specific environment. :-)
What got me started from ground up with SDL is this guy's website : http://lazyfoo.net
Read the articles section too, it talks about beginning game development. The article on state machines is nice too.
I "surf" the web, literally.
#18 Moderators - Reputation: 702
Posted 21 July 2012 - 06:34 AM
#19 Members - Reputation: 112
Posted 24 July 2012 - 12:46 PM
So it's theory + practice at the same time? I already program so I do not really need a C++ guide (Even if I program in C, but with some web searching I'd the trick). Can I spend my 40 € without burning in anger later? :-PThe book Game Coding Complete is a good book for describing the overall strucutre and systems involved in a game. I've not got this latest edition, but the Second edition is very good.
In other words: being a total beginner in these area, will the book guide me through all the learning course? (basic features + advanced ones)
Edited by Krishath, 24 July 2012 - 12:47 PM.






