tron@2186: /* $Id$ */ tron@2186: rubidium@10429: /** @file track_land.h Sprites to use and how to display them for train depot/waypoint tiles. */ rubidium@10429: frosch@9066: #define TILE_SEQ_LINE(img, dx, dy, sx, sy) { dx, dy, 0, sx, sy, 23, {img, PAL_NONE} }, frosch@9066: #define TILE_SEQ_END() { (byte)0x80, 0, 0, 0, 0, 0, {0, 0} } truelight@1542: truelight@0: tron@4225: static const DrawTileSeqStruct _depot_gfx_NE[] = { peter1138@5920: TILE_SEQ_LINE(SPR_RAIL_DEPOT_NE | (1 << PALETTE_MODIFIER_COLOR), 2, 13, 13, 1) truelight@0: TILE_SEQ_END() truelight@0: }; truelight@0: tron@4225: static const DrawTileSeqStruct _depot_gfx_SE[] = { peter1138@5920: TILE_SEQ_LINE(SPR_RAIL_DEPOT_SE_1 | (1 << PALETTE_MODIFIER_COLOR), 2, 2, 1, 13) peter1138@5920: TILE_SEQ_LINE(SPR_RAIL_DEPOT_SE_2 | (1 << PALETTE_MODIFIER_COLOR), 13, 2, 1, 13) truelight@0: TILE_SEQ_END() truelight@0: }; truelight@0: tron@4225: static const DrawTileSeqStruct _depot_gfx_SW[] = { peter1138@5920: TILE_SEQ_LINE(SPR_RAIL_DEPOT_SW_1 | (1 << PALETTE_MODIFIER_COLOR), 2, 2, 13, 1) peter1138@5920: TILE_SEQ_LINE(SPR_RAIL_DEPOT_SW_2 | (1 << PALETTE_MODIFIER_COLOR), 2, 13, 13, 1) truelight@0: TILE_SEQ_END() truelight@0: }; truelight@0: tron@4225: static const DrawTileSeqStruct _depot_gfx_NW[] = { peter1138@5920: TILE_SEQ_LINE(SPR_RAIL_DEPOT_NW | (1 << PALETTE_MODIFIER_COLOR), 13, 2, 1, 13) truelight@0: TILE_SEQ_END() truelight@0: }; truelight@0: belugas@4229: static const DrawTileSprites _depot_gfx_table[] = { frosch@9067: { {SPR_FLAT_GRASS_TILE, PAL_NONE}, _depot_gfx_NE }, frosch@9067: { {SPR_RAIL_TRACK_Y, PAL_NONE}, _depot_gfx_SE }, frosch@9067: { {SPR_RAIL_TRACK_X, PAL_NONE}, _depot_gfx_SW }, frosch@9067: { {SPR_FLAT_GRASS_TILE, PAL_NONE}, _depot_gfx_NW } tron@4225: }; tron@4225: smatz@9302: static const DrawTileSprites _depot_invisible_gfx_table[] = { smatz@9302: { {SPR_RAIL_TRACK_X, PAL_NONE}, _depot_gfx_NE }, smatz@9302: { {SPR_RAIL_TRACK_Y, PAL_NONE}, _depot_gfx_SE }, smatz@9302: { {SPR_RAIL_TRACK_X, PAL_NONE}, _depot_gfx_SW }, smatz@9302: { {SPR_RAIL_TRACK_Y, PAL_NONE}, _depot_gfx_NW } smatz@9302: }; tron@4225: tron@4225: static const DrawTileSeqStruct _waypoint_gfx_X[] = { peter1138@5920: TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_X_1, 0, 0, 16, 5) peter1138@5920: TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_X_2, 0, 11, 16, 5) truelight@0: TILE_SEQ_END() truelight@0: }; truelight@0: tron@4225: static const DrawTileSeqStruct _waypoint_gfx_Y[] = { peter1138@5920: TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_Y_1, 0, 0, 5, 16) peter1138@5920: TILE_SEQ_LINE((1 << PALETTE_MODIFIER_COLOR) | SPR_WAYPOINT_Y_2, 11, 0, 5, 16) truelight@0: TILE_SEQ_END() truelight@0: }; truelight@0: belugas@4229: static const DrawTileSprites _waypoint_gfx_table[] = { frosch@9067: { {SPR_RAIL_TRACK_X, PAL_NONE}, _waypoint_gfx_X }, frosch@9067: { {SPR_RAIL_TRACK_Y, PAL_NONE}, _waypoint_gfx_Y } celestar@3528: }; belugas@9063: belugas@9063: #undef TILE_SEQ_LINE belugas@9063: #undef TILE_SEQ_END belugas@9063: