2007-03-20 13:47:00 +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 landscape.h Functions related to OTTD's landscape. */
|
2007-03-20 13:47:00 +00:00
|
|
|
|
2007-04-12 13:07:15 +00:00
|
|
|
#ifndef LANDSCAPE_H
|
|
|
|
#define LANDSCAPE_H
|
|
|
|
|
2007-12-22 23:30:28 +00:00
|
|
|
#include "core/geometry_type.hpp"
|
2007-12-25 23:42:52 +00:00
|
|
|
#include "tile_cmd.h"
|
|
|
|
#include "slope_type.h"
|
|
|
|
#include "direction_type.h"
|
2007-12-21 22:50:51 +00:00
|
|
|
|
2007-03-20 13:47:00 +00:00
|
|
|
enum {
|
2008-10-19 15:39:12 +00:00
|
|
|
SNOW_LINE_MONTHS = 12, ///< Number of months in the snow line table.
|
|
|
|
SNOW_LINE_DAYS = 32, ///< Number of days in each month in the snow line table.
|
2007-03-20 13:47:00 +00:00
|
|
|
};
|
|
|
|
|
2008-10-19 15:39:12 +00:00
|
|
|
/** Structure describing the height of the snow line each day of the year
|
|
|
|
* @ingroup SnowLineGroup */
|
2007-03-20 13:47:00 +00:00
|
|
|
struct SnowLine {
|
2008-10-19 15:39:12 +00:00
|
|
|
byte table[SNOW_LINE_MONTHS][SNOW_LINE_DAYS]; ///< Height of the snow line each day of the year
|
|
|
|
byte highest_value; ///< Highest snow line of the year
|
2009-02-23 20:03:38 +00:00
|
|
|
byte lowest_value; ///< Lowest snow line of the year
|
2007-03-20 13:47:00 +00:00
|
|
|
};
|
|
|
|
|
2009-05-21 22:43:25 +00:00
|
|
|
bool IsSnowLineSet();
|
2007-03-20 13:47:00 +00:00
|
|
|
void SetSnowLine(byte table[SNOW_LINE_MONTHS][SNOW_LINE_DAYS]);
|
2009-05-21 22:43:25 +00:00
|
|
|
byte GetSnowLine();
|
|
|
|
byte HighestSnowLine();
|
|
|
|
byte LowestSnowLine();
|
|
|
|
void ClearSnowLine();
|
2007-04-12 13:07:15 +00:00
|
|
|
|
|
|
|
uint GetPartialZ(int x, int y, Slope corners);
|
|
|
|
uint GetSlopeZ(int x, int y);
|
2007-10-14 20:16:44 +00:00
|
|
|
void GetSlopeZOnEdge(Slope tileh, DiagDirection edge, int *z1, int *z2);
|
2007-10-20 21:04:14 +00:00
|
|
|
int GetSlopeZInCorner(Slope tileh, Corner corner);
|
2009-01-10 00:31:47 +00:00
|
|
|
Slope GetFoundationSlope(TileIndex tile, uint *z);
|
2007-04-12 13:07:15 +00:00
|
|
|
|
|
|
|
static inline Point RemapCoords(int x, int y, int z)
|
|
|
|
{
|
|
|
|
Point pt;
|
|
|
|
pt.x = (y - x) * 2;
|
|
|
|
pt.y = y + x - z;
|
|
|
|
return pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Point RemapCoords2(int x, int y)
|
|
|
|
{
|
|
|
|
return RemapCoords(x, y, GetSlopeZ(x, y));
|
|
|
|
}
|
|
|
|
|
2007-07-26 16:51:10 +00:00
|
|
|
uint ApplyFoundationToSlope(Foundation f, Slope *s);
|
|
|
|
void DrawFoundation(TileInfo *ti, Foundation f);
|
2007-04-12 13:07:15 +00:00
|
|
|
|
|
|
|
void DoClearSquare(TileIndex tile);
|
|
|
|
void RunTileLoop();
|
|
|
|
|
|
|
|
void InitializeLandscape();
|
|
|
|
void GenerateLandscape(byte mode);
|
|
|
|
|
|
|
|
#endif /* LANDSCAPE_H */
|