OpenTTD
tile_type.h
Go to the documentation of this file.
1 /* $Id: tile_type.h 27010 2014-10-13 14:30:59Z rubidium $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * 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.
6  * 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.
7  * 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/>.
8  */
9 
12 #ifndef TILE_TYPE_H
13 #define TILE_TYPE_H
14 
15 static const uint TILE_SIZE = 16;
16 static const uint TILE_UNIT_MASK = TILE_SIZE - 1;
17 static const uint TILE_PIXELS = 32;
18 static const uint TILE_HEIGHT = 8;
19 
20 static const uint MAX_TILE_HEIGHT = 255;
21 
22 static const uint MIN_MAX_HEIGHTLEVEL = 15;
23 static const uint DEF_MAX_HEIGHTLEVEL = 30;
24 static const uint MAX_MAX_HEIGHTLEVEL = MAX_TILE_HEIGHT;
25 
26 static const uint MIN_SNOWLINE_HEIGHT = 2;
27 static const uint DEF_SNOWLINE_HEIGHT = 15;
28 static const uint MAX_SNOWLINE_HEIGHT = (MAX_TILE_HEIGHT - 2);
29 
30 
38 enum TileType {
50 };
51 
67 enum TropicZone {
71 };
72 
76 typedef uint32 TileIndex;
77 
81 static const TileIndex INVALID_TILE = (TileIndex)-1;
82 
83 #endif /* TILE_TYPE_H */