OpenTTD Source 20260621-master-g720d10536d
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 "livery.h"
15#include "rail_type.h"
16#include "road_type.h"
17#include "fileio_type.h"
18#include "newgrf_badge_type.h"
19#include "newgrf_callbacks.h"
20#include "newgrf_text_type.h"
21#include "vehicle_type.h"
22
23struct GRFConfig;
24
41
43enum class CanalFeatureFlag : uint8_t {
45};
46
48
54
65
76
79
113
116
117static const uint32_t INVALID_GRFID = 0xFFFFFFFF;
118
119struct GRFLabel {
120 uint8_t label;
121 uint32_t nfo_line;
122 size_t pos;
123
124 GRFLabel(uint8_t label, uint32_t nfo_line, size_t pos) : label(label), nfo_line(nfo_line), pos(pos) {}
125};
126
128struct GRFFile {
129 std::string filename{};
130 uint32_t grfid = 0;
131 uint8_t grf_version = 0;
132
133 uint sound_offset = 0;
134 uint16_t num_sounds = 0;
135
136 std::vector<std::unique_ptr<struct StationSpec>> stations;
137 std::vector<std::unique_ptr<struct HouseSpec>> housespec;
138 std::vector<std::unique_ptr<struct IndustrySpec>> industryspec;
139 std::vector<std::unique_ptr<struct IndustryTileSpec>> indtspec;
140 std::vector<std::unique_ptr<struct ObjectSpec>> objectspec;
141 std::vector<std::unique_ptr<struct AirportSpec>> airportspec;
142 std::vector<std::unique_ptr<struct AirportTileSpec>> airtspec;
143 std::vector<std::unique_ptr<struct RoadStopSpec>> roadstops;
144
145 std::vector<uint32_t> param{};
146
147 std::vector<GRFLabel> labels{};
148
149 std::vector<CargoLabel> cargo_list{};
150 std::array<uint8_t, NUM_CARGO> cargo_map{};
151
152 std::vector<BadgeID> badge_list{};
153 std::unordered_map<uint16_t, BadgeID> badge_map{};
154
155 std::vector<RailTypeLabel> railtype_list{};
156 std::array<RailType, RAILTYPE_END> railtype_map{};
157
158 std::vector<RoadTypeLabel> roadtype_list{};
159 std::array<RoadType, ROADTYPE_END> roadtype_map{};
160
161 std::vector<RoadTypeLabel> tramtype_list{};
162 std::array<RoadType, ROADTYPE_END> tramtype_map{};
163
165
166 std::unordered_map<uint8_t, LanguageMap> language_map{};
167
171
173 PriceMultipliers price_base_multipliers{};
174
175 GRFFile(const GRFConfig &config);
176 GRFFile();
177 GRFFile(GRFFile &&other);
178 ~GRFFile();
179
185 uint32_t GetParam(uint number) const
186 {
187 /* Note: We implicitly test for number < this->param.size() and return 0 for invalid parameters.
188 * In fact this is the more important test, as param is zeroed anyway. */
189 return (number < std::size(this->param)) ? this->param[number] : 0;
190 }
191};
192
200
207
215
225
231inline bool HasGrfMiscBit(GrfMiscBit bit)
232{
234 return _misc_grf_features.Test(bit);
235}
236
237/* Indicates which are the newgrf features currently loaded ingame */
239
240void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary);
241void LoadNewGRF(SpriteID load_index, uint num_baseset);
242void ReloadNewGRFData(); // in saveload/afterload.cpp
243void ResetNewGRFData();
245
246void GrfMsgI(int severity, const std::string &msg);
247#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)
248
249bool GetGlobalVariable(uint8_t param, uint32_t *value, const GRFFile *grffile);
250
251StringID MapGRFStringID(uint32_t grfid, GRFStringID str);
252void ShowNewGRFError();
253
256
257#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.
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: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.
EnumBitSet< CanalFeatureFlag, uint8_t > CanalFeatureFlags
CanalFeatureFlag bitmask.
Definition newgrf.h:47
GrfLoadingStage
Stages of loading all NewGRFs.
Definition newgrf.h:56
@ SafetyScan
Checks whether the NewGRF can be used in a static context.
Definition newgrf.h:58
@ Reserve
Third step of NewGRF loading; reserve features and GRMs.
Definition newgrf.h:61
@ Init
Second step of NewGRF loading; load all actions into memory.
Definition newgrf.h:60
@ LabelScan
First step of NewGRF loading; find the 'goto' labels in the NewGRF.
Definition newgrf.h:59
@ Activation
Forth step of NewGRF loading; activate the features.
Definition newgrf.h:62
@ FileScan
Load the Action 8 metadata (GRF ID, name).
Definition newgrf.h:57
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:194
@ None
No shore sprites were replaced.
Definition newgrf.h:195
@ Action5
Shore sprites were replaced by Action5.
Definition newgrf.h:196
@ ActionA
Shore sprites were replaced by ActionA (using grass tiles for the corner-shores).
Definition newgrf.h:197
@ OnlyNew
Only corner-shores were loaded by Action5 (openttd(w/d).grf only).
Definition newgrf.h:198
bool HasGrfMiscBit(GrfMiscBit bit)
Check for grf miscellaneous bits.
Definition newgrf.h:231
CanalFeature
List of different canal 'features'.
Definition newgrf.h:29
@ RiverEdge
The river banks.
Definition newgrf.h:36
@ Locks
The sides of the lock.
Definition newgrf.h:31
@ Icon
Unused: the TTDP UI icon for canals.
Definition newgrf.h:33
@ End
End marker.
Definition newgrf.h:39
@ Buoy
Buoy without underlying water.
Definition newgrf.h:38
@ LockWaterSlope
The sloped water tiles in locks.
Definition newgrf.h:30
@ RiverSlope
The sloped water tiles for rivers.
Definition newgrf.h:35
@ RiverIcon
Unused: the TTDP UI icons for rivers.
Definition newgrf.h:37
@ Dikes
The canal dikes/embankment.
Definition newgrf.h:32
@ FlatDocks
Unused: the graphics for TTDP flat docks.
Definition newgrf.h:34
TramDepotReplacement
Type of tram depot replacement loaded by NewGRFs.
Definition newgrf.h:202
@ WithTrack
Electrified depot graphics with tram track were loaded.
Definition newgrf.h:204
@ WithoutTrack
Electrified depot graphics without tram track were loaded.
Definition newgrf.h:205
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:1764
EnumBitSet< GrfMiscBit, uint8_t > GrfMiscBits
Bitset of GrfMiscBit elements.
Definition newgrf.h:78
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:1893
GrfSpecFeature
Definition newgrf.h:80
@ RoadStops
Road stops feature.
Definition newgrf.h:101
@ Trains
Trains feature.
Definition newgrf.h:81
@ FakeTowns
Fake town GrfSpecFeature for NewGRF debugging (parent scope).
Definition newgrf.h:106
@ SoundEffects
Sound effects feature.
Definition newgrf.h:93
@ Cargoes
Cargoes feature.
Definition newgrf.h:92
@ RoadVehicles
Road vehicles feature.
Definition newgrf.h:82
@ TramTypes
Tram types feature.
Definition newgrf.h:100
@ Invalid
An invalid spec feature.
Definition newgrf.h:111
@ Ships
Ships feature.
Definition newgrf.h:83
@ Houses
Houses feature.
Definition newgrf.h:88
@ FakeEnd
End of the fake features.
Definition newgrf.h:107
@ OriginalStrings
Pseudo unsupported 'feature' for replacing original strings.
Definition newgrf.h:109
@ Default
Unspecified feature, default badge.
Definition newgrf.h:105
@ Stations
Stations feature.
Definition newgrf.h:85
@ Airports
Airports feature.
Definition newgrf.h:94
@ GlobalVar
Global variables feature.
Definition newgrf.h:89
@ Bridges
Bridges feature.
Definition newgrf.h:87
@ IndustryTiles
Industry tiles feature.
Definition newgrf.h:90
@ Objects
Objects feature.
Definition newgrf.h:96
@ Signals
Signals feature.
Definition newgrf.h:95
@ Canals
Canals feature.
Definition newgrf.h:86
@ Industries
Industries feature.
Definition newgrf.h:91
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:67
@ TrainWidth32Pixels
Use 32 pixels per train vehicle in depot gui and vehicle details. Never set in the global variable;.
Definition newgrf.h:71
@ SecondRockyTileSet
Enable using the second rocky tile set.
Definition newgrf.h:74
@ CatenaryOn3rdTrack
Unsupported: enable catenaries over third track type.
Definition newgrf.h:73
@ DesertTreesFields
Unsupported: allow trees and fields in desert climate.
Definition newgrf.h:68
@ AmbientSoundCallback
Enable ambient sound effect callback 144.
Definition newgrf.h:72
@ DesertPavedRoads
Show pavement and lights in desert towns.
Definition newgrf.h:69
@ FieldBoundingBox
Unsupported: fields have a height.
Definition newgrf.h:70
void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary)
Load a particular NewGRF.
Definition newgrf.cpp:1398
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:1909
EnumBitSet< GrfSpecFeature, uint32_t, GrfSpecFeature::End > GrfSpecFeatures
Bitset of GrfSpecFeature elements.
Definition newgrf.h:115
CanalFeatureFlag
Flags controlling the display of canals.
Definition newgrf.h:43
@ HasFlatSprite
Additional flat ground sprite in the beginning.
Definition newgrf.h:44
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.
The different types of rail.
EnumBitSet< RailType, uint64_t > RailTypes
Bitset of RailType elements.
Definition rail_type.h:36
Enums and other types related to roads.
EnumBitSet< RoadType, uint64_t > RoadTypes
Bitset of RoadType elements.
Definition road_type.h:32
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:75
Canal properties local to the NewGRF.
Definition newgrf.h:50
CanalCallbackMasks callback_mask
Bitmask of canal callbacks that have to be called.
Definition newgrf.h:51
CanalFeatureFlags flags
Flags controlling display.
Definition newgrf.h:52
Information about GRF, used in the game and (part of it) in savegames.
Dynamic data of a loaded NewGRF.
Definition newgrf.h:128
std::array< uint8_t, NUM_CARGO > cargo_map
Inverse cargo translation table (CargoType -> local ID).
Definition newgrf.h:150
std::vector< RailTypeLabel > railtype_list
Railtype translation table.
Definition newgrf.h:155
uint32_t GetParam(uint number) const
Get GRF Parameter with range checking.
Definition newgrf.h:185
std::vector< RoadTypeLabel > roadtype_list
Roadtype translation table (road).
Definition newgrf.h:158
bool cargo_list_is_fallback
Set if cargo types have been created but a cargo list has not been installed.
Definition newgrf.h:170
std::vector< RoadTypeLabel > tramtype_list
Roadtype translation table (tram).
Definition newgrf.h:161
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:149
uint traininfo_vehicle_width
Width (in pixels) of a 8/8 train vehicle in depot GUI and vehicle details.
Definition newgrf.h:169
std::vector< BadgeID > badge_list
Badge translation table (local index -> global index).
Definition newgrf.h:152
GrfSpecFeatures grf_features
Bitset of GrfSpecFeature the grf uses.
Definition newgrf.h:172
EnumIndexArray< CanalProperties, CanalFeature, CanalFeature::End > canal_local_properties
Canal properties as set by this NewGRF.
Definition newgrf.h:164
int traininfo_vehicle_pitch
Vertical offset for drawing train images in depot GUI and vehicle details.
Definition newgrf.h:168
std::unordered_map< uint8_t, LanguageMap > language_map
Mappings related to the languages.
Definition newgrf.h:166
std::vector< GRFLabel > labels
List of labels.
Definition newgrf.h:147
PriceMultipliers price_base_multipliers
Price base multipliers as set by the grf.
Definition newgrf.h:173
State of features loaded by NewGRFs.
Definition newgrf.h:209
bool has_2CC
Set if any vehicle is loaded which uses 2cc (two company colours).
Definition newgrf.h:210
LiverySchemes used_liveries
Bitmask of LiveryScheme used by the defined engines.
Definition newgrf.h:211
TramDepotReplacement tram
In which way tram depots were replaced.
Definition newgrf.h:213
ShoreReplacement shore
In which way shore sprites were replaced.
Definition newgrf.h:212
Describes properties of price bases.
Definition newgrf.h:219
Price fallback_price
Fallback price multiplier for new prices but old grfs.
Definition newgrf.h:223
PriceCategory category
Price is affected by certain difficulty settings.
Definition newgrf.h:221
Money start_price
Default value at game start, before adding multipliers.
Definition newgrf.h:220
GrfSpecFeature grf_feature
GRF Feature that decides whether price multipliers apply locally or globally, GrfSpecFeature::End if ...
Definition newgrf.h:222
Types related to vehicles.
VehicleType
Available vehicle types.