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/>.
8 /** @file story_base.h %StoryPage base class. */
13 #include "company_type.h"
14 #include "story_type.h"
15 #include "date_type.h"
17 #include "vehicle_type.h"
18 #include "core/pool_type.hpp"
20 typedef Pool
<StoryPageElement
, StoryPageElementID
, 64, 64000> StoryPageElementPool
;
21 typedef Pool
<StoryPage
, StoryPageID
, 64, 64000> StoryPagePool
;
22 extern StoryPageElementPool _story_page_element_pool
;
23 extern StoryPagePool _story_page_pool
;
24 extern uint32 _story_page_element_next_sort_value
;
25 extern uint32 _story_page_next_sort_value
;
28 * Each story page element is one of these types.
30 enum StoryPageElementType
: byte
{
31 SPET_TEXT
= 0, ///< A text element.
32 SPET_LOCATION
, ///< An element that references a tile along with a one-line text.
33 SPET_GOAL
, ///< An element that references a goal.
34 SPET_BUTTON_PUSH
, ///< A push button that triggers an immediate event.
35 SPET_BUTTON_TILE
, ///< A button that allows the player to select a tile, and triggers an event with the tile.
36 SPET_BUTTON_VEHICLE
, ///< A button that allows the player to select a vehicle, and triggers an event wih the vehicle.
41 /** Define basic enum properties */
42 template <> struct EnumPropsT
<StoryPageElementType
> : MakeEnumPropsT
<StoryPageElementType
, byte
, SPET_TEXT
, SPET_END
, INVALID_SPET
, 8> {};
44 /** Flags available for buttons */
45 enum StoryPageButtonFlags
: byte
{
47 SPBF_FLOAT_LEFT
= 1 << 0,
48 SPBF_FLOAT_RIGHT
= 1 << 1,
50 DECLARE_ENUM_AS_BIT_SET(StoryPageButtonFlags
)
52 /** Mouse cursors usable by story page buttons. */
53 enum StoryPageButtonCursor
: byte
{
113 /** Define basic enum properties */
114 template <> struct EnumPropsT
<StoryPageButtonCursor
> : MakeEnumPropsT
<StoryPageButtonCursor
, byte
, SPBC_MOUSE
, SPBC_END
, INVALID_SPBC
, 8> {};
116 /** Helper to construct packed "id" values for button-type StoryPageElement */
117 struct StoryPageButtonData
{
118 uint32 referenced_id
;
120 void SetColour(Colours button_colour
);
121 void SetFlags(StoryPageButtonFlags flags
);
122 void SetCursor(StoryPageButtonCursor cursor
);
123 void SetVehicleType(VehicleType vehtype
);
124 Colours
GetColour() const;
125 StoryPageButtonFlags
GetFlags() const;
126 StoryPageButtonCursor
GetCursor() const;
127 VehicleType
GetVehicleType() const;
128 bool ValidateColour() const;
129 bool ValidateFlags() const;
130 bool ValidateCursor() const;
131 bool ValidateVehicleType() const;
135 * Struct about story page elements.
136 * Each StoryPage is composed of one or more page elements that provide
137 * page content. Each element only contain one type of content.
139 struct StoryPageElement
: StoryPageElementPool::PoolItem
<&_story_page_element_pool
> {
140 uint32 sort_value
; ///< A number that increases for every created story page element. Used for sorting. The id of a story page element is the pool index.
141 StoryPageID page
; ///< Id of the page which the page element belongs to
142 StoryPageElementType type
; ///< Type of page element
144 uint32 referenced_id
; ///< Id of referenced object (location, goal etc.)
145 char *text
; ///< Static content text of page element
148 * We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
150 inline StoryPageElement() { }
153 * (Empty) destructor has to be defined else operator delete might be called with nullptr parameter
155 inline ~StoryPageElement() { free(this->text
); }
158 /** Struct about stories, current and completed */
159 struct StoryPage
: StoryPagePool::PoolItem
<&_story_page_pool
> {
160 uint32 sort_value
; ///< A number that increases for every created story page. Used for sorting. The id of a story page is the pool index.
161 Date date
; ///< Date when the page was created.
162 CompanyID company
; ///< StoryPage is for a specific company; INVALID_COMPANY if it is global
164 char *title
; ///< Title of story page
167 * We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
169 inline StoryPage() { }
172 * (Empty) destructor has to be defined else operator delete might be called with nullptr parameter
176 if (!this->CleaningPool()) {
177 for (StoryPageElement
*spe
: StoryPageElement::Iterate()) {
178 if (spe
->page
== this->index
) delete spe
;
185 #endif /* STORY_BASE_H */