OpenTTD Source 20250205-master-gfd85ab1e2c
cargotype.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 CARGOTYPE_H
11#define CARGOTYPE_H
12
13#include "economy_type.h"
14#include "cargo_type.h"
15#include "gfx_type.h"
16#include "newgrf_callbacks.h"
17#include "strings_type.h"
18#include "landscape_type.h"
19#include "core/bitmath_func.hpp"
20
33
47
49enum CargoClass : uint16_t {
51 CC_PASSENGERS = 1 << 0,
52 CC_MAIL = 1 << 1,
53 CC_EXPRESS = 1 << 2,
54 CC_ARMOURED = 1 << 3,
55 CC_BULK = 1 << 4,
56 CC_PIECE_GOODS = 1 << 5,
57 CC_LIQUID = 1 << 6,
58 CC_REFRIGERATED = 1 << 7,
59 CC_HAZARDOUS = 1 << 8,
60 CC_COVERED = 1 << 9,
61 CC_OVERSIZED = 1 << 10,
62 CC_POWDERIZED = 1 << 11,
63 CC_NOT_POURABLE = 1 << 12,
64 CC_POTABLE = 1 << 13,
65 CC_NON_POTABLE = 1 << 14,
66 CC_SPECIAL = 1 << 15,
67};
68
70using CargoClasses = uint16_t;
71
72static const uint8_t INVALID_CARGO_BITNUM = 0xFF;
73
74static const uint TOWN_PRODUCTION_DIVISOR = 256;
75
77struct CargoSpec {
80 uint8_t legend_colour;
81 uint8_t rating_colour;
82 uint8_t weight;
83 uint16_t multiplier = 0x100;
86 uint8_t transit_periods[2];
87
91 uint16_t town_production_multiplier = TOWN_PRODUCTION_DIVISOR;
93
99
101
102 const struct GRFFile *grffile;
103 const struct SpriteGroup *group;
104
105 Money current_payment;
106
111 inline CargoType Index() const
112 {
113 return this - CargoSpec::array;
114 }
115
121 inline bool IsValid() const
122 {
123 return this->bitnum != INVALID_CARGO_BITNUM;
124 }
125
130 static inline size_t GetArraySize()
131 {
133 }
134
140 static inline CargoSpec *Get(size_t index)
141 {
142 assert(index < lengthof(CargoSpec::array));
143 return &CargoSpec::array[index];
144 }
145
146 SpriteID GetCargoIcon() const;
147
148 inline uint64_t WeightOfNUnits(uint32_t n) const
149 {
150 return n * this->weight / 16u;
151 }
152
153 uint64_t WeightOfNUnitsInTrain(uint32_t n) const;
154
158 struct Iterator {
159 typedef CargoSpec value_type;
160 typedef CargoSpec *pointer;
161 typedef CargoSpec &reference;
162 typedef size_t difference_type;
163 typedef std::forward_iterator_tag iterator_category;
164
165 explicit Iterator(size_t index) : index(index)
166 {
167 this->ValidateIndex();
168 };
169
170 bool operator==(const Iterator &other) const { return this->index == other.index; }
171 bool operator!=(const Iterator &other) const { return !(*this == other); }
172 CargoSpec * operator*() const { return CargoSpec::Get(this->index); }
173 Iterator & operator++() { this->index++; this->ValidateIndex(); return *this; }
174
175 private:
176 size_t index;
177 void ValidateIndex() { while (this->index < CargoSpec::GetArraySize() && !(CargoSpec::Get(this->index)->IsValid())) this->index++; }
178 };
179
180 /*
181 * Iterable ensemble of all valid CargoSpec
182 */
184 size_t from;
185 IterateWrapper(size_t from = 0) : from(from) {}
186 Iterator begin() { return Iterator(this->from); }
187 Iterator end() { return Iterator(CargoSpec::GetArraySize()); }
188 bool empty() { return this->begin() == this->end(); }
189 };
190
196 static IterateWrapper Iterate(size_t from = 0) { return IterateWrapper(from); }
197
199 static std::array<std::vector<const CargoSpec *>, NUM_TPE> town_production_cargoes;
200
201private:
203 static inline std::map<CargoLabel, CargoType> label_map{};
204
205 friend void SetupCargoForClimate(LandscapeType l);
206 friend void BuildCargoLabelMap();
207 friend inline CargoType GetCargoTypeByLabel(CargoLabel ct);
208 friend void FinaliseCargoArray();
209};
210
211extern CargoTypes _cargo_mask;
212extern CargoTypes _standard_cargo_mask;
213
215bool IsDefaultCargo(CargoType cargo_type);
216void BuildCargoLabelMap();
217
218std::optional<std::string> BuildCargoAcceptanceString(const CargoArray &acceptance, StringID label);
219
220inline CargoType GetCargoTypeByLabel(CargoLabel label)
221{
222 auto found = CargoSpec::label_map.find(label);
223 if (found != std::end(CargoSpec::label_map)) return found->second;
224 return INVALID_CARGO;
225}
226
228
230extern std::array<uint8_t, NUM_CARGO> _sorted_cargo_types;
231extern std::vector<const CargoSpec *> _sorted_cargo_specs;
232extern std::span<const CargoSpec *> _sorted_standard_cargo_specs;
233
241{
242 return (CargoSpec::Get(c)->classes & cc) != 0;
243}
244
246
249 bool operator() (const CargoType &lhs, const CargoType &rhs) const { return _sorted_cargo_types[lhs] < _sorted_cargo_types[rhs]; }
250};
251
252#endif /* CARGOTYPE_H */
Functions related to bit mathematics.
Types related to cargoes...
uint8_t CargoType
Cargo slots to indicate a cargo type within a game.
Definition cargo_type.h:22
static const CargoType NUM_CARGO
Maximum number of cargo types in a game.
Definition cargo_type.h:74
bool IsCargoInClass(CargoType c, CargoClass cc)
Does cargo c have cargo class cc?
Definition cargotype.h:240
std::array< uint8_t, NUM_CARGO > _sorted_cargo_types
Sort order of cargoes by cargo type.
Dimension GetLargestCargoIconSize()
Get dimensions of largest cargo icon.
bool IsDefaultCargo(CargoType cargo_type)
Test if a cargo is a default cargo type.
std::span< const CargoSpec * > _sorted_standard_cargo_specs
Standard cargo specifications sorted alphabetically by name.
CargoTypes _standard_cargo_mask
Bitmask of real cargo types available.
Definition cargotype.cpp:38
static const uint8_t INVALID_CARGO_BITNUM
Constant representing invalid cargo.
Definition cargotype.h:72
void BuildCargoLabelMap()
Build cargo label map.
CargoClass
Cargo classes.
Definition cargotype.h:49
@ CC_MAIL
Mail.
Definition cargotype.h:52
@ CC_REFRIGERATED
Refrigerated cargo (Food, Fruit)
Definition cargotype.h:58
@ CC_ARMOURED
Armoured cargo (Valuables, Gold, Diamonds)
Definition cargotype.h:54
@ CC_BULK
Bulk cargo (Coal, Grain etc., Ores, Fruit)
Definition cargotype.h:55
@ CC_NOAVAILABLE
No cargo class has been specified.
Definition cargotype.h:50
@ CC_EXPRESS
Express cargo (Goods, Food, Candy, but also possible for passengers)
Definition cargotype.h:53
@ CC_POWDERIZED
Powderized, moist protected (powder/silo wagon)
Definition cargotype.h:62
@ CC_COVERED
Covered/Sheltered Freight (Transportation in Box Vans, Silo Wagons, etc.)
Definition cargotype.h:60
@ CC_LIQUID
Liquids (Oil, Water, Rubber)
Definition cargotype.h:57
@ CC_NON_POTABLE
Non-potable / non-food / dirty.
Definition cargotype.h:65
@ CC_PIECE_GOODS
Piece goods (Livestock, Wood, Steel, Paper)
Definition cargotype.h:56
@ CC_PASSENGERS
Passengers.
Definition cargotype.h:51
@ CC_HAZARDOUS
Hazardous cargo (Nuclear Fuel, Explosives, etc.)
Definition cargotype.h:59
@ CC_OVERSIZED
Oversized (stake/flatbed wagon)
Definition cargotype.h:61
@ CC_POTABLE
Potable / food / clean.
Definition cargotype.h:64
@ CC_NOT_POURABLE
Not Pourable (open wagon, but not hopper wagon)
Definition cargotype.h:63
@ CC_SPECIAL
Special bit used for livery refit tricks instead of normal cargoes.
Definition cargotype.h:66
std::optional< std::string > BuildCargoAcceptanceString(const CargoArray &acceptance, StringID label)
Build comma-separated cargo acceptance string.
void SetupCargoForClimate(LandscapeType l)
Set up the default cargo types for the given landscape type.
Definition cargotype.cpp:64
std::vector< const CargoSpec * > _sorted_cargo_specs
Cargo specifications sorted alphabetically by name.
TownProductionEffect
Town effect when producing cargo.
Definition cargotype.h:35
@ INVALID_TPE
Invalid town production effect.
Definition cargotype.h:45
@ TPE_NONE
Town will not produce this cargo type.
Definition cargotype.h:36
@ TPE_PASSENGERS
Cargo behaves passenger-like for production.
Definition cargotype.h:37
@ TPE_MAIL
Cargo behaves mail-like for production.
Definition cargotype.h:38
void InitializeSortedCargoSpecs()
Initialize the list of sorted cargo specifications.
uint16_t CargoClasses
Bitmask of cargo classes.
Definition cargotype.h:70
TownAcceptanceEffect
Town growth effect when delivering cargo.
Definition cargotype.h:22
@ NUM_TAE
Amount of town effects.
Definition cargotype.h:31
@ TAE_END
End of town effects.
Definition cargotype.h:30
@ TAE_GOODS
Cargo behaves goods/candy-like.
Definition cargotype.h:27
@ TAE_NONE
Cargo has no effect.
Definition cargotype.h:24
@ TAE_PASSENGERS
Cargo behaves passenger-like.
Definition cargotype.h:25
@ TAE_MAIL
Cargo behaves mail-like.
Definition cargotype.h:26
@ TAE_FOOD
Cargo behaves food/fizzy-drinks-like.
Definition cargotype.h:29
@ TAE_WATER
Cargo behaves water-like.
Definition cargotype.h:28
CargoTypes _cargo_mask
Bitmask of cargo types available.
Definition cargotype.cpp:33
Types related to the economy.
Types related to the graphics and/or input devices.
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition gfx_type.h:17
Types related to the landscape.
LandscapeType
Landscape types.
Callbacks that NewGRFs could implement.
#define lengthof(array)
Return the length of an fixed size array.
Definition stdafx.h:277
Types related to strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Class for storing amounts of cargo.
Definition cargo_type.h:112
Iterator to iterate all valid CargoSpec.
Definition cargotype.h:158
Specification of a cargo type.
Definition cargotype.h:77
int32_t initial_payment
Initial payment rate before inflation is applied.
Definition cargotype.h:85
CargoClasses classes
Classes of this cargo type.
Definition cargotype.h:84
uint16_t multiplier
Capacity multiplier for vehicles. (8 fractional bits)
Definition cargotype.h:83
StringID units_volume
Name of a single unit of cargo of this type.
Definition cargotype.h:96
static CargoSpec * Get(size_t index)
Retrieve cargo details for the given cargo type.
Definition cargotype.h:140
StringID abbrev
Two letter abbreviation for this cargo type.
Definition cargotype.h:98
uint8_t bitnum
Cargo bit number, is INVALID_CARGO_BITNUM for a non-used spec.
Definition cargotype.h:79
static std::map< CargoLabel, CargoType > label_map
Translation map from CargoLabel to Cargo type.
Definition cargotype.h:203
StringID quantifier
Text for multiple units of cargo of this type.
Definition cargotype.h:97
SpriteID GetCargoIcon() const
Get sprite for showing cargo of this type.
CargoType Index() const
Determines index of this cargospec.
Definition cargotype.h:111
SpriteID sprite
Icon to display this cargo type, may be 0xFFF (which means to resolve an action123 chain).
Definition cargotype.h:100
bool is_freight
Cargo type is considered to be freight (affects train freight multiplier).
Definition cargotype.h:88
uint8_t weight
Weight of a single unit of this cargo type in 1/16 ton (62.5 kg).
Definition cargotype.h:82
CargoLabel label
Unique label of the cargo type.
Definition cargotype.h:78
const struct GRFFile * grffile
NewGRF where group belongs to.
Definition cargotype.h:102
static IterateWrapper Iterate(size_t from=0)
Returns an iterable ensemble of all valid CargoSpec.
Definition cargotype.h:196
static CargoSpec array[NUM_CARGO]
Array holding all CargoSpecs.
Definition cargotype.h:202
friend void BuildCargoLabelMap()
Build cargo label map.
StringID name
Name of this type of cargo.
Definition cargotype.h:94
friend void FinaliseCargoArray()
Check for invalid cargoes.
Definition newgrf.cpp:9303
friend void SetupCargoForClimate(LandscapeType l)
Set up the default cargo types for the given landscape type.
Definition cargotype.cpp:64
TownProductionEffect town_production_effect
The effect on town cargo production.
Definition cargotype.h:90
TownAcceptanceEffect town_acceptance_effect
The effect that delivering this cargo type has on towns. Also affects destination of subsidies.
Definition cargotype.h:89
CargoCallbackMasks callback_mask
Bitmask of cargo callbacks that have to be called.
Definition cargotype.h:92
uint16_t town_production_multiplier
Town production multipler, if commanded by TownProductionEffect.
Definition cargotype.h:91
static std::array< std::vector< const CargoSpec * >, NUM_TPE > town_production_cargoes
List of cargo specs for each Town Product Effect.
Definition cargotype.h:27
bool IsValid() const
Tests for validity of this cargospec.
Definition cargotype.h:121
StringID name_single
Name of a single entity of this type of cargo.
Definition cargotype.h:95
static size_t GetArraySize()
Total number of cargospecs, both valid and invalid.
Definition cargotype.h:130
Comparator to sort CargoType by according to desired order.
Definition cargotype.h:248
Dimensions (a width and height) of a rectangle in 2D.
Dynamic data of a loaded NewGRF.
Definition newgrf.h:109
Iterable ensemble of each set bit in a value.