Page 1 of 1

Map Editor

PostPosted: Fri Mar 19, 2010 2:49 am
by MysticTrunks
I've always thought that the big room thing was a terrible idea, I mean really each 2D game uses a level or so called map to load from. Because 1 room could be 80,000PX wide and 20,000PX high.

Why not open support for mappy or tiles studio so people can create RPGs more efficiently.

Re: Map Editor

PostPosted: Fri Mar 19, 2010 3:35 pm
by MrJolteon
...or make a map editor for GE that is a part of the setup exe, but is on it's own exe.

Re: Map Editor

PostPosted: Fri Mar 19, 2010 5:03 pm
by Hblade
yeah :O if someone wants to help, I can write one for GE :) using C#

Re: Map Editor

PostPosted: Fri Mar 19, 2010 5:16 pm
by MrJolteon
yea but someone must edit the source code so there's a new menu function named "Load Map" that can load maps made with that ME.

Re: Map Editor

PostPosted: Fri Mar 19, 2010 9:24 pm
by Hblade
Yeah, well I just learned that you cant use C# and integrate it in the C++ Source code :/

Re: Map Editor

PostPosted: Thu Mar 25, 2010 6:59 pm
by Darkhog
or maybe instead of one huge game area, where it is hard to change levels (moving viewport) add level/frame support with different actors scripts and vars for each level+eventually clone level functionality and ad command like change_level(char *levelname), where levelname would be string. For example change_level ("main_menu"). Of course "levels" don't have to be actual levels it can be also menus or something like this. I mean every level will be actual game area as it now. But you could make more areas (i mean levels) and don't have to store every level with another in this way:
Code: Select all
_________    _________
| level 1 | | level 2 |
_______===============__________
      | level 3 |   | main menu |

but you will have different, independ areas (levels) named level 1, level 2, level 3, and main menu. Betweeen this levels you'll switch with change_level(char *levelname) script command. Of course every level will have another set of actors, events, scripts and variables.

Re: Map Editor

PostPosted: Sat Mar 27, 2010 5:43 pm
by MrJolteon
...or just stick to my idea about a map editor to make maps ge can load.

Re: Map Editor

PostPosted: Sat Mar 27, 2010 8:47 pm
by Hblade
lol. I'll work on one of these again one day.