tiles.rc syntax: allow inheriting of another tile's images/attributes

To inherit, just put the name of tile you want to inherit from in parenthesis
at the beginning of the specification.
E.g.

road-1-1     (road) roads/1-1 (road-north)(road-south)

will define a tile named "road-1-1", which first starts with all the images
and properties of tile "road" and then layers on top of that the 'road/1-1'
image, and then sets the 'road-north' and 'road-south' flags.

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@754 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-07-20 21:29:47 +00:00
parent 103999e578
commit 22c0edc7c1
3 changed files with 16 additions and 6 deletions

View file

@ -47,7 +47,7 @@ public class MakeTiles
String rawSpec = recipe.getProperty(Integer.toString(i));
assert rawSpec != null;
TileSpec tileSpec = TileSpec.parse(i, rawSpec);
TileSpec tileSpec = TileSpec.parse(i, rawSpec, recipe);
FrameSpec ref = parseFrameSpec(tileSpec);
drawTo(ref, gr, 0, TILE_SIZE*i);
}