OpenTTD Source 20241224-master-gf74b0cf984
object_type.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
7
10#ifndef OBJECT_TYPE_H
11#define OBJECT_TYPE_H
12
14typedef uint16_t ObjectType;
15
17static const ObjectType OBJECT_LIGHTHOUSE = 1;
18static const ObjectType OBJECT_STATUE = 2;
19static const ObjectType OBJECT_OWNED_LAND = 3;
20static const ObjectType OBJECT_HQ = 4;
21
22static const ObjectType NEW_OBJECT_OFFSET = 5;
23static const ObjectType NUM_OBJECTS = 64000;
25static const ObjectType INVALID_OBJECT_TYPE = 0xFFFF;
26
28typedef uint32_t ObjectID;
29
30struct Object;
31struct ObjectSpec;
32
33static const ObjectID INVALID_OBJECT = 0xFFFFFFFF;
34
35#endif /* OBJECT_TYPE_H */
static const ObjectType OBJECT_LIGHTHOUSE
The nice lighthouse.
Definition object_type.h:17
uint16_t ObjectType
Types of objects.
Definition object_type.h:14
uint32_t ObjectID
Unique identifier for an object.
Definition object_type.h:28
static const ObjectType OBJECT_STATUE
Statue in towns.
Definition object_type.h:18
static const ObjectType INVALID_OBJECT_TYPE
An invalid object.
Definition object_type.h:25
static const ObjectType OBJECT_HQ
HeadQuarter of a player.
Definition object_type.h:20
static const ObjectType NUM_OBJECTS
Number of supported objects overall.
Definition object_type.h:23
static const ObjectType OBJECT_TRANSMITTER
The large antenna.
Definition object_type.h:16
static const ObjectID INVALID_OBJECT
An invalid object.
Definition object_type.h:33
static const ObjectType NUM_OBJECTS_PER_GRF
Number of supported objects per NewGRF.
Definition object_type.h:24
static const ObjectType NEW_OBJECT_OFFSET
Offset for new objects.
Definition object_type.h:22
static const ObjectType OBJECT_OWNED_LAND
Owned land 'flag'.
Definition object_type.h:19
Allow incrementing of ObjectClassID variables.
An object, such as transmitter, on the map.
Definition object_base.h:23