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