Page 1 of 1
Maze: A simple map editor

Posted:
Tue Apr 07, 2009 11:02 am
by Kalladdolf
This would actually be the most simple map editor ever, since you can't even save or load. Or play.
Worse: The only thing you can do is click. (Or press "c" / "f" and find out what happens).
Thought there is one thing...

- Tech style!
Sprites created with MS Paint.
Re: Maze: A simple map editor

Posted:
Tue Apr 07, 2009 2:14 pm
by Fuzzy
I really like the graphics!
Re: Maze: A simple map editor

Posted:
Tue Apr 07, 2009 2:50 pm
by Kalladdolf
Thanks... that's what I put most of my effort into... contrary to the script which may become obvious through your beloved if-conditions, threatening to flood the whole code.
Re: Maze: A simple map editor

Posted:
Tue Apr 07, 2009 11:52 pm
by skydereign
- Code: Select all
void
MapLoad (const char *name)
{
FILE * map = fopen(name, "r");
for (i = 0; i < 20; i++)
{
for (j = 0; j < 20; j++)
{
fscanf(map, "%d, ",&maze[j][i]);
}
}
fclose(map);
}
void
MapSave(const char *name)
{
FILE *map = fopen(name, "w");
for (i=0; i<20; i++)
{
for (j=0; j<20; j++)
{
fprintf(map, "%d, ", maze[j][i]);
}
}
fclose(map);
}
These allow you save and load, if you care to add it. You would only need to set a text actor that makes there text into a char*, then use that to determine which map to load and save.
Re: Maze: A simple map editor

Posted:
Wed Apr 08, 2009 4:57 pm
by j2graves
this is truely amazing!!!
Re: Maze: A simple map editor

Posted:
Thu Apr 09, 2009 12:24 am
by jimmynewguy
pretty awsome, if would be cool if you made a full game with a map editor in it

Re: Maze: A simple map editor

Posted:
Sat Apr 18, 2009 12:33 pm
by Kalladdolf
I'm sort of working on a game with the same sprites... but no map editor unfortunately. It's an RPG adventure type game.
*Points at avatar & signature.*
Re: Maze: A simple map editor

Posted:
Tue Apr 28, 2009 5:34 pm
by j2graves
I can't wait till you actually make the pathfinder =D
Re: Maze: A simple map editor

Posted:
Tue Apr 28, 2009 6:24 pm
by Kalladdolf
I don't think I will soon.
Re: Maze: A simple map editor

Posted:
Wed Apr 29, 2009 8:33 pm
by j2graves
aw
still, a great map editor. =D