Game Engines

Pages: 1234... 6
Oh okay :). I guess copy and paste are bad terms. Rather include the cpp and header files in your projects would have been better.
closed account (N36fSL3A)
OH MY GOD THUMPER THAT'S A BRILLIANT IDEA!
Umm... Yes it does sound like a great way of working with your own code but does it really warrant such enthusiasm?
closed account (1yR4jE8b)
Actually, it's not a brilliant idea. Don't do that.
Why not? I thought it was quite reasonable.
closed account (N36fSL3A)
I will do it. And it is an ingenious way of doing EVERYTHING
@Fredbill: Yeah... You know that whole "I'm not a troll thing" you have going? I'm buying it less and less.
I personally think it's a good idea to at least try to make your own game engine at least once. Good to understand how the underlying parts of an engine work. Also at all the universities that I've seen, they teach you to make your own engine from scratch and what it's like to use engines from the industry. it's only the colleges that only teach to use engines, rather than understand them. From what I've seen with my research any way.
Why not? I thought it was quite reasonable.


It's reasonable until you make a change for one application and break all the other ones that use the same source.
Making a game engine and making a game are two very different projects with two very different processes leading to two very different goals.

That fact that they revolve around the same medium of entertainment is the only vague similarity.
closed account (3qX21hU5)
I personally think it's a good idea to at least try to make your own game engine at least once. Good to understand how the underlying parts of an engine work. Also at all the universities that I've seen, they teach you to make your own engine from scratch and what it's like to use engines from the industry. it's only the colleges that only teach to use engines, rather than understand them. From what I've seen with my research any way.


Let me ask you this then. What benifit or expereience do you get from making a game engine that you won't get from making a game?

There seems to be this idea floating around that people need a underlying game engine to create any game. Well that is just plain false and unless you are pretty well experienced in game development making your own engine (And a lot of the time using a pre existing engine) will add significant time to your project and unneeded complications.

Another thing people seem to think is if they attempt to make a game engine of their own it will be a great learning experience about games. In my opinion it is the worst choice you can make to choose to build a game engine as a learning experience.

There are many reasons why I think this but here is two major ones.

1) You can learn the exact same techniques and material you would learn from creating a game engine by just creating a game. The major difference is that games a much much easier to create then engines and are much more rewarding when completed.

2) If you are making a game engine for a learning experience it means you don't know much about how games work or you have very little experience in it. So you have no idea what should go into a game engine and what shouldn't go into it. Game Engines are very tricky things to create yet alone create one that can be useful. Usually beginners either create a engine that is so tightly centered around one game that it will be useless for anything else, or they end up with something that is so vague that it can't be used for any project. And that assumes they actually complete the engine.


You can find a whole bunch of other reasons once you start getting into game development and researching the subject.

Now I know some out there will still really want to make a Game Engine (I used to be one of them) so here is some advice. If you won't budge from the idea of making a Engine here is some steps you should take before you try and tackle it.

1) First get some experience with how games are made. You do this by you guessed it making games. So go out there and create 3-5 games that don't use a engine and are fully functional to get a good grasp of what goes into making a game.

2) Next once you have completed them games you should have a good idea of what code you used on every project or most of the projects. You should also have a idea on what tools you used on most of them, what was helpful in most of them, what saved you a bunch of time, ect.

3) Start going through your old game projects and start transferring all the code that was used on all the projects or most of them into a library, also keep track of everything you used in all the projects to save you time, made your code better, made things easier, ect.

4) Now you have the the groundwork for your engine and the knowledge to help you create one that is actually useful. Start going through all that code and other things that were general to all your projects and thinking about what is most needed in the engine and what would hamper the engine. Remember you want to make the engine general enough so it will be helpful to more then one project, but then again you don't want it to general where it makes crappy games (It is a fine line). Generally I would say pick a Genre (Or maybe 2 if they are similar) and build the engine around that Genre.

That is my opinion on the matter at least. Just remember that you don't need a game engine to make a game or even a good game. Game Engines are just tools that help you create things easier and more efficiently.
Last edited on
Zereo said:
Let me ask you this then. What benefit or experience do you get from making a game engine that you won't get from making a game?


Well it's a good idea (in my opinion anyway) to understand how things work in a game engine. Yes chances are, if you just want to make a game, it'd be better to use someone else's engine as it would increase speed and give you things like cross platform-ness; but you wouldn't learn how stuff like collision, clipping, rotating vertices/polygons, or gravity works, which are nice skills to have.
closed account (3qX21hU5)
You totally missed the point of my whole question and my whole post. Making a game will give you all them skills... I never said anything about using someone else's engine... once again you don't need a game engine to make a game.
closed account (N36fSL3A)
Well, as you make your game you may not think of it as an engine, but the part of the game that handles logic, rendering, input, etc. is actually the engine.
closed account (3qX21hU5)
Sigh... I give up
closed account (N36fSL3A)
wat
What do you mean 'wat'?! For someone who understands programming and allegedly makes engines, you seriously come across as just a kid trying to play with programmers.

I can't speak for Zereo, but I think his point is that you don't have to make an engine itself to make a game. You can make a game using pre-existing engines (Game Maker, Unity, Torque Game Engine, etc.) to make a game. Doing that method eliminates you making the engine and lets you focus on making the game. If you don't understand that, then you need to stop programming until you can wrap your head around some more concepts.
closed account (3qX21hU5)
Sigh again... I guess I'm typing in gibberish lol
Last edited on
what he's saying is that you dont need to use or make an engine at all, You can just make a game.. but that goes against what people have been teaching for game design for years, due to the reuse-ability of a game engine.
IMO writing reusable code comes from the experience gained from attempting to make games, after a few tries someone should be able to recognize the similarities in the attempted games and write general/reusable code. Someone just starting at game making should focus on the game not the engine.
Pages: 1234... 6