Fallen Fig ~ Motto
| Join | Reset Password
Thread: Game Engine Suggestions
Avatar of SavageWolf
So I'm making a game engine, a "general purpose" (I guess) game engine for 2D platformers and RPGs and basically anything that can be represented as stuff on a 2D plane.

I'm just wondering if anyone has any suggestions for things I can add to the engine, like features and whatnot. Or if you want you can give a general overview of a game and I can see if it can/will work in my engine.

This isn't actually a promise to make any games, mind. So... Uh, no free labour for you. I'm just looking for things I've overlooked.
Avatar of Crazycolorz5
I'd play it if you do end up making it, at least. Not sure what exactly you want or if my ideas are good. Not that I have any ideas at this exact moment.
Avatar of SAPPHIROS
This is the 69th forum thread. This is somewhat important. lololololololololol

Ditto to Colorz,though I would jokingly say that you could try to emulate every atom and photon using real-life physical relationships and hope that some PC processor can handle it.

Basically, run the universe in a box.
Avatar of Crazycolorz5
I raise you this: Run the box in a universe.
Avatar of SAPPHIROS
In retrospect, that is by far a much better option.
Avatar of deferentsheep
Some sort of cutscene system, where cutscenes can be triggered by many different events such as talking to an NPC, walking over a square, and other things which I can totally think of. During a cutscene there should be lots of different options you can have, like dialogue, moving the players about, giving a player an item, and plot dependent actions. You could use some sort of scripting language like XML or maybe Lua. It would also be nice to save and load levels as XML, then you could have a level editor which generates a file which you can share with others. But I suggest you encrypt the XML file first then decrypt it when you come to use it, so it just looks like binary code to most people.

I am going to add more ideas that I have in separate paragraphs. You could encrypt the XML files with a password, if the user so desires, so that one can only play the game with the password. Or you could have an option to just use a default password, so anyone could play it.
Avatar of SavageWolf
At the moment I have a system (which I am going to recode, when/if I get back to coding the engine) where events are specified as just an array. I'm going to change it so that it's still an array, but elements in that array are "actions". For example, the room manager thing will have a "changeRoom" method that returned an action. The actions would then play out in order, with the next one occurring after the previous and all that. This should handle a lot of things like menus and stuff as well, with the ability to cancel.

So basically, the "scripts" will be a JS file, basically. Maps are also JS file, but really they are just a single function call with an object, so maybe in the future I could change it to JSON. I don't really intend to encrypt it though, since it probably isn't that hard to decrypt it.