summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/externs.h
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-12-09 21:52:44 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-12-09 21:52:44 +1000
commitb03ae0bd75db95fd72cf484da6caec7eb47ad21c (patch)
tree7ef2787815630f4b273524ced5424be070e96236 /crawl-ref/source/externs.h
parentb186dbd518d138ee1d9c228d801ad0f3607ea76d (diff)
downloadcrawl-ref-b03ae0bd75db95fd72cf484da6caec7eb47ad21c.tar.gz
crawl-ref-b03ae0bd75db95fd72cf484da6caec7eb47ad21c.zip
Massively expand tile functionality in vault definitions.
This commit creates a new specifier for vaults: "TILE". Used much in the same way as COLOUR, it can apply any specific tile to a feature. Example syntax is specified in the syntax file, but copied here for clarity: TILE: x = wall_flesh Identical to FTILE and RTILE in syntax, but closer to COLOUR in functionality. Instead of replacing the floor or relevant rock tiles, this can be used to replace the tile used for any specific feature. This can be used in combination with FTILE and RTILE to change the appearance of features. It can only be used with previously specified tiles, however. Like COLOUR and FTILE, this should be used sparingly and to good effect. Please, feel free to update vaults to use this! We want to ensure that tiles players get the same experience as ASCII players do. This is only the first stage in a push for greater flexibiltiy through tiles, but hopefully it'll have a good impact.
Diffstat (limited to 'crawl-ref/source/externs.h')
-rw-r--r--crawl-ref/source/externs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/externs.h b/crawl-ref/source/externs.h
index 629fee3735..80386f0658 100644
--- a/crawl-ref/source/externs.h
+++ b/crawl-ref/source/externs.h
@@ -34,6 +34,9 @@ struct tile_flavour
unsigned short wall;
// Used as a random value or for special cases e.g. (bazaars, gates).
unsigned short special;
+ // Used by the vault 'TILE' overlay. Called ftile as it was originally
+ // to be for features and 'tile' is obtuse.
+ unsigned short ftile;
};
// A glorified unsigned int that assists with ref-counting the mcache.