OpenTTD Source 20260917-master-gec444f7315
newgrf.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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#ifndef NEWGRF_H
11#define NEWGRF_H
12
13#include "cargotype.h"
14#include "debug_type.h"
15#include "livery.h"
16#include "rail_type.h"
17#include "road_type.h"
18#include "fileio_type.h"
19#include "newgrf_badge_type.h"
20#include "newgrf_callbacks.h"
21#include "newgrf_text_type.h"
22#include "vehicle_type.h"
23
40
42enum class CanalFeatureFlag : uint8_t {
44};
45
47
53
64
75
78
112
115
116struct GRFLabel {
117 uint8_t label;
118 uint32_t nfo_line;
119 size_t pos;
120
121 GRFLabel(uint8_t label, uint32_t nfo_line, size_t pos) : label(label), nfo_line(nfo_line), pos(pos) {}
122};
123
125struct GRFFile {
126 std::string filename{};
127 GrfID grfid{};
128 uint8_t grf_version = 0;
129
130 uint sound_offset = 0;
131 uint16_t num_sounds = 0;
132
133 std::vector<std::unique_ptr<struct StationSpec>> stations;
134 std::vector<std::unique_ptr<struct HouseSpec>> housespec;
135 std::vector<std::unique_ptr<struct IndustrySpec>> industryspec;
136 std::vector<std::unique_ptr<struct IndustryTileSpec>> indtspec;
137 std::vector<std::unique_ptr<struct ObjectSpec>> objectspec;
138 std::vector<std::unique_ptr<struct AirportSpec>> airportspec;
139 std::vector<std::unique_ptr<struct AirportTileSpec>> airtspec;
140 std::vector<std::unique_ptr<struct RoadStopSpec>> roadstops;
141
142 std::vector<uint32_t> param{};
143
144 std::vector<GRFLabel> labels{};
145
146 std::vector<CargoLabel> cargo_list{};
147 std::array<uint8_t, NUM_CARGO> cargo_map{};
148
149 std::vector<BadgeID> badge_list{};
150 std::unordered_map<uint16_t, BadgeID> badge_map{};
151
152 std::vector<RailTypeLabel> railtype_list{};
153 std::array<RailType, RAILTYPE_END> railtype_map{};
154
155 std::vector<RoadTypeLabel> roadtype_list{};
156 std::array<RoadType, ROADTYPE_END> roadtype_map{};
157
158 std::vector<RoadTypeLabel> tramtype_list{};
159 std::array<RoadType, ROADTYPE_END> tramtype_map{};
160
162
163 std::unordered_map<GRFLanguage, LanguageMap> language_map{};
164
168
170 PriceMultipliers price_base_multipliers{};
171
172 GRFFile(const GRFConfig &config);
173 GRFFile();
174 GRFFile(GRFFile &&other);
175 ~GRFFile();
176
182 uint32_t GetParam(uint number) const
183 {
184 /* Note: We implicitly test for number < this->param.size() and return 0 for invalid parameters.
185 * In fact this is the more important test, as param is zeroed anyway. */
186 return (number < std::size(this->param)) ? this->param[number] : 0;
187 }
188};
189
197
204
212
222
228inline bool HasGrfMiscBit(GrfMiscBit bit)
229{
231 return _misc_grf_features.Test(bit);
232}
233
234/* Indicates which are the newgrf features currently loaded ingame */
236
237void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary);
238void LoadNewGRF(SpriteID load_index, uint num_baseset);
239void ReloadNewGRFData(); // in saveload/afterload.cpp
240void ResetNewGRFData();
242
243void GrfMsgI(Severity severity, const std::string &msg);
244#define GrfMsg(severity, format_string, ...) do { if ((severity) == Severity::Critical || IsVisibleSeverity(Facility::Grf, (severity))) GrfMsgI(severity, fmt::format(FMT_STRING(format_string) __VA_OPT__(,) __VA_ARGS__)); } while (false)
245
246bool GetGlobalVariable(uint8_t param, uint32_t *value, const GRFFile *grffile);
247
249void ShowNewGRFError();
250
253
259template <typename T> requires std::is_base_of_v<BaseLabel, T>
260constexpr uint32_t FlattenNewGRFLabel(T label) { return label[0] | label[1] << 8 | label[2] << 16 | label[3] << 24; }
261
267template <typename T> requires std::is_base_of_v<BaseLabel, T>
268constexpr T UnflattenNewGRFLabel(uint32_t value)
269{
270 uint8_t buf[]{
271 static_cast<uint8_t>(GB(value, 0, 8)),
272 static_cast<uint8_t>(GB(value, 8, 8)),
273 static_cast<uint8_t>(GB(value, 16, 8)),
274 static_cast<uint8_t>(GB(value, 24, 8))
275 };
276 return buf;
277}
278
279#endif /* NEWGRF_H */
static constexpr uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
Types/functions related to cargoes.
Global state for badge definitions.
Enum-as-bit-set wrapper.
Types related to debugging.
Severity
Debug message severity levels.
Definition debug_type.h:14
PriceCategory
Categories of a price bases.
Price
Enumeration of all base prices for use with Prices.
#define T
Climate temperate.
Definition engines.h:91
EnumClassIndexContainer< std::array< T, to_underlying(N)>, Index > EnumIndexArray
A typedef for EnumClassIndexContainer using std::array as the backing container type.
Types for standard in/out file operations.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
Definition fileio_type.h:88
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition gfx_type.h:17
Functions/types related to livery colours.
EnumBitSet< LiveryScheme, uint32_t, LiveryScheme::End > LiverySchemes
Bitset of LiveryScheme elements.
Definition livery.h:64
GRFLoadedFeatures _loaded_newgrf_features
Indicates which are the newgrf features currently loaded ingame.
Definition newgrf.cpp:76
GrfMiscBits _misc_grf_features
Miscellaneous GRF features, set by Action 0x0D, parameter 0x9E.
Definition newgrf.cpp:73
bool GetGlobalVariable(uint8_t param, uint32_t *value, const GRFFile *grffile)
Reads a variable common to VarAction2 and Action7/9/D.
constexpr uint32_t FlattenNewGRFLabel(T label)
Flatten a NewGRF related label to a 32 bits integer.
Definition newgrf.h:260
EnumBitSet< CanalFeatureFlag, uint8_t > CanalFeatureFlags
CanalFeatureFlag bitmask.
Definition newgrf.h:46
GrfLoadingStage
Stages of loading all NewGRFs.
Definition newgrf.h:55
@ SafetyScan
Checks whether the NewGRF can be used in a static context.
Definition newgrf.h:57
@ Reserve
Third step of NewGRF loading; reserve features and GRMs.
Definition newgrf.h:60
@ Init
Second step of NewGRF loading; load all actions into memory.
Definition newgrf.h:59
@ LabelScan
First step of NewGRF loading; find the 'goto' labels in the NewGRF.
Definition newgrf.h:58
@ Activation
Forth step of NewGRF loading; activate the features.
Definition newgrf.h:61
@ FileScan
Load the Action 8 metadata (GRF ID, name).
Definition newgrf.h:56
void ResetPersistentNewGRFData()
Reset NewGRF data which is stored persistently in savegames.
Definition newgrf.cpp:511
constexpr T UnflattenNewGRFLabel(uint32_t value)
Unflatten a NewGRF related label from a 32 bits integer.
Definition newgrf.h:268
ShoreReplacement
Type of shore replacement loaded by NewGRFs.
Definition newgrf.h:191
@ None
No shore sprites were replaced.
Definition newgrf.h:192
@ Action5
Shore sprites were replaced by Action5.
Definition newgrf.h:193
@ ActionA
Shore sprites were replaced by ActionA (using grass tiles for the corner-shores).
Definition newgrf.h:194
@ OnlyNew
Only corner-shores were loaded by Action5 (openttd(w/d).grf only).
Definition newgrf.h:195
bool HasGrfMiscBit(GrfMiscBit bit)
Check for grf miscellaneous bits.
Definition newgrf.h:228
CanalFeature
List of different canal 'features'.
Definition newgrf.h:28
@ RiverEdge
The river banks.
Definition newgrf.h:35
@ Locks
The sides of the lock.
Definition newgrf.h:30
@ Icon
Unused: the TTDP UI icon for canals.
Definition newgrf.h:32
@ End
End marker.
Definition newgrf.h:38
@ Buoy
Buoy without underlying water.
Definition newgrf.h:37
@ LockWaterSlope
The sloped water tiles in locks.
Definition newgrf.h:29
@ RiverSlope
The sloped water tiles for rivers.
Definition newgrf.h:34
@ RiverIcon
Unused: the TTDP UI icons for rivers.
Definition newgrf.h:36
@ Dikes
The canal dikes/embankment.
Definition newgrf.h:31
@ FlatDocks
Unused: the graphics for TTDP flat docks.
Definition newgrf.h:33
TramDepotReplacement
Type of tram depot replacement loaded by NewGRFs.
Definition newgrf.h:199
@ WithTrack
Electrified depot graphics with tram track were loaded.
Definition newgrf.h:201
@ WithoutTrack
Electrified depot graphics without tram track were loaded.
Definition newgrf.h:202
StringID MapGRFStringID(GrfID grfid, GRFStringID str)
Used when setting an object's property to map to the GRF's strings while taking in consideration the ...
void GrfMsgI(Severity severity, const std::string &msg)
Debug() function dedicated to newGRF debugging messages Function is essentially the same as Debug(Fac...
Definition newgrf.cpp:92
void LoadNewGRF(SpriteID load_index, uint num_baseset)
Load all the NewGRFs.
Definition newgrf.cpp:1760
EnumBitSet< GrfMiscBit, uint8_t > GrfMiscBits
Bitset of GrfMiscBit elements.
Definition newgrf.h:77
void ResetNewGRFData()
Reset all NewGRF loaded data.
Definition newgrf.cpp:414
GrfSpecFeature GetGrfSpecFeature(VehicleType type)
Get the GrfSpecFeature associated with a VehicleType.
Definition newgrf.cpp:1889
GrfSpecFeature
Definition newgrf.h:79
@ RoadStops
Road stops feature.
Definition newgrf.h:100
@ Trains
Trains feature.
Definition newgrf.h:80
@ FakeTowns
Fake town GrfSpecFeature for NewGRF debugging (parent scope).
Definition newgrf.h:105
@ SoundEffects
Sound effects feature.
Definition newgrf.h:92
@ Cargoes
Cargoes feature.
Definition newgrf.h:91
@ RoadVehicles
Road vehicles feature.
Definition newgrf.h:81
@ TramTypes
Tram types feature.
Definition newgrf.h:99
@ Ships
Ships feature.
Definition newgrf.h:82
@ Houses
Houses feature.
Definition newgrf.h:87
@ FakeEnd
End of the fake features.
Definition newgrf.h:106
@ OriginalStrings
Pseudo unsupported 'feature' for replacing original strings.
Definition newgrf.h:108
@ Default
Unspecified feature, default badge.
Definition newgrf.h:104
@ Stations
Stations feature.
Definition newgrf.h:84
@ Airports
Airports feature.
Definition newgrf.h:93
@ GlobalVar
Global variables feature.
Definition newgrf.h:88
@ Bridges
Bridges feature.
Definition newgrf.h:86
@ IndustryTiles
Industry tiles feature.
Definition newgrf.h:89
@ Objects
Objects feature.
Definition newgrf.h:95
@ Signals
Signals feature.
Definition newgrf.h:94
@ Canals
Canals feature.
Definition newgrf.h:85
@ Industries
Industries feature.
Definition newgrf.h:90
GrfMiscBit
Bits of NewGRF's GlobalVariable 1E/9E.
Definition newgrf.h:66
@ TrainWidth32Pixels
Use 32 pixels per train vehicle in depot gui and vehicle details. Never set in the global variable;.
Definition newgrf.h:70
@ SecondRockyTileSet
Enable using the second rocky tile set.
Definition newgrf.h:73
@ CatenaryOn3rdTrack
Unsupported: enable catenaries over third track type.
Definition newgrf.h:72
@ DesertTreesFields
Unsupported: allow trees and fields in desert climate.
Definition newgrf.h:67
@ AmbientSoundCallback
Enable ambient sound effect callback 144.
Definition newgrf.h:71
@ DesertPavedRoads
Show pavement and lights in desert towns.
Definition newgrf.h:68
@ FieldBoundingBox
Unsupported: fields have a height.
Definition newgrf.h:69
void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary)
Load a particular NewGRF.
Definition newgrf.cpp:1394
void ShowNewGRFError()
Show the first NewGRF error we can find.
void ReloadNewGRFData()
Reload all NewGRF files during a running game.
VehicleType GetVehicleType(GrfSpecFeature feature)
Get the VehicleType associated with a GrfSpecFeature.
Definition newgrf.cpp:1905
EnumBitSet< GrfSpecFeature, uint32_t, GrfSpecFeature::End > GrfSpecFeatures
Bitset of GrfSpecFeature elements.
Definition newgrf.h:114
CanalFeatureFlag
Flags controlling the display of canals.
Definition newgrf.h:42
@ HasFlatSprite
Additional flat ground sprite in the beginning.
Definition newgrf.h:43
Types related to NewGRF badges.
Callbacks that NewGRFs could implement.
EnumBitSet< CanalCallbackMask, uint8_t > CanalCallbackMasks
Bitset of CanalCallbackMask elements.
Header of Action 04 "universal holder" structure.
StrongType::Typedef< uint32_t, struct GRFStringIDTag, StrongType::Compare, StrongType::Integer > GRFStringID
Type for GRF-internal string IDs.
Label< struct GrfIDTag > GrfID
The unique identifier of a NewGRF.
Definition newgrf_type.h:17
The different types of rail.
EnumBitSet< RailType, uint64_t > RailTypes
Bitset of RailType elements.
Definition rail_type.h:37
Enums and other types related to roads.
EnumBitSet< RoadType, uint64_t > RoadTypes
Bitset of RoadType elements.
Definition road_type.h:33
@ Invalid
broken savegame (used internally)
Definition saveload.h:439
StrongType::Typedef< uint32_t, struct StringIDTag, StrongType::Compare, StrongType::Integer > StringID
Numeric value that represents a string, independent of the selected language.
Aircraft, helicopters, rotors and their shadows belong to this class.
Definition aircraft.h:75
Canal properties local to the NewGRF.
Definition newgrf.h:49
CanalCallbackMasks callback_mask
Bitmask of canal callbacks that have to be called.
Definition newgrf.h:50
CanalFeatureFlags flags
Flags controlling display.
Definition newgrf.h:51
Information about GRF, used in the game and (part of it) in savegames.
Dynamic data of a loaded NewGRF.
Definition newgrf.h:125
std::array< uint8_t, NUM_CARGO > cargo_map
Inverse cargo translation table (CargoType -> local ID).
Definition newgrf.h:147
std::vector< RailTypeLabel > railtype_list
Railtype translation table.
Definition newgrf.h:152
uint32_t GetParam(uint number) const
Get GRF Parameter with range checking.
Definition newgrf.h:182
std::vector< RoadTypeLabel > roadtype_list
Roadtype translation table (road).
Definition newgrf.h:155
bool cargo_list_is_fallback
Set if cargo types have been created but a cargo list has not been installed.
Definition newgrf.h:167
std::vector< RoadTypeLabel > tramtype_list
Roadtype translation table (tram).
Definition newgrf.h:158
GRFFile(const GRFConfig &config)
Constructor for GRFFile.
Definition newgrf.cpp:577
std::vector< CargoLabel > cargo_list
Cargo translation table (local ID -> label).
Definition newgrf.h:146
std::unordered_map< GRFLanguage, LanguageMap > language_map
Mappings related to the languages.
Definition newgrf.h:163
uint traininfo_vehicle_width
Width (in pixels) of a 8/8 train vehicle in depot GUI and vehicle details.
Definition newgrf.h:166
std::vector< BadgeID > badge_list
Badge translation table (local index -> global index).
Definition newgrf.h:149
GrfSpecFeatures grf_features
Bitset of GrfSpecFeature the grf uses.
Definition newgrf.h:169
EnumIndexArray< CanalProperties, CanalFeature, CanalFeature::End > canal_local_properties
Canal properties as set by this NewGRF.
Definition newgrf.h:161
int traininfo_vehicle_pitch
Vertical offset for drawing train images in depot GUI and vehicle details.
Definition newgrf.h:165
std::vector< GRFLabel > labels
List of labels.
Definition newgrf.h:144
PriceMultipliers price_base_multipliers
Price base multipliers as set by the grf.
Definition newgrf.h:170
State of features loaded by NewGRFs.
Definition newgrf.h:206
bool has_2CC
Set if any vehicle is loaded which uses 2cc (two company colours).
Definition newgrf.h:207
LiverySchemes used_liveries
Bitmask of LiveryScheme used by the defined engines.
Definition newgrf.h:208
TramDepotReplacement tram
In which way tram depots were replaced.
Definition newgrf.h:210
ShoreReplacement shore
In which way shore sprites were replaced.
Definition newgrf.h:209
Describes properties of price bases.
Definition newgrf.h:216
Price fallback_price
Fallback price multiplier for new prices but old grfs.
Definition newgrf.h:220
PriceCategory category
Price is affected by certain difficulty settings.
Definition newgrf.h:218
Money start_price
Default value at game start, before adding multipliers.
Definition newgrf.h:217
GrfSpecFeature grf_feature
GRF Feature that decides whether price multipliers apply locally or globally, GrfSpecFeature::End if ...
Definition newgrf.h:219
Types related to vehicles.
VehicleType
Available vehicle types.