OpenTTD Source  20241108-master-g80f628063a
company_base.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 COMPANY_BASE_H
11 #define COMPANY_BASE_H
12 
13 #include "road_type.h"
14 #include "livery.h"
15 #include "autoreplace_type.h"
16 #include "tile_type.h"
18 #include "settings_type.h"
19 #include "group.h"
20 
21 static const Money COMPANY_MAX_LOAN_DEFAULT = INT64_MIN;
22 
30 };
31 
33  std::array<uint32_t, RAILTYPE_END> rail{};
34  std::array<uint32_t, ROADTYPE_END> road{};
35  uint32_t signal;
36  uint32_t water;
37  uint32_t station;
38  uint32_t airport;
39 
40  auto operator<=>(const CompanyInfrastructure &) const = default;
41 
43  uint32_t GetRailTotal() const
44  {
45  return std::accumulate(std::begin(this->rail), std::end(this->rail), 0U);
46  }
47 
48  uint32_t GetRoadTotal() const;
49  uint32_t GetTramTotal() const;
50 };
51 
53 public:
54  UnitID NextID() const;
55  UnitID UseID(UnitID index);
56  void ReleaseID(UnitID index);
57 
58 private:
59  using BitmapStorage = size_t;
60  static constexpr size_t BITMAP_SIZE = std::numeric_limits<BitmapStorage>::digits;
61 
62  std::vector<BitmapStorage> used_bitmap;
63 };
64 
67 
70  uint32_t name_2;
72  std::string name;
73 
75  uint32_t president_name_2;
76  std::string president_name;
77 
79 
81 
83  uint8_t money_fraction;
86 
87  Colours colour;
88 
89  uint8_t block_preview;
90 
93 
96 
97  uint8_t months_empty = 0;
99  CompanyMask bankrupt_asked;
101  Money bankrupt_value;
102 
103  uint32_t terraform_limit;
104  uint32_t clear_limit;
105  uint32_t tree_limit;
107 
112  bool is_ai;
113 
114  std::array<Expenses, 3> yearly_expenses{};
118 
119  Livery livery[LS_END];
120 
123 
124  // TODO: Change some of these member variables to use relevant INVALID_xxx constants
127  face(0), money(0), money_fraction(0), current_loan(0), max_loan(COMPANY_MAX_LOAN_DEFAULT),
129  months_of_bankruptcy(0), bankrupt_asked(0), bankrupt_timeout(0), bankrupt_value(0),
131 };
132 
134  Company(uint16_t name_1 = 0, bool is_ai = false);
135  ~Company();
136 
139 
140  std::unique_ptr<class AIInstance> ai_instance;
141  class AIInfo *ai_info;
142  std::unique_ptr<class AIConfig> ai_config;
143 
146 
148 
150  FreeUnitIDGenerator freegroups;
151 
152  Money GetMaxLoan() const;
153 
159  static inline bool IsValidAiID(size_t index)
160  {
161  const Company *c = Company::GetIfValid(index);
162  return c != nullptr && c->is_ai;
163  }
164 
171  static inline bool IsValidHumanID(size_t index)
172  {
173  const Company *c = Company::GetIfValid(index);
174  return c != nullptr && !c->is_ai;
175  }
176 
184  static inline bool IsHumanID(size_t index)
185  {
186  return !Company::Get(index)->is_ai;
187  }
188 
189  static void PostDestructor(size_t index);
190 };
191 
192 Money CalculateCompanyValue(const Company *c, bool including_loan = true);
194 
195 extern uint _cur_company_tick_index;
196 
197 #endif /* COMPANY_BASE_H */
Types related to autoreplacing.
All static information from an AI like name, version, etc.
Definition: ai_info.hpp:16
UnitID UseID(UnitID index)
Use a unit number.
Definition: vehicle.cpp:1863
void ReleaseID(UnitID index)
Release a unit number.
Definition: vehicle.cpp:1880
UnitID NextID() const
Find first unused unit number.
Definition: vehicle.cpp:1848
Simple helper to (more easily) manage authorized keys.
Definition: network_type.h:148
Money CalculateHostileTakeoverValue(const Company *c)
Calculate what you have to pay to take over a company.
Definition: economy.cpp:176
Money CalculateCompanyValue(const Company *c, bool including_loan=true)
Calculate the value of the company.
Definition: economy.cpp:149
uint _cur_company_tick_index
used to generate a name for one company that doesn't have a name yet per tick
Definition: company_cmd.cpp:56
CompanyPool _company_pool("Company")
Pool of companies.
static const uint MAX_HISTORY_QUARTERS
The maximum number of quarters kept as performance's history.
Definition: company_type.h:43
uint32_t CompanyManagerFace
Company manager face bits, info see in company_manager_face.h.
Definition: company_type.h:52
Base class for groups and group functions.
Functions/types related to livery colours.
RailTypes
Allow incrementing of Track variables.
Definition: rail_type.h:44
Enums and other types related to roads.
RoadTypes
The different roadtypes we support, but then a bitmask of them.
Definition: road_type.h:38
Types related to global configuration settings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
Class for storing amounts of cargo.
Definition: cargo_type.h:114
Statistics about the economy.
Definition: company_base.h:24
Money income
The amount of income.
Definition: company_base.h:25
Money expenses
The amount of expenses.
Definition: company_base.h:26
Money company_value
The value of the company.
Definition: company_base.h:29
CargoArray delivered_cargo
The amount of delivered cargo.
Definition: company_base.h:27
int32_t performance_history
Company score (scale 0-1000)
Definition: company_base.h:28
std::array< uint32_t, ROADTYPE_END > road
Count of company owned track bits for each road type.
Definition: company_base.h:34
uint32_t GetRailTotal() const
Get total sum of all owned track bits.
Definition: company_base.h:43
uint32_t GetRoadTotal() const
Get total sum of all owned road bits.
uint32_t station
Count of company owned station tiles.
Definition: company_base.h:37
uint32_t signal
Count of company owned signals.
Definition: company_base.h:35
std::array< uint32_t, RAILTYPE_END > rail
Count of company owned track bits for each rail type.
Definition: company_base.h:33
uint32_t GetTramTotal() const
Get total sum of all owned tram bits.
uint32_t airport
Count of company owned airports.
Definition: company_base.h:38
uint32_t water
Count of company owned track bits for canals.
Definition: company_base.h:36
Statically loadable part of Company pool item.
Definition: company_base.h:69
TileIndex location_of_HQ
Northern tile of HQ; INVALID_TILE when there is none.
Definition: company_base.h:91
uint8_t months_of_bankruptcy
Number of months that the company is unable to pay its debts.
Definition: company_base.h:98
uint32_t clear_limit
Amount of tiles we can (still) clear (times 65536).
Definition: company_base.h:104
CompanyMask bankrupt_asked
which companies were asked about buying it?
Definition: company_base.h:99
std::string president_name
Name of the president if the user changed it.
Definition: company_base.h:76
int16_t bankrupt_timeout
If bigger than 0, amount of time to wait for an answer on an offer to buy this company.
Definition: company_base.h:100
CompanySettings settings
settings specific for each company
Definition: company_base.h:122
NetworkAuthorizedKeys allow_list
Public keys of clients that are allowed to join this company.
Definition: company_base.h:78
uint8_t months_empty
NOSAVE: Number of months this company has not had a client in multiplayer.
Definition: company_base.h:97
CompanyEconomyEntry old_economy[MAX_HISTORY_QUARTERS]
Economic data of the company of the last MAX_HISTORY_QUARTERS quarters.
Definition: company_base.h:116
uint32_t build_object_limit
Amount of tiles we can (still) build objects on (times 65536). Also applies to buying land.
Definition: company_base.h:106
uint32_t name_2
Parameter of name_1.
Definition: company_base.h:70
uint8_t money_fraction
Fraction of money of the company, too small to represent in money.
Definition: company_base.h:83
bool is_ai
If true, the company is (also) controlled by the computer (a NoAI program).
Definition: company_base.h:112
uint32_t president_name_2
Parameter of president_name_1.
Definition: company_base.h:75
StringID name_1
Name of the company if the user did not change it.
Definition: company_base.h:71
Money current_loan
Amount of money borrowed from the bank.
Definition: company_base.h:84
TimerGameCalendar::Year inaugurated_year_calendar
Calendar year of starting the company. Used to display proper Inauguration year while in wallclock mo...
Definition: company_base.h:95
uint32_t terraform_limit
Amount of tileheights we can (still) terraform (times 65536).
Definition: company_base.h:103
TimerGameEconomy::Year inaugurated_year
Economy year of starting the company.
Definition: company_base.h:94
CompanyEconomyEntry cur_economy
Economic data of the company of this quarter.
Definition: company_base.h:115
Colours colour
Company colour.
Definition: company_base.h:87
uint32_t tree_limit
Amount of trees we can (still) plant (times 65536).
Definition: company_base.h:105
CompanyManagerFace face
Face description of the president.
Definition: company_base.h:80
EngineRenewList engine_renew_list
Engine renewals of this company.
Definition: company_base.h:121
Money max_loan
Max allowed amount of the loan or COMPANY_MAX_LOAN_DEFAULT.
Definition: company_base.h:85
std::array< Expenses, 3 > yearly_expenses
Expenses of the company for the last three years.
Definition: company_base.h:114
TileIndex last_build_coordinate
Coordinate of the last build thing by this company.
Definition: company_base.h:92
StringID president_name_1
Name of the president if the user did not change it.
Definition: company_base.h:74
uint8_t block_preview
Number of quarters that the company is not allowed to get new exclusive engine previews (see Companie...
Definition: company_base.h:89
std::string name
Name of the company if the user changed it.
Definition: company_base.h:72
Money money
Money owned by the company.
Definition: company_base.h:82
uint8_t num_valid_stat_ent
Number of valid statistical entries in old_economy.
Definition: company_base.h:117
Settings that can be set per company.
Money GetMaxLoan() const
Calculate the max allowed loan for this company.
CompanyInfrastructure infrastructure
NOSAVE: Counts of company owned infrastructure.
Definition: company_base.h:147
GroupStatistics group_default[VEH_COMPANY_END]
NOSAVE: Statistics for the DEFAULT_GROUP group.
Definition: company_base.h:145
static bool IsHumanID(size_t index)
Is this company a company not controlled by a NoAI program?
Definition: company_base.h:184
static bool IsValidAiID(size_t index)
Is this company a valid company, controlled by the computer (a NoAI program)?
Definition: company_base.h:159
RoadTypes avail_roadtypes
Road types available to this company.
Definition: company_base.h:138
~Company()
Destructor.
Definition: company_cmd.cpp:80
RailTypes avail_railtypes
Rail types available to this company.
Definition: company_base.h:137
Company(uint16_t name_1=0, bool is_ai=false)
Constructor.
Definition: company_cmd.cpp:66
static void PostDestructor(size_t index)
Invalidating some stuff after removing item from the pool.
Definition: company_cmd.cpp:91
static bool IsValidHumanID(size_t index)
Is this company a valid company, not controlled by a NoAI program?
Definition: company_base.h:171
GroupStatistics group_all[VEH_COMPANY_END]
NOSAVE: Statistics for the ALL_GROUP group.
Definition: company_base.h:144
Struct to store engine replacements.
Statistics and caches on the vehicles in a group.
Definition: group.h:24
Information about a particular livery.
Definition: livery.h:78
Base class for all PoolItems.
Definition: pool_type.hpp:237
Tindex index
Index of this pool item.
Definition: pool_type.hpp:238
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:339
static Titem * GetIfValid(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:350
Base class for all pools.
Definition: pool_type.hpp:80
Types related to tiles.
Definition of the game-economy-timer.
uint16_t UnitID
Type for the company global vehicle unit number.
@ VEH_COMPANY_END
Last company-ownable type.
Definition: vehicle_type.h:29