I Think I Want To Write An Engine
Moderator: PC Supremacists
- davidthefat
- Chaos Rift Maniac
- Posts: 529
- Joined: Mon Nov 10, 2008 3:51 pm
- Current Project: Fully Autonomous Robot
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C++
- Location: California
- Contact:
I Think I Want To Write An Engine
and ONLY an engine, not developing any games with it. Here is why, when I want to do something with the game in mind, I tend to overcomplicate things and never end up starting it. So I think I want to develop some unique engine. Simple and something that works with minimum bugs... LOL all this talk is nonsense until I have a pseudo code written
Re: I Think I Want To Write An Engine
Why don't you use a 3rd party engine? There is really good stuff out there.
- GroundUpEngine
- Chaos Rift Devotee
- Posts: 835
- Joined: Sun Nov 08, 2009 2:01 pm
- Current Project: mixture
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Location: UK
Re: I Think I Want To Write An Engine
/agreedK-Bal wrote:Why don't you use a 3rd party engine? There is really good stuff out there.
- MrDeathNote
- ES Beta Backer
- Posts: 594
- Joined: Sun Oct 11, 2009 9:57 am
- Current Project: cocos2d-x project
- Favorite Gaming Platforms: SNES, Sega Megadrive, XBox 360
- Programming Language of Choice: C/++
- Location: Belfast, Ireland
- Contact:
Re: I Think I Want To Write An Engine
I think he only wants to write the engine guys, i agree that theres some amazing engines out there but he says he doesn't want to make a game just the engine.
http://www.youtube.com/user/MrDeathNote1988
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
- GroundUpEngine
- Chaos Rift Devotee
- Posts: 835
- Joined: Sun Nov 08, 2009 2:01 pm
- Current Project: mixture
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Location: UK
Re: I Think I Want To Write An Engine
Ah I see, However I would still recommend using some of the engines out there to get a feel of how they work, so that if the goal is really to build an engine it wont epic failMrDeathNote wrote:I think he only wants to write the engine guys, i agree that theres some amazing engines out there but he says he doesn't want to make a game just the engine.
Case in point: **most good engine programmers have good experience with other engines and a good knowledge of how they are built**
- MrDeathNote
- ES Beta Backer
- Posts: 594
- Joined: Sun Oct 11, 2009 9:57 am
- Current Project: cocos2d-x project
- Favorite Gaming Platforms: SNES, Sega Megadrive, XBox 360
- Programming Language of Choice: C/++
- Location: Belfast, Ireland
- Contact:
Re: I Think I Want To Write An Engine
AgreedGroundUpEngine wrote:Ah I see, However I would still recommend using some of the engines out there to get a feel of how they work, so that if the goal is really to build an engine it wont epic failMrDeathNote wrote:I think he only wants to write the engine guys, i agree that theres some amazing engines out there but he says he doesn't want to make a game just the engine.
Case in point: **most good engine programmers have good experience with other engines and a good knowledge of how they are built**
http://www.youtube.com/user/MrDeathNote1988
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
- SD021
- Chaos Rift Newbie
- Posts: 31
- Joined: Wed Oct 29, 2008 1:32 pm
- Current Project: Yes :P
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Location: Ireland
Re: I Think I Want To Write An Engine
I think I know what your talking about because I've done this. I think what you want is not to write an engine but to write a simple code base that can be used to start any game you may may wish to make. For example I have a class in which I have all the basic functionality a game may need such as drawing sprites or playing sounds. I then need to just add this to any new project and I have something from nothing. This is very different from an engine as such.
Check out my channel: http://www.youtube.com/user/QuestForMario
Re: I Think I Want To Write An Engine
Well I guess you would have to define what an "Engine" really is. To me an engine is, a collection of systems/managers that work in conjunction with outside content in order to produce a piece of software. To me an engine is the driving force of the game, without it all you would have is just a bunch of game/media files.
- GroundUpEngine
- Chaos Rift Devotee
- Posts: 835
- Joined: Sun Nov 08, 2009 2:01 pm
- Current Project: mixture
- Favorite Gaming Platforms: PC
- Programming Language of Choice: C++
- Location: UK
Re: I Think I Want To Write An Engine
/agreedDaveB wrote:Well I guess you would have to define what an "Engine" really is. To me an engine is, a collection of systems/managers that work in conjunction with outside content in order to produce a piece of software. To me an engine is the driving force of the game, without it all you would have is just a bunch of game/media files.