2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2005-01-29 14:56:25 +00:00
|
|
|
#include "stdafx.h"
|
2005-01-29 13:33:48 +00:00
|
|
|
#include "tile.h"
|
|
|
|
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope GetTileSlope(TileIndex tile, uint *h)
|
2005-02-07 10:41:45 +00:00
|
|
|
{
|
|
|
|
uint a;
|
|
|
|
uint b;
|
|
|
|
uint c;
|
|
|
|
uint d;
|
2006-06-25 17:39:19 +00:00
|
|
|
uint min;
|
|
|
|
uint r;
|
2005-02-07 10:41:45 +00:00
|
|
|
|
|
|
|
assert(tile < MapSize());
|
|
|
|
|
|
|
|
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY()) {
|
|
|
|
if (h != NULL) *h = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-06-25 17:39:19 +00:00
|
|
|
min = a = TileHeight(tile);
|
2005-06-25 16:44:57 +00:00
|
|
|
b = TileHeight(tile + TileDiffXY(1, 0));
|
2006-06-25 17:39:19 +00:00
|
|
|
if (min >= b) min = b;
|
2005-06-25 16:44:57 +00:00
|
|
|
c = TileHeight(tile + TileDiffXY(0, 1));
|
2006-06-25 17:39:19 +00:00
|
|
|
if (min >= c) min = c;
|
2005-06-25 16:44:57 +00:00
|
|
|
d = TileHeight(tile + TileDiffXY(1, 1));
|
2006-06-25 17:39:19 +00:00
|
|
|
if (min >= d) min = d;
|
|
|
|
|
|
|
|
r = SLOPE_FLAT;
|
|
|
|
if ((a -= min) != 0) r += (--a << 4) + SLOPE_N;
|
|
|
|
if ((c -= min) != 0) r += (--c << 4) + SLOPE_E;
|
|
|
|
if ((d -= min) != 0) r += (--d << 4) + SLOPE_S;
|
|
|
|
if ((b -= min) != 0) r += (--b << 4) + SLOPE_W;
|
2005-02-07 10:41:45 +00:00
|
|
|
|
2006-06-25 17:39:19 +00:00
|
|
|
if (h != NULL) *h = min * TILE_HEIGHT;
|
|
|
|
|
|
|
|
return r;
|
2005-02-07 10:41:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint GetTileZ(TileIndex tile)
|
|
|
|
{
|
|
|
|
uint h;
|
|
|
|
GetTileSlope(tile, &h);
|
|
|
|
return h;
|
|
|
|
}
|
2006-05-07 07:55:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
uint GetTileMaxZ(TileIndex t)
|
|
|
|
{
|
|
|
|
uint max;
|
|
|
|
uint h;
|
|
|
|
|
|
|
|
h = TileHeight(t);
|
|
|
|
max = h;
|
|
|
|
h = TileHeight(t + TileDiffXY(1, 0));
|
|
|
|
if (h > max) max = h;
|
|
|
|
h = TileHeight(t + TileDiffXY(0, 1));
|
|
|
|
if (h > max) max = h;
|
|
|
|
h = TileHeight(t + TileDiffXY(1, 1));
|
|
|
|
if (h > max) max = h;
|
|
|
|
return max * 8;
|
|
|
|
}
|