2005-07-24 14:12:37 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2008-05-06 15:11:33 +00:00
|
|
|
/** @file tile_map.cpp Global tile accessors. */
|
2007-04-04 03:21:14 +00:00
|
|
|
|
2005-01-29 14:56:25 +00:00
|
|
|
#include "stdafx.h"
|
2007-12-19 23:26:02 +00:00
|
|
|
#include "tile_map.h"
|
2007-12-21 19:21:21 +00:00
|
|
|
#include "core/math_func.hpp"
|
2005-01-29 13:33:48 +00:00
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/**
|
|
|
|
* Return the slope of a given tile
|
|
|
|
* @param tile Tile to compute slope of
|
|
|
|
* @param h If not \c NULL, pointer to storage of z height
|
|
|
|
* @return Slope of the tile, except for the HALFTILE part */
|
2006-04-23 13:48:16 +00:00
|
|
|
Slope GetTileSlope(TileIndex tile, uint *h)
|
2005-02-07 10:41:45 +00:00
|
|
|
{
|
|
|
|
assert(tile < MapSize());
|
|
|
|
|
2009-01-21 02:31:55 +00:00
|
|
|
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY() ||
|
|
|
|
(_settings_game.construction.freeform_edges && (TileX(tile) == 0 || TileY(tile) == 0))) {
|
|
|
|
if (h != NULL) *h = TileHeight(tile) * TILE_HEIGHT;
|
2007-01-10 18:56:51 +00:00
|
|
|
return SLOPE_FLAT;
|
2005-02-07 10:41:45 +00:00
|
|
|
}
|
|
|
|
|
2008-10-20 15:44:14 +00:00
|
|
|
uint a = TileHeight(tile); // Height of the N corner
|
|
|
|
uint min = a; // Minimal height of all corners examined so far
|
|
|
|
uint b = TileHeight(tile + TileDiffXY(1, 0)); // Height of the W corner
|
2007-07-25 15:45:46 +00:00
|
|
|
if (min > b) min = b;
|
2008-10-20 15:44:14 +00:00
|
|
|
uint c = TileHeight(tile + TileDiffXY(0, 1)); // Height of the E corner
|
2007-07-25 15:45:46 +00:00
|
|
|
if (min > c) min = c;
|
2008-10-20 15:44:14 +00:00
|
|
|
uint d = TileHeight(tile + TileDiffXY(1, 1)); // Height of the S corner
|
2007-07-25 15:45:46 +00:00
|
|
|
if (min > d) min = d;
|
2006-06-25 17:39:19 +00:00
|
|
|
|
2008-10-20 15:44:14 +00:00
|
|
|
/* Due to the fact that tiles must connect with each other without leaving gaps, the
|
|
|
|
* biggest difference in height between any corner and 'min' is between 0, 1, or 2.
|
|
|
|
*
|
|
|
|
* Also, there is at most 1 corner with height difference of 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
uint r = SLOPE_FLAT; // Computed slope of the tile
|
|
|
|
|
|
|
|
/* For each corner if not equal to minimum height:
|
|
|
|
* - set the SLOPE_STEEP flag if the difference is 2
|
|
|
|
* - add the corresponding SLOPE_X constant to the computed slope
|
|
|
|
*/
|
2006-06-25 17:39:19 +00:00
|
|
|
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;
|
|
|
|
|
2007-01-10 18:56:51 +00:00
|
|
|
return (Slope)r;
|
2005-02-07 10:41:45 +00:00
|
|
|
}
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/**
|
|
|
|
* Get bottom height of the tile
|
|
|
|
* @param tile Tile to compute height of
|
|
|
|
* @return Minimum height of the tile */
|
2005-02-07 10:41:45 +00:00
|
|
|
uint GetTileZ(TileIndex tile)
|
|
|
|
{
|
2007-07-25 15:45:46 +00:00
|
|
|
if (TileX(tile) == MapMaxX() || TileY(tile) == MapMaxY()) return 0;
|
|
|
|
|
2008-10-20 15:44:14 +00:00
|
|
|
uint h = TileHeight(tile); // N corner
|
|
|
|
h = min(h, TileHeight(tile + TileDiffXY(1, 0))); // W corner
|
|
|
|
h = min(h, TileHeight(tile + TileDiffXY(0, 1))); // E corner
|
|
|
|
h = min(h, TileHeight(tile + TileDiffXY(1, 1))); // S corner
|
2007-07-25 15:45:46 +00:00
|
|
|
|
|
|
|
return h * TILE_HEIGHT;
|
2005-02-07 10:41:45 +00:00
|
|
|
}
|
2006-05-07 07:55:05 +00:00
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/**
|
|
|
|
* Get top height of the tile
|
2009-09-19 09:51:14 +00:00
|
|
|
* @param t Tile to compute height of
|
2008-10-19 15:39:12 +00:00
|
|
|
* @return Maximum height of the tile */
|
2006-05-07 07:55:05 +00:00
|
|
|
uint GetTileMaxZ(TileIndex t)
|
|
|
|
{
|
2007-07-25 17:07:38 +00:00
|
|
|
if (TileX(t) == MapMaxX() || TileY(t) == MapMaxY()) return 0;
|
2007-07-25 15:45:46 +00:00
|
|
|
|
2008-10-20 15:44:14 +00:00
|
|
|
uint h = TileHeight(t); // N corner
|
|
|
|
h = max(h, TileHeight(t + TileDiffXY(1, 0))); // W corner
|
|
|
|
h = max(h, TileHeight(t + TileDiffXY(0, 1))); // E corner
|
|
|
|
h = max(h, TileHeight(t + TileDiffXY(1, 1))); // S corner
|
2007-07-25 15:45:46 +00:00
|
|
|
|
|
|
|
return h * TILE_HEIGHT;
|
2006-05-07 07:55:05 +00:00
|
|
|
}
|