OpenTTD Source 20250312-master-gcdcc6b491d
economy_type.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 ECONOMY_TYPE_H
11#define ECONOMY_TYPE_H
12
14#include "core/enum_type.hpp"
15#include "core/pool_type.hpp"
16
18
20enum EconomyType : uint8_t {
21 ET_BEGIN = 0,
22 ET_ORIGINAL = 0,
23 ET_SMOOTH = 1,
24 ET_FROZEN = 2,
25 ET_END = 3,
26};
27
33static const int MIN_CARGO_SCALE = 15;
39static const int MAX_CARGO_SCALE = 300;
41static const int DEF_CARGO_SCALE = 100;
42
44struct Economy {
46 int16_t fluct;
47 uint8_t interest_rate;
48 uint8_t infl_amount;
54
55 /* Old stuff for savegame conversion only */
58};
59
61enum ScoreID : uint8_t {
62 SCORE_BEGIN = 0,
63 SCORE_VEHICLES = 0,
64 SCORE_STATIONS = 1,
65 SCORE_MIN_PROFIT = 2,
66 SCORE_MIN_INCOME = 3,
67 SCORE_MAX_INCOME = 4,
68 SCORE_DELIVERED = 5,
69 SCORE_CARGO = 6,
70 SCORE_MONEY = 7,
71 SCORE_LOAN = 8,
73 SCORE_END = 10,
74
75
76};
78
79
83static constexpr int SCORE_MAX = 1000;
84
86struct ScoreInfo {
87 int needed;
88 int score;
89};
90
95enum Price : uint8_t {
96 PR_BEGIN = 0,
97 PR_STATION_VALUE = 0,
98 PR_BUILD_RAIL,
99 PR_BUILD_ROAD,
100 PR_BUILD_SIGNALS,
101 PR_BUILD_BRIDGE,
102 PR_BUILD_DEPOT_TRAIN,
103 PR_BUILD_DEPOT_ROAD,
104 PR_BUILD_DEPOT_SHIP,
105 PR_BUILD_TUNNEL,
106 PR_BUILD_STATION_RAIL,
107 PR_BUILD_STATION_RAIL_LENGTH,
108 PR_BUILD_STATION_AIRPORT,
109 PR_BUILD_STATION_BUS,
110 PR_BUILD_STATION_TRUCK,
111 PR_BUILD_STATION_DOCK,
112 PR_BUILD_VEHICLE_TRAIN,
113 PR_BUILD_VEHICLE_WAGON,
114 PR_BUILD_VEHICLE_AIRCRAFT,
115 PR_BUILD_VEHICLE_ROAD,
116 PR_BUILD_VEHICLE_SHIP,
117 PR_BUILD_TREES,
118 PR_TERRAFORM,
119 PR_CLEAR_GRASS,
120 PR_CLEAR_ROUGH,
121 PR_CLEAR_ROCKS,
122 PR_CLEAR_FIELDS,
123 PR_CLEAR_TREES,
124 PR_CLEAR_RAIL,
125 PR_CLEAR_SIGNALS,
126 PR_CLEAR_BRIDGE,
127 PR_CLEAR_DEPOT_TRAIN,
128 PR_CLEAR_DEPOT_ROAD,
129 PR_CLEAR_DEPOT_SHIP,
130 PR_CLEAR_TUNNEL,
131 PR_CLEAR_WATER,
132 PR_CLEAR_STATION_RAIL,
133 PR_CLEAR_STATION_AIRPORT,
134 PR_CLEAR_STATION_BUS,
135 PR_CLEAR_STATION_TRUCK,
136 PR_CLEAR_STATION_DOCK,
137 PR_CLEAR_HOUSE,
138 PR_CLEAR_ROAD,
139 PR_RUNNING_TRAIN_STEAM,
140 PR_RUNNING_TRAIN_DIESEL,
141 PR_RUNNING_TRAIN_ELECTRIC,
142 PR_RUNNING_AIRCRAFT,
143 PR_RUNNING_ROADVEH,
144 PR_RUNNING_SHIP,
145 PR_BUILD_INDUSTRY,
146 PR_CLEAR_INDUSTRY,
147 PR_BUILD_OBJECT,
148 PR_CLEAR_OBJECT,
149 PR_BUILD_WAYPOINT_RAIL,
150 PR_CLEAR_WAYPOINT_RAIL,
151 PR_BUILD_WAYPOINT_BUOY,
152 PR_CLEAR_WAYPOINT_BUOY,
153 PR_TOWN_ACTION,
154 PR_BUILD_FOUNDATION,
155 PR_BUILD_INDUSTRY_RAW,
156 PR_BUILD_TOWN,
157 PR_BUILD_CANAL,
158 PR_CLEAR_CANAL,
159 PR_BUILD_AQUEDUCT,
160 PR_CLEAR_AQUEDUCT,
161 PR_BUILD_LOCK,
162 PR_CLEAR_LOCK,
163 PR_INFRASTRUCTURE_RAIL,
164 PR_INFRASTRUCTURE_ROAD,
165 PR_INFRASTRUCTURE_WATER,
166 PR_INFRASTRUCTURE_STATION,
167 PR_INFRASTRUCTURE_AIRPORT,
168
169 PR_END,
170 INVALID_PRICE = 0xFF
171};
173
174typedef Money Prices[PR_END];
175using PriceMultipliers = std::array<int8_t, PR_END>;
176
195
199using Expenses = std::array<Money, EXPENSES_END>;
200
209
219
221static const int LOAN_INTERVAL = 10000;
223static const int64_t INITIAL_LOAN = 100000;
225static const int64_t MAX_LOAN_LIMIT = 2000000000;
226
235static const uint64_t MAX_INFLATION = (1ull << (63 - 32)) - 1;
236
242static const int MIN_PRICE_MODIFIER = -8;
243static const int MAX_PRICE_MODIFIER = 16;
244static const int INVALID_PRICE_MODIFIER = MIN_PRICE_MODIFIER - 1;
245
247static const uint TUNNELBRIDGE_TRACKBIT_FACTOR = 4;
249static const uint LEVELCROSSING_TRACKBIT_FACTOR = 2;
251static const uint ROAD_DEPOT_TRACKBIT_FACTOR = 2;
253static const uint ROAD_STOP_TRACKBIT_FACTOR = 2;
255static const uint LOCK_DEPOT_TILE_FACTOR = 2;
256
257struct CargoPayment;
259
260#endif /* ECONOMY_TYPE_H */
ScoreID
Score categories in the detailed performance rating.
@ SCORE_END
How many scores are there..
@ SCORE_TOTAL
This must always be the last entry.
static const uint LOCK_DEPOT_TILE_FACTOR
Multiplier for how many regular tiles a lock counts.
static const uint LEVELCROSSING_TRACKBIT_FACTOR
Multiplier for how many regular track bits a level crossing counts.
static const int64_t MAX_LOAN_LIMIT
The max amount possible to configure for a max loan of a company.
EconomyType
Type of the game economy.
static const int MIN_PRICE_MODIFIER
Maximum NewGRF price modifiers.
static const uint ROAD_STOP_TRACKBIT_FACTOR
Multiplier for how many regular track bits a bay stop counts.
static const uint ROAD_DEPOT_TRACKBIT_FACTOR
Multiplier for how many regular track bits a road depot counts.
std::array< Money, EXPENSES_END > Expenses
Data type for storage of Money for each ExpensesType category.
ExpensesType
Types of expenses.
@ EXPENSES_ROADVEH_RUN
Running costs road vehicles.
@ EXPENSES_END
Number of expense types.
@ EXPENSES_TRAIN_RUN
Running costs trains.
@ EXPENSES_AIRCRAFT_REVENUE
Revenue from aircraft.
@ EXPENSES_CONSTRUCTION
Construction costs.
@ EXPENSES_AIRCRAFT_RUN
Running costs aircraft.
@ EXPENSES_ROADVEH_REVENUE
Revenue from road vehicles.
@ EXPENSES_PROPERTY
Property costs.
@ EXPENSES_OTHER
Other expenses.
@ EXPENSES_SHIP_REVENUE
Revenue from ships.
@ EXPENSES_LOAN_INTEREST
Interest payments over the loan.
@ EXPENSES_TRAIN_REVENUE
Revenue from trains.
@ EXPENSES_SHIP_RUN
Running costs ships.
@ INVALID_EXPENSES
Invalid expense type.
@ EXPENSES_NEW_VEHICLES
New vehicles.
Money Prices[PR_END]
Prices of everything.
PriceCategory
Categories of a price bases.
@ PCAT_RUNNING
Price is affected by "vehicle running cost" difficulty setting.
@ PCAT_CONSTRUCTION
Price is affected by "construction cost" difficulty setting.
@ PCAT_NONE
Not affected by difficulty settings.
static const int LOAN_INTERVAL
The "steps" in loan size, in British Pounds!
static const uint TUNNELBRIDGE_TRACKBIT_FACTOR
Multiplier for how many regular track bits a tunnel/bridge counts.
static const int MIN_CARGO_SCALE
Minimum allowed value of town_cargo_scale/industry_cargo_scale.
static const int64_t INITIAL_LOAN
The size of loan for a new company, in British Pounds!
static const uint64_t MAX_INFLATION
Maximum inflation (including fractional part) without causing overflows in int64_t price computations...
Price
Enumeration of all base prices for use with Prices.
static constexpr int SCORE_MAX
The max score that can be in the performance history.
static const int MAX_CARGO_SCALE
Maximum allowed value of town_cargo_scale/industry_cargo_scale.
static const int DEF_CARGO_SCALE
Default value of town_cargo_scale/industry_cargo_scale.
Type (helpers) for enums.
#define DECLARE_INCREMENT_DECREMENT_OPERATORS(enum_type)
For some enums it is useful to have pre/post increment/decrement operators.
Definition enum_type.hpp:63
An overflow safe integer-like type.
Definition of Pool, structure used to access PoolItems, and PoolItem, base structure for Vehicle,...
Helper class to perform the cargo payment.
Data of the economy.
uint64_t inflation_payment
Cumulated inflation of cargo payment since game start; 16 bit fractional part.
uint8_t infl_amount
inflation amount
uint64_t inflation_prices
Cumulated inflation of prices since game start; 16 bit fractional part.
Money old_max_loan_unround
Old: Unrounded max loan.
int16_t fluct
Economy fluctuation status.
uint8_t infl_amount_pr
inflation rate for payment rates
uint32_t industry_daily_change_counter
Bits 31-16 are number of industry to be performed, 15-0 are fractional collected daily.
uint32_t industry_daily_increment
The value which will increment industry_daily_change_counter. Computed value. NOSAVE.
uint16_t old_max_loan_unround_fract
Old: Fraction of the unrounded max loan.
Money max_loan
NOSAVE: Maximum possible loan.
uint8_t interest_rate
Interest.
Templated helper to make a PoolID a single POD value.
Definition pool_type.hpp:43
Describes properties of price bases.
Price fallback_price
Fallback price multiplier for new prices but old grfs.
PriceCategory category
Price is affected by certain difficulty settings.
Money start_price
Default value at game start, before adding multipliers.
uint grf_feature
GRF Feature that decides whether price multipliers apply locally or globally, GSF_END if none.
Data structure for storing how the score is computed for a single score id.
int needed
How much you need to get the perfect score.
int score
How much score it will give.