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-03-20 16:43:48 +00:00
|
|
|
/** Converts the heights of 4 corners into a tileh, and returns the minimum height of the tile
|
|
|
|
* @param n,w,e,s the four corners
|
|
|
|
* @param h uint pointer to write the height to
|
|
|
|
* @return the tileh
|
|
|
|
*/
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope GetTileh(uint n, uint w, uint e, uint s, uint *h)
|
2006-03-20 16:43:48 +00:00
|
|
|
{
|
|
|
|
uint min = n;
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope r;
|
2006-03-20 16:43:48 +00:00
|
|
|
|
|
|
|
if (min >= w) min = w;
|
|
|
|
if (min >= e) min = e;
|
|
|
|
if (min >= s) min = s;
|
|
|
|
|
2006-04-23 13:48:16 +00:00
|
|
|
r = SLOPE_FLAT;
|
|
|
|
if ((n -= min) != 0) r += (--n << 4) + SLOPE_N;
|
|
|
|
if ((e -= min) != 0) r += (--e << 4) + SLOPE_E;
|
|
|
|
if ((s -= min) != 0) r += (--s << 4) + SLOPE_S;
|
|
|
|
if ((w -= min) != 0) r += (--w << 4) + SLOPE_W;
|
2006-03-20 16:43:48 +00:00
|
|
|
|
2006-04-03 09:07:21 +00:00
|
|
|
if (h != NULL) *h = min * TILE_HEIGHT;
|
2006-03-20 16:43:48 +00:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
2005-02-07 10:41:45 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
assert(tile < MapSize());
|
|
|
|
|
|
|
|
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY()) {
|
|
|
|
if (h != NULL) *h = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-20 16:43:48 +00:00
|
|
|
a = TileHeight(tile);
|
2005-06-25 16:44:57 +00:00
|
|
|
b = TileHeight(tile + TileDiffXY(1, 0));
|
|
|
|
c = TileHeight(tile + TileDiffXY(0, 1));
|
|
|
|
d = TileHeight(tile + TileDiffXY(1, 1));
|
2005-02-07 10:41:45 +00:00
|
|
|
|
2006-03-20 16:43:48 +00:00
|
|
|
return GetTileh(a, b, c, d, h);
|
2005-02-07 10:41:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint GetTileZ(TileIndex tile)
|
|
|
|
{
|
|
|
|
uint h;
|
|
|
|
GetTileSlope(tile, &h);
|
|
|
|
return h;
|
|
|
|
}
|