OpenTTD Source  20240919-master-gdf0233f4c2
goal_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 GOAL_TYPE_H
11 #define GOAL_TYPE_H
12 
13 #include "core/enum_type.hpp"
14 
15 static const uint32_t GOAL_QUESTION_BUTTON_COUNT = 18;
16 
17 enum GoalQuestionType : uint8_t {
18  GQT_QUESTION = 0,
19  GQT_INFORMATION = 1,
20  GQT_WARNING = 2,
21  GQT_ERROR = 3,
22  GQT_END = 4,
23 };
24 
26 enum GoalType : uint8_t {
33 };
34 
35 typedef uint32_t GoalTypeID;
36 
37 typedef uint16_t GoalID;
38 struct Goal;
39 static const GoalID INVALID_GOAL = 0xFFFF;
40 
41 #endif /* GOAL_TYPE_H */
Goal
Struct about goals, current and completed.
Definition: goal_base.h:21
GT_TILE
@ GT_TILE
Destination is a tile.
Definition: goal_type.h:28
GT_STORY_PAGE
@ GT_STORY_PAGE
Destination is a story page.
Definition: goal_type.h:32
GT_COMPANY
@ GT_COMPANY
Destination is a company.
Definition: goal_type.h:31
GT_INDUSTRY
@ GT_INDUSTRY
Destination is an industry.
Definition: goal_type.h:29
GoalTypeID
uint32_t GoalTypeID
Contains either tile, industry ID, town ID, company ID, or story page ID.
Definition: goal_type.h:35
GoalID
uint16_t GoalID
ID of a goal.
Definition: goal_type.h:37
GT_NONE
@ GT_NONE
Destination is not linked.
Definition: goal_type.h:27
INVALID_GOAL
static const GoalID INVALID_GOAL
Constant representing a non-existing goal.
Definition: goal_type.h:39
GT_TOWN
@ GT_TOWN
Destination is a town.
Definition: goal_type.h:30
GOAL_QUESTION_BUTTON_COUNT
static const uint32_t GOAL_QUESTION_BUTTON_COUNT
Amount of buttons available.
Definition: goal_type.h:15
enum_type.hpp
GoalType
GoalType
Types of goal destinations.
Definition: goal_type.h:26