#1 Members - Reputation: 102
Posted 20 May 2012 - 10:35 AM
All my life I've wanted to create a game just like Wonderboy 3 on the SMS. I've been planning on starting with this, but I want to replicate the general feel (Can't really call them physics??) quite exactly.
I suppose most modern toolsets already have all of these elements implemented. Is there anything that would be a good choice still? Or should I create an engine from the grounds up.
Cheers
#2 Members - Reputation: 234
Posted 20 May 2012 - 02:00 PM
http://scientificnin...mes-not-engines
If you went with XNA, it comes with pretty much everything you would need to make a game like this right off the bat.
Other API's like SFML or SDL would be just as effective
#3 Members - Reputation: 102
Posted 20 May 2012 - 04:27 PM
I actually only have experience with XNA, and though it's nice and great fun, I don't think I'll ever be able to make a SMS type game out of that.
I was looking into SDL, which seems to be more in the way of what I'm looking for.
The again, perhaps my understanding of game engines is terribly flawed.
Thanks again
#4 Members - Reputation: 878
Posted 20 May 2012 - 09:36 PM
I'm sorry, but I think you're misunderstanding my question. My question isn't what engine has what I want to use. It's the reverse, what engine is so basic you could barely make Mario with it.
That's not what you asked. You asked:
Is there anything that would be a good choice still? Or should I create an engine from the grounds up.
How could anyone read that and infer that you're looking for an "engine so basic you could barely make Mario with it"?
I know there are some really great people here on gamedev, but I don't think any of them can read minds (at least not yet).
Anyway:
If you have very specific game engine requirements (and it seems like you do), you'll probably have to make your own, specifically for your game.
The SDL library could be used to great effect in this case.
Small and simple Python 3.x media library: pslab
#5 Members - Reputation: 316
Posted 20 May 2012 - 10:03 PM
#6 Members - Reputation: 791
Posted 20 May 2012 - 11:22 PM
I actually only have experience with XNA, and though it's nice and great fun, I don't think I'll ever be able to make a SMS type game out of that.
Out of curiousity, why do you feel you could never make a retro game using XNA?
XNA is just a framework, not an engine. In fact, I'm currently working on an entirely "ASCII mode" video game system using XNA, which is about as retro as it gets, so I'm sure something like NES could be done.
#7 Members - Reputation: 3716
Posted 20 May 2012 - 11:38 PM
I actually only have experience with XNA, and though it's nice and great fun, I don't think I'll ever be able to make a SMS type game out of that.
Out of curiousity, why do you feel you could never make a retro game using XNA?
XNA is just a framework, not an engine. In fact, I'm currently working on an entirely "ASCII mode" video game system using XNA, which is about as retro as it gets, so I'm sure something like NES could be done.
indeed, for a NES like game you can use any 3D engine/API that supports orthographic projection and no/nearest texture filtering (Which really is most of them)
Edited by SimonForsman, 20 May 2012 - 11:39 PM.
The voices in my head may not be real, but they have some good ideas!
#8 Members - Reputation: 316
Posted 21 May 2012 - 09:04 AM
indeed, for a NES like game you can use any 3D engine/API that supports orthographic projection and no/nearest texture filtering (Which really is most of them)
Agree with you completely. However, if you are JUST interested in the basic functionality then a simple 2D engine might actually be better. That way you will not get lost in the multitude of APIs that a 3D engine typically has especially if you are beginner. Also if you use a fullscale 3D engine then you probably will end up using only a minuscule of the functionality anyways.
On the other hand, if you are already familiar with the 3D engine, then it makes more sense to go along with that because it will actually save time.
#9 Members - Reputation: 102
Posted 21 May 2012 - 04:18 PM
Sorry for the confusion, my first post was missing a pretty important sentence saying I wasn't interested in an engine with too many options
Will definitely take a look at Gadget2D. Might be exactly what I was looking for.






