OpenTTD
tile_type.h
Go to the documentation of this file.
1 /* $Id: tile_type.h 27987 2018-03-11 13:25:26Z frosch $ */
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_BUILDING_PIXELS = 200;
21 static const int MAX_VEHICLE_PIXEL_X = 192;
22 static const int MAX_VEHICLE_PIXEL_Y = 96;
23 
24 static const uint MAX_TILE_HEIGHT = 255;
25 
26 static const uint MIN_MAX_HEIGHTLEVEL = 15;
27 static const uint DEF_MAX_HEIGHTLEVEL = 30;
28 static const uint MAX_MAX_HEIGHTLEVEL = MAX_TILE_HEIGHT;
29 
30 static const uint MIN_SNOWLINE_HEIGHT = 2;
31 static const uint DEF_SNOWLINE_HEIGHT = 15;
32 static const uint MAX_SNOWLINE_HEIGHT = (MAX_TILE_HEIGHT - 2);
33 
34 
42 enum TileType {
54 };
55 
71 enum TropicZone {
75 };
76 
80 typedef uint32 TileIndex;
81 
85 static const TileIndex INVALID_TILE = (TileIndex)-1;
86 
87 #endif /* TILE_TYPE_H */