A while back I started building a system called Planetation for creating 2D tile map based games in java. I have finally started working on it again trying to get to a 1.0 release because I have several game ideas I would like to implement using the system.
I'm not really looking for any help on the project just some input. The map editor is almost finished. It uses objects called MapTerrainIcon's. These icons have a set of flags that can be turned on or off. I have a "standard" set of flags and I'm going to add a large number of "custom" flags that don't have a predefined meaning becuase I can't think of everything someone might want. Below are the current set of "standard" flags and I was wondering if poeple might have ideas for others that should be included in the standard set.
Map Editor:
http://www.scottshaver2000.com/planetation/mapeditorindex.htmlBTW it handles both isometric and square grid maps.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| public static final int FLAG_WALKABLE = 0;
public static final int FLAG_PROJECTILE_WALKABLE = 1;
public static final int FLAG_OVER_PLAYER = 2;
public static final int FLAG_MULT_OBJECTS = 3;
public static final int FLAG_MULT_CHARACTERS = 4;
public static final int FLAG_NO_OBJECTS = 5;
public static final int FLAG_TRANSPORT = 6; public static final int FLAG_HASOWNIMAGE = 7;
|