OpenTTD Source 20250312-master-gcdcc6b491d
engine_base.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 ENGINE_BASE_H
11#define ENGINE_BASE_H
12
13#include "engine_type.h"
14#include "vehicle_type.h"
15#include "core/enum_type.hpp"
16#include "core/pool_type.hpp"
17#include "newgrf_commons.h"
19
21 std::vector<EngineID> engines;
22 CargoType cargo;
23 const SpriteGroup *group;
24};
25
27enum class EngineDisplayFlag : uint8_t {
29 IsFolded,
30 Shaded,
31};
32
34
36extern EnginePool _engine_pool;
37
38struct Engine : EnginePool::PoolItem<&_engine_pool> {
42
43 std::string name{};
44
46 int32_t age = 0;
47
48 uint16_t reliability = 0;
49 uint16_t reliability_spd_dec = 0;
50 uint16_t reliability_start = 0;
51 uint16_t reliability_max = 0;
52 uint16_t reliability_final = 0;
53 uint16_t duration_phase_1 = 0;
54 uint16_t duration_phase_2 = 0;
55 uint16_t duration_phase_3 = 0;
57
58 CompanyID preview_company = CompanyID::Invalid();
59 uint8_t preview_wait = 0;
62
64 EngineID display_last_variant = EngineID::Invalid();
65 EngineInfo info{};
66
67 union {
68 RailVehicleInfo rail;
69 RoadVehicleInfo road;
70 ShipVehicleInfo ship;
72 } u{};
73
74 uint16_t list_position = 0;
75
76 /* NewGRF related data */
84 std::vector<WagonOverride> overrides{};
85 std::vector<BadgeID> badges{};
86
87 Engine() {}
88 Engine(VehicleType type, uint16_t local_id);
89 bool IsEnabled() const;
90
103 {
104 return this->info.cargo_type;
105 }
106
107 uint DetermineCapacity(const Vehicle *v, uint16_t *mail_capacity = nullptr) const;
108
109 bool CanCarryCargo() const;
110
122 uint GetDisplayDefaultCapacity(uint16_t *mail_capacity = nullptr) const
123 {
124 return this->DetermineCapacity(nullptr, mail_capacity);
125 }
126
127 Money GetRunningCost() const;
128 Money GetCost() const;
129 uint GetDisplayMaxSpeed() const;
130 uint GetPower() const;
131 uint GetDisplayWeight() const;
132 uint GetDisplayMaxTractiveEffort() const;
133 TimerGameCalendar::Date GetLifeLengthInDays() const;
134 uint16_t GetRange() const;
136
142 inline bool IsHidden(CompanyID c) const
143 {
144 return c < MAX_COMPANIES && this->company_hidden.Test(c);
145 }
146
152 {
153 if (this->display_last_variant == this->index || this->display_last_variant == EngineID::Invalid()) return this;
154 return Engine::Get(this->display_last_variant);
155 }
156
157 bool IsVariantHidden(CompanyID c) const;
158
163 inline bool IsGroundVehicle() const
164 {
165 return this->type == VEH_TRAIN || this->type == VEH_ROAD;
166 }
167
173 const GRFFile *GetGRF() const
174 {
175 return this->grf_prop.grffile;
176 }
177
178 uint32_t GetGRFID() const;
179
181 VehicleType vt;
182
183 bool operator() (size_t index) { return Engine::Get(index)->type == this->vt; }
184 };
185
196};
197
199 uint32_t grfid = 0;
200 uint16_t internal_id = 0;
202 uint8_t substitute_id = 0;
203 EngineID engine{};
204
205 static inline uint64_t Key(uint32_t grfid, uint16_t internal_id) { return static_cast<uint64_t>(grfid) << 32 | internal_id; }
206
207 inline uint64_t Key() const { return Key(this->grfid, this->internal_id); }
208
209 EngineIDMapping() {}
210 EngineIDMapping(uint32_t grfid, uint16_t internal_id, VehicleType type, uint8_t substitute_id, EngineID engine)
212};
213
216 inline uint64_t operator()(const EngineIDMapping &eid) const { return eid.Key(); }
217};
218
224 std::array<std::vector<EngineIDMapping>, VEH_COMPANY_END> mappings;
225
227 EngineID GetID(VehicleType type, uint16_t grf_local_id, uint32_t grfid);
228 EngineID UseUnreservedID(VehicleType type, uint16_t grf_local_id, uint32_t grfid, bool static_access);
229 void SetID(VehicleType type, uint16_t grf_local_id, uint32_t grfid, uint8_t substitute_id, EngineID engine);
230
231 static bool ResetToCurrentNewGRFConfig();
232};
233
234extern EngineOverrideManager _engine_mngr;
235
236inline const EngineInfo *EngInfo(EngineID e)
237{
238 return &Engine::Get(e)->info;
239}
240
241inline const RailVehicleInfo *RailVehInfo(EngineID e)
242{
243 return &Engine::Get(e)->u.rail;
244}
245
246inline const RoadVehicleInfo *RoadVehInfo(EngineID e)
247{
248 return &Engine::Get(e)->u.road;
249}
250
251inline const ShipVehicleInfo *ShipVehInfo(EngineID e)
252{
253 return &Engine::Get(e)->u.ship;
254}
255
256inline const AircraftVehicleInfo *AircraftVehInfo(EngineID e)
257{
258 return &Engine::Get(e)->u.air;
259}
260
261#endif /* ENGINE_BASE_H */
uint8_t CargoType
Cargo slots to indicate a cargo type within a game.
Definition cargo_type.h:23
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
EngineDisplayFlag
Flags used client-side in the purchase/autorenew engine list.
Definition engine_base.h:27
@ HasVariants
Set if engine has variants.
@ IsFolded
Set if display of variants should be folded (hidden).
@ Shaded
Set if engine should be masked.
Types related to engines.
Type (helpers) for enums.
This file simplyfies and embeds a common mechanism of loading/saving and mapping of grf entities.
Definition of Pool, structure used to access PoolItems, and PoolItem, base structure for Vehicle,...
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Information about a aircraft vehicle.
Projection to get a unique key of an EngineIDMapping, used for sorting in EngineOverrideManager.
VehicleType type
The engine type.
uint32_t grfid
The GRF ID of the file the entity belongs to.
uint8_t substitute_id
The (original) entity ID to use if this GRF is not available (currently not used)
uint16_t internal_id
The internal ID within the GRF file.
Information about a vehicle.
Stores the mapping of EngineID to the internal id of newgrfs.
static bool ResetToCurrentNewGRFConfig()
Tries to reset the engine mapping to match the current NewGRF configuration.
Definition engine.cpp:585
void ResetToDefaultMapping()
Initializes the EngineOverrideManager with the default engines.
Definition engine.cpp:509
EngineID UseUnreservedID(VehicleType type, uint16_t grf_local_id, uint32_t grfid, bool static_access)
Look for an unreserved EngineID matching the local id, and reserve it if found.
Definition engine.cpp:549
EngineID GetID(VehicleType type, uint16_t grf_local_id, uint32_t grfid)
Looks up an EngineID in the EngineOverrideManager.
Definition engine.cpp:530
StringID GetAircraftTypeText() const
Get the name of the aircraft type for display purposes.
Definition engine.cpp:467
uint GetPower() const
Returns the power of the engine for display and sorting purposes.
Definition engine.cpp:390
const Engine * GetDisplayVariant() const
Get the last display variant for an engine.
uint16_t GetRange() const
Get the range of an aircraft type.
Definition engine.cpp:453
uint32_t GetGRFID() const
Retrieve the GRF ID of the NewGRF the engine is tied to.
Definition engine.cpp:157
uint16_t reliability_spd_dec
Speed of reliability decay between services (per day).
Definition engine_base.h:49
Money GetCost() const
Return how much a new engine costs.
Definition engine.cpp:318
uint16_t reliability_start
Initial reliability of the engine.
Definition engine_base.h:50
TimerGameCalendar::Date intro_date
Date of introduction of the engine.
Definition engine_base.h:45
const GRFFile * GetGRF() const
Retrieve the NewGRF the engine is tied to.
static Pool::IterateWrapperFiltered< Engine, EngineTypeFilter > IterateType(VehicleType vt, size_t from=0)
Returns an iterable ensemble of all valid engines of the given type.
uint GetDisplayMaxSpeed() const
Returns max speed of the engine for display purposes.
Definition engine.cpp:358
uint DetermineCapacity(const Vehicle *v, uint16_t *mail_capacity=nullptr) const
Determines capacity of a given vehicle from scratch.
Definition engine.cpp:201
EngineDisplayFlags display_flags
NOSAVE client-side-only display flags for build engine list.
Definition engine_base.h:63
EngineFlags flags
Flags of the engine.
Definition engine_base.h:56
CompanyMask company_avail
Bit for each company whether the engine is available for that company.
Definition engine_base.h:39
uint16_t reliability_max
Maximal reliability of the engine.
Definition engine_base.h:51
uint GetDisplayWeight() const
Returns the weight of the engine for display purposes.
Definition engine.cpp:408
uint8_t original_image_index
Original vehicle image index, thus the image index of the overridden vehicle.
Definition engine_base.h:60
bool IsEnabled() const
Checks whether the engine is a valid (non-articulated part of an) engine.
Definition engine.cpp:147
VehicleType type
Vehicle type, ie VEH_ROAD, VEH_TRAIN, etc.
Definition engine_base.h:61
VariableGRFFileProps grf_prop
Properties related the the grf file.
Definition engine_base.h:83
bool IsVariantHidden(CompanyID c) const
Check whether the engine variant chain is hidden in the GUI for the given company.
Definition engine.cpp:487
uint16_t reliability_final
Final reliability of the engine.
Definition engine_base.h:52
CompanyID preview_company
Company which is currently being offered a preview CompanyID::Invalid() means no company.
Definition engine_base.h:58
TimerGameCalendar::Date GetLifeLengthInDays() const
Returns the vehicle's (not model's!) life length in days.
Definition engine.cpp:443
uint GetDisplayDefaultCapacity(uint16_t *mail_capacity=nullptr) const
Determines the default cargo capacity of an engine for display purposes.
uint16_t duration_phase_3
Third reliability phase in months, decaying to reliability_final.
Definition engine_base.h:55
uint16_t duration_phase_2
Second reliability phase in months, keeping reliability_max.
Definition engine_base.h:54
uint8_t preview_wait
Daily countdown timer for timeout of offering the engine to the preview_company company.
Definition engine_base.h:59
CargoType GetDefaultCargoType() const
Determines the default cargo type of an engine.
CompanyMask company_hidden
Bit for each company whether the engine is normally hidden in the build gui for that company.
Definition engine_base.h:40
Money GetRunningCost() const
Return how much the running costs of this engine are.
Definition engine.cpp:281
uint16_t reliability
Current reliability of the engine.
Definition engine_base.h:48
CompanyMask preview_asked
Bit for each company which has already been offered a preview.
Definition engine_base.h:41
uint GetDisplayMaxTractiveEffort() const
Returns the tractive effort of the engine for display purposes.
Definition engine.cpp:426
int32_t age
Age of the engine in months.
Definition engine_base.h:46
bool IsHidden(CompanyID c) const
Check whether the engine is hidden in the GUI for the given company.
bool CanCarryCargo() const
Determines whether an engine can carry something.
Definition engine.cpp:168
std::string name
Custom name of engine.
Definition engine_base.h:43
EngineID display_last_variant
NOSAVE client-side-only last variant selected.
Definition engine_base.h:64
uint16_t duration_phase_1
First reliability phase in months, increasing reliability from reliability_start to reliability_max.
Definition engine_base.h:53
bool IsGroundVehicle() const
Check if the engine is a ground vehicle.
const struct GRFFile * grffile
grf file that introduced this entity
Dynamic data of a loaded NewGRF.
Definition newgrf.h:111
Base class for all PoolItems.
static Titem * Get(auto index)
Returns Titem with given index.
Tindex index
Index of this pool item.
Base class for all pools.
Information about a rail vehicle.
Definition engine_type.h:46
Information about a road vehicle.
Information about a ship vehicle.
Definition engine_type.h:71
Templated helper to make a type-safe 'typedef' representing a single POD value.
Variable-length list of sprite groups for an entity.
Vehicle data structure.
Definition of the game-calendar-timer.
Types related to vehicles.
VehicleType
Available vehicle types.
@ VEH_INVALID
Non-existing type of vehicle.
@ VEH_ROAD
Road vehicle type.
@ VEH_TRAIN
Train vehicle type.
@ VEH_COMPANY_END
Last company-ownable type.