From 227420e531ae481224410978e01c834507cc61d2 Mon Sep 17 00:00:00 2001 From: Enne Walker Date: Sun, 17 Jan 2010 19:33:07 -0500 Subject: Tile transparency in water without overlays. In order for jpeg's waves to work on deep water as well as shallow, we need to not use partially transparent overlays to simulate an actor or an item being submerged. Now, non-flying objects on water will be drawn transparently to blend with the water below. This should mostly look the same, except it will now work on top of waves and will not require a mask for each water type. As a nice side-effect, ghosts are now transparent again and the water on top of submerged objects now animates properly. See the comments in tilebuf.cc for details. The mask tile itself can be adjusted to change the water level, but the parameters to SubmergedTileBuffer will need to be changed to compensate depending on what the new art looks like. --- crawl-ref/source/tiles.h | 1 + 1 file changed, 1 insertion(+) (limited to 'crawl-ref/source/tiles.h') diff --git a/crawl-ref/source/tiles.h b/crawl-ref/source/tiles.h index d50482a673..be49c3f12e 100644 --- a/crawl-ref/source/tiles.h +++ b/crawl-ref/source/tiles.h @@ -170,6 +170,7 @@ enum tile_flags TILE_FLAG_TUT_CURSOR = 0x00800000, TILE_FLAG_RAY_OOR = 0x01000000, TILE_FLAG_OOR = 0x02000000, + TILE_FLAG_WATER = 0x04000000, // General TILE_FLAG_MASK = 0x000007FF -- cgit v1.2.3-54-g00ecf