OpenTTD Source 20260421-master-gc2fbc6fdeb
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 "rail_type.h"
15#include "road_type.h"
16#include "fileio_type.h"
17#include "newgrf_badge_type.h"
18#include "newgrf_callbacks.h"
19#include "newgrf_text_type.h"
20#include "vehicle_type.h"
21
22struct GRFConfig;
23
28enum CanalFeature : uint8_t {
29 CF_WATERSLOPE,
30 CF_LOCKS,
31 CF_DIKES,
32 CF_ICON,
33 CF_DOCKS,
34 CF_RIVER_SLOPE,
35 CF_RIVER_EDGE,
36 CF_RIVER_GUI,
37 CF_BUOY,
38 CF_END,
39};
40
43 CanalCallbackMasks callback_mask;
44 uint8_t flags;
45};
46
56
58
59
69
70using GrfMiscBits = EnumBitSet<GrfMiscBit, uint8_t>;
71
106
107static const uint32_t INVALID_GRFID = 0xFFFFFFFF;
108
109struct GRFLabel {
110 uint8_t label;
111 uint32_t nfo_line;
112 size_t pos;
113
114 GRFLabel(uint8_t label, uint32_t nfo_line, size_t pos) : label(label), nfo_line(nfo_line), pos(pos) {}
115};
116
118struct GRFFile {
119 std::string filename{};
120 uint32_t grfid = 0;
121 uint8_t grf_version = 0;
122
123 uint sound_offset = 0;
124 uint16_t num_sounds = 0;
125
126 std::vector<std::unique_ptr<struct StationSpec>> stations;
127 std::vector<std::unique_ptr<struct HouseSpec>> housespec;
128 std::vector<std::unique_ptr<struct IndustrySpec>> industryspec;
129 std::vector<std::unique_ptr<struct IndustryTileSpec>> indtspec;
130 std::vector<std::unique_ptr<struct ObjectSpec>> objectspec;
131 std::vector<std::unique_ptr<struct AirportSpec>> airportspec;
132 std::vector<std::unique_ptr<struct AirportTileSpec>> airtspec;
133 std::vector<std::unique_ptr<struct RoadStopSpec>> roadstops;
134
135 std::vector<uint32_t> param{};
136
137 std::vector<GRFLabel> labels{};
138
139 std::vector<CargoLabel> cargo_list{};
140 std::array<uint8_t, NUM_CARGO> cargo_map{};
141
142 std::vector<BadgeID> badge_list{};
143 std::unordered_map<uint16_t, BadgeID> badge_map{};
144
145 std::vector<RailTypeLabel> railtype_list{};
146 std::array<RailType, RAILTYPE_END> railtype_map{};
147
148 std::vector<RoadTypeLabel> roadtype_list{};
149 std::array<RoadType, ROADTYPE_END> roadtype_map{};
150
151 std::vector<RoadTypeLabel> tramtype_list{};
152 std::array<RoadType, ROADTYPE_END> tramtype_map{};
153
154 std::array<CanalProperties, CF_END> canal_local_properties{};
155
156 std::unordered_map<uint8_t, LanguageMap> language_map{};
157
161
162 GrfSpecFeatures grf_features{};
163 PriceMultipliers price_base_multipliers{};
164
165 GRFFile(const GRFConfig &config);
166 GRFFile();
167 GRFFile(GRFFile &&other);
168 ~GRFFile();
169
175 uint32_t GetParam(uint number) const
176 {
177 /* Note: We implicitly test for number < this->param.size() and return 0 for invalid parameters.
178 * In fact this is the more important test, as param is zeroed anyway. */
179 return (number < std::size(this->param)) ? this->param[number] : 0;
180 }
181};
182
190
197
205
215
221inline bool HasGrfMiscBit(GrfMiscBit bit)
222{
223 extern GrfMiscBits _misc_grf_features;
224 return _misc_grf_features.Test(bit);
225}
226
227/* Indicates which are the newgrf features currently loaded ingame */
229
230void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary);
231void LoadNewGRF(SpriteID load_index, uint num_baseset);
232void ReloadNewGRFData(); // in saveload/afterload.cpp
233void ResetNewGRFData();
235
236void GrfMsgI(int severity, const std::string &msg);
237#define GrfMsg(severity, format_string, ...) do { if ((severity) == 0 || _debug_grf_level >= (severity)) GrfMsgI(severity, fmt::format(FMT_STRING(format_string) __VA_OPT__(,) __VA_ARGS__)); } while (false)
238
239bool GetGlobalVariable(uint8_t param, uint32_t *value, const GRFFile *grffile);
240
241StringID MapGRFStringID(uint32_t grfid, GRFStringID str);
242void ShowNewGRFError();
243
246
247#endif /* NEWGRF_H */
Types/functions related to cargoes.
Global state for badge definitions.
Enum-as-bit-set wrapper.
PriceCategory
Categories of a price bases.
Price
Enumeration of all base prices for use with Prices.
#define DECLARE_INCREMENT_DECREMENT_OPERATORS(enum_type)
For some enums it is useful to have pre/post increment/decrement operators.
Definition enum_type.hpp:86
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
GRFLoadedFeatures _loaded_newgrf_features
Indicates which are the newgrf features currently loaded ingame.
Definition newgrf.cpp:75
GrfMiscBits _misc_grf_features
Miscellaneous GRF features, set by Action 0x0D, parameter 0x9E.
Definition newgrf.cpp:72
bool GetGlobalVariable(uint8_t param, uint32_t *value, const GRFFile *grffile)
Reads a variable common to VarAction2 and Action7/9/D.
GrfLoadingStage
Stages of loading all NewGRFs.
Definition newgrf.h:48
@ SafetyScan
Checks whether the NewGRF can be used in a static context.
Definition newgrf.h:50
@ Reserve
Third step of NewGRF loading; reserve features and GRMs.
Definition newgrf.h:53
@ Init
Second step of NewGRF loading; load all actions into memory.
Definition newgrf.h:52
@ LabelScan
First step of NewGRF loading; find the 'goto' labels in the NewGRF.
Definition newgrf.h:51
@ Activation
Forth step of NewGRF loading; activate the features.
Definition newgrf.h:54
@ FileScan
Load the Action 8 metadata (GRF ID, name).
Definition newgrf.h:49
void ResetPersistentNewGRFData()
Reset NewGRF data which is stored persistently in savegames.
Definition newgrf.cpp:511
ShoreReplacement
Type of shore replacement loaded by NewGRFs.
Definition newgrf.h:184
@ None
No shore sprites were replaced.
Definition newgrf.h:185
@ Action5
Shore sprites were replaced by Action5.
Definition newgrf.h:186
@ ActionA
Shore sprites were replaced by ActionA (using grass tiles for the corner-shores).
Definition newgrf.h:187
@ OnlyNew
Only corner-shores were loaded by Action5 (openttd(w/d).grf only).
Definition newgrf.h:188
bool HasGrfMiscBit(GrfMiscBit bit)
Check for grf miscellaneous bits.
Definition newgrf.h:221
CanalFeature
List of different canal 'features'.
Definition newgrf.h:28
TramDepotReplacement
Type of tram depot replacement loaded by NewGRFs.
Definition newgrf.h:192
@ WithTrack
Electrified depot graphics with tram track were loaded.
Definition newgrf.h:194
@ WithoutTrack
Electrified depot graphics without tram track were loaded.
Definition newgrf.h:195
StringID MapGRFStringID(uint32_t grfid, GRFStringID str)
Used when setting an object's property to map to the GRF's strings while taking in consideration the ...
void LoadNewGRF(SpriteID load_index, uint num_baseset)
Load all the NewGRFs.
Definition newgrf.cpp:1763
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:1904
GrfSpecFeature
Definition newgrf.h:72
@ RoadStops
Road stops feature.
Definition newgrf.h:93
@ Trains
Trains feature.
Definition newgrf.h:73
@ FakeTowns
Fake town GrfSpecFeature for NewGRF debugging (parent scope).
Definition newgrf.h:98
@ SoundEffects
Sound effects feature.
Definition newgrf.h:85
@ Cargoes
Cargoes feature.
Definition newgrf.h:84
@ RoadVehicles
Road vehicles feature.
Definition newgrf.h:74
@ TramTypes
Tram types feature.
Definition newgrf.h:92
@ Invalid
An invalid spec feature.
Definition newgrf.h:103
@ Ships
Ships feature.
Definition newgrf.h:75
@ Houses
Houses feature.
Definition newgrf.h:80
@ FakeEnd
End of the fake features.
Definition newgrf.h:99
@ OriginalStrings
Pseudo unsupported 'feature' for replacing original strings.
Definition newgrf.h:101
@ Default
Unspecified feature, default badge.
Definition newgrf.h:97
@ End
End marker.
Definition newgrf.h:95
@ Stations
Stations feature.
Definition newgrf.h:77
@ Airports
Airports feature.
Definition newgrf.h:86
@ GlobalVar
Global variables feature.
Definition newgrf.h:81
@ Bridges
Bridges feature.
Definition newgrf.h:79
@ IndustryTiles
Industry tiles feature.
Definition newgrf.h:82
@ Objects
Objects feature.
Definition newgrf.h:88
@ Signals
Signals feature.
Definition newgrf.h:87
@ Canals
Canals feature.
Definition newgrf.h:78
@ Industries
Industries feature.
Definition newgrf.h:83
void GrfMsgI(int severity, const std::string &msg)
Debug() function dedicated to newGRF debugging messages Function is essentially the same as Debug(grf...
Definition newgrf.cpp:91
GrfMiscBit
Bits of NewGRF's GlobalVariable 1E/9E.
Definition newgrf.h:60
@ TrainWidth32Pixels
Use 32 pixels per train vehicle in depot gui and vehicle details. Never set in the global variable;.
Definition newgrf.h:64
@ SecondRockyTileSet
Enable using the second rocky tile set.
Definition newgrf.h:67
@ CatenaryOn3rdTrack
Unsupported: enable catenaries over third track type.
Definition newgrf.h:66
@ DesertTreesFields
Unsupported: allow trees and fields in desert climate.
Definition newgrf.h:61
@ AmbientSoundCallback
Enable ambient sound effect callback 144.
Definition newgrf.h:65
@ DesertPavedRoads
Show pavement and lights in desert towns.
Definition newgrf.h:62
@ FieldBoundingBox
Unsupported: fiels have a height.
Definition newgrf.h:63
void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary)
Load a particular NewGRF.
Definition newgrf.cpp:1397
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:1920
Types related to NewGRF badges.
Callbacks that NewGRFs could implement.
Header of Action 04 "universal holder" structure.
StrongType::Typedef< uint32_t, struct GRFStringIDTag, StrongType::Compare, StrongType::Integer > GRFStringID
Type for GRF-internal string IDs.
The different types of rail.
EnumBitSet< RailType, uint64_t > RailTypes
Allow incrementing of Track variables.
Definition rail_type.h:38
Enums and other types related to roads.
uint32_t 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:73
Canal properties local to the NewGRF.
Definition newgrf.h:42
CanalCallbackMasks callback_mask
Bitmask of canal callbacks that have to be called.
Definition newgrf.h:43
uint8_t flags
Flags controlling display.
Definition newgrf.h:44
Information about GRF, used in the game and (part of it) in savegames.
Dynamic data of a loaded NewGRF.
Definition newgrf.h:118
std::array< CanalProperties, CF_END > canal_local_properties
Canal properties as set by this NewGRF.
Definition newgrf.h:154
std::array< uint8_t, NUM_CARGO > cargo_map
Inverse cargo translation table (CargoType -> local ID).
Definition newgrf.h:140
std::vector< RailTypeLabel > railtype_list
Railtype translation table.
Definition newgrf.h:145
uint32_t GetParam(uint number) const
Get GRF Parameter with range checking.
Definition newgrf.h:175
std::vector< RoadTypeLabel > roadtype_list
Roadtype translation table (road).
Definition newgrf.h:148
bool cargo_list_is_fallback
Set if cargo types have been created but a cargo list has not been installed.
Definition newgrf.h:160
std::vector< RoadTypeLabel > tramtype_list
Roadtype translation table (tram).
Definition newgrf.h:151
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:139
uint traininfo_vehicle_width
Width (in pixels) of a 8/8 train vehicle in depot GUI and vehicle details.
Definition newgrf.h:159
std::vector< BadgeID > badge_list
Badge translation table (local index -> global index).
Definition newgrf.h:142
GrfSpecFeatures grf_features
Bitset of GrfSpecFeature the grf uses.
Definition newgrf.h:162
int traininfo_vehicle_pitch
Vertical offset for drawing train images in depot GUI and vehicle details.
Definition newgrf.h:158
std::unordered_map< uint8_t, LanguageMap > language_map
Mappings related to the languages.
Definition newgrf.h:156
std::vector< GRFLabel > labels
List of labels.
Definition newgrf.h:137
PriceMultipliers price_base_multipliers
Price base multipliers as set by the grf.
Definition newgrf.h:163
State of features loaded by NewGRFs.
Definition newgrf.h:199
bool has_2CC
Set if any vehicle is loaded which uses 2cc (two company colours).
Definition newgrf.h:200
TramDepotReplacement tram
In which way tram depots were replaced.
Definition newgrf.h:203
ShoreReplacement shore
In which way shore sprites were replaced.
Definition newgrf.h:202
uint64_t used_liveries
Bitmask of LiveryScheme used by the defined engines.
Definition newgrf.h:201
Describes properties of price bases.
Definition newgrf.h:209
Price fallback_price
Fallback price multiplier for new prices but old grfs.
Definition newgrf.h:213
PriceCategory category
Price is affected by certain difficulty settings.
Definition newgrf.h:211
Money start_price
Default value at game start, before adding multipliers.
Definition newgrf.h:210
GrfSpecFeature grf_feature
GRF Feature that decides whether price multipliers apply locally or globally, GrfSpecFeature::End if ...
Definition newgrf.h:212
Types related to vehicles.
VehicleType
Available vehicle types.