Maze: A simple map editor

Post here your demos and examples with the source files.
Forum rules
Always post the games with a screenshot.
The file must have the ged and data files (complete game source)
Use the forum attachment to post the files.
It is always better to use the first post to put the game files

Maze: A simple map editor

Postby Kalladdolf » Tue Apr 07, 2009 11:02 am

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...
Maze_map_Editor.zip
Try it.
(306.43 KiB) Downloaded 375 times

screenshawt2.png
Tech style!


Sprites created with MS Paint.
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Maze: A simple map editor

Postby Fuzzy » Tue Apr 07, 2009 2:14 pm

I really like the graphics!
Mortal Enemy of IF....THEN(and Inspector Gadget)

Still ThreeFingerPete to tekdino
User avatar
Fuzzy
 
Posts: 1068
Joined: Thu Mar 03, 2005 9:32 am
Location: Plymostic Programmer
Score: 95 Give a positive score

Re: Maze: A simple map editor

Postby Kalladdolf » Tue Apr 07, 2009 2:50 pm

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.
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Maze: A simple map editor

Postby skydereign » Tue Apr 07, 2009 11:52 pm

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.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score

Re: Maze: A simple map editor

Postby j2graves » Wed Apr 08, 2009 4:57 pm

this is truely amazing!!!
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: Maze: A simple map editor

Postby jimmynewguy » Thu Apr 09, 2009 12:24 am

pretty awsome, if would be cool if you made a full game with a map editor in it :)
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Maze: A simple map editor

Postby Kalladdolf » Sat Apr 18, 2009 12:33 pm

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.*
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Maze: A simple map editor

Postby j2graves » Tue Apr 28, 2009 5:34 pm

I can't wait till you actually make the pathfinder =D
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score

Re: Maze: A simple map editor

Postby Kalladdolf » Tue Apr 28, 2009 6:24 pm

I don't think I will soon.
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Maze: A simple map editor

Postby j2graves » Wed Apr 29, 2009 8:33 pm

aw

still, a great map editor. =D
No games to my name...
User avatar
j2graves
 
Posts: 1302
Joined: Thu Aug 16, 2007 6:42 pm
Location: on the other side of infinity
Score: 19 Give a positive score


Return to Game Demos

Who is online

Users browsing this forum: No registered users and 1 guest