OpenTTD Source 20250524-master-gc366e6a48e
group.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 GROUP_H
11#define GROUP_H
12
13#include "group_type.h"
14#include "core/flatset_type.hpp"
15#include "core/pool_type.hpp"
16#include "company_type.h"
17#include "vehicle_type.h"
18#include "engine_type.h"
19#include "livery.h"
20
23
28 std::map<EngineID, uint16_t> num_engines{};
29 uint16_t num_vehicle = 0;
30 uint16_t num_vehicle_min_age = 0;
31 bool autoreplace_defined = false;
32 bool autoreplace_finished = false;
33
34 void Clear();
35
36 void ClearProfits()
37 {
38 this->profit_last_year = 0;
39
40 this->num_vehicle_min_age = 0;
41 this->profit_last_year_min_age = 0;
42 }
43
44 void ClearAutoreplace()
45 {
46 this->autoreplace_defined = false;
47 this->autoreplace_finished = false;
48 }
49
50 uint16_t GetNumEngines(EngineID engine) const;
51
52 static GroupStatistics &Get(CompanyID company, GroupID id_g, VehicleType type);
53 static GroupStatistics &Get(const Vehicle *v);
54 static GroupStatistics &GetAllGroup(const Vehicle *v);
55
56 static void CountVehicle(const Vehicle *v, int delta);
57 static void CountEngine(const Vehicle *v, int delta);
58 static void AddProfitLastYear(const Vehicle *v);
59 static void VehicleReachedMinAge(const Vehicle *v);
60
61 static void UpdateProfits();
62 static void UpdateAfterLoad();
63 static void UpdateAutoreplace(CompanyID company);
64};
65
66enum class GroupFlag : uint8_t {
69};
71
91
92
93inline bool IsDefaultGroupID(GroupID index)
94{
95 return index == DEFAULT_GROUP;
96}
97
103inline bool IsAllGroupID(GroupID id_g)
104{
105 return id_g == ALL_GROUP;
106}
107
108
110uint GetGroupNumEngines(CompanyID company, GroupID id_g, EngineID id_e);
111uint GetGroupNumVehicle(CompanyID company, GroupID id_g, VehicleType type);
112uint GetGroupNumVehicleMinAge(CompanyID company, GroupID id_g, VehicleType type);
114
115void SetTrainGroupID(Train *v, GroupID grp);
117void RemoveAllGroupsForCompany(const CompanyID company);
118bool GroupIsInGroup(GroupID search, GroupID group);
120
121#endif /* GROUP_H */
Flat set implementation that uses a sorted vector for storage.
Types related to companies.
static constexpr Owner INVALID_OWNER
An invalid owner.
Types related to engines.
Flat set container implementation.
Money GetGroupProfitLastYearMinAge(CompanyID company, GroupID id_g, VehicleType type)
Get last year's profit of vehicles above minimum age for the group with GroupID id_g and its sub-grou...
void UpdateCompanyGroupLiveries(const Company *c)
Update group liveries for a company.
void UpdateGroupChildren()
Update children list for each group.
Definition group_cmd.cpp:47
void UpdateTrainGroupID(Train *v)
Recalculates the groupID of a train.
GroupFlag
Definition group.h:66
@ ReplaceProtection
If set, the global autoreplace has no effect on the group.
@ ReplaceWagonRemoval
If set, autoreplace will perform wagon removal on vehicles in this group.
uint GetGroupNumEngines(CompanyID company, GroupID id_g, EngineID id_e)
Get the number of engines with EngineID id_e in the group with GroupID id_g and its sub-groups.
void SetTrainGroupID(Train *v, GroupID grp)
Affect the groupID of a train to new_g.
GroupPool _group_pool
Pool of groups.
bool IsAllGroupID(GroupID id_g)
Checks if a GroupID stands for all vehicles of a company.
Definition group.h:103
uint GetGroupNumVehicle(CompanyID company, GroupID id_g, VehicleType type)
Get the number of vehicles in the group with GroupID id_g and its sub-groups.
uint GetGroupNumVehicleMinAge(CompanyID company, GroupID id_g, VehicleType type)
Get the number of vehicles above profit minimum age in the group with GroupID id_g and its sub-groups...
bool GroupIsInGroup(GroupID search, GroupID group)
Test if GroupID group is a descendant of (or is) GroupID search.
Types of a group.
static constexpr GroupID DEFAULT_GROUP
Ungrouped vehicles are in this group.
Definition group_type.h:18
static constexpr GroupID ALL_GROUP
All vehicles are in this group.
Definition group_type.h:17
Functions/types related to livery colours.
Definition of Pool, structure used to access PoolItems, and PoolItem, base structure for Vehicle,...
Statistics and caches on the vehicles in a group.
Definition group.h:25
static void CountVehicle(const Vehicle *v, int delta)
Update num_vehicle when adding or removing a vehicle.
static void AddProfitLastYear(const Vehicle *v)
Add a vehicle's last year profit to the profit sum of its group.
static void VehicleReachedMinAge(const Vehicle *v)
Add a vehicle to the profit sum of its group.
uint16_t GetNumEngines(EngineID engine) const
Get number of vehicles of a specific engine ID.
Definition group_cmd.cpp:59
Money profit_last_year
Sum of profits for all vehicles.
Definition group.h:26
static GroupStatistics & GetAllGroup(const Vehicle *v)
Returns the GroupStatistic for the ALL_GROUPO of a vehicle type.
static void UpdateAfterLoad()
Update all caches after loading a game, changing NewGRF, etc.
static void CountEngine(const Vehicle *v, int delta)
Update num_engines when adding/removing an engine.
uint16_t num_vehicle
Number of vehicles.
Definition group.h:29
Money profit_last_year_min_age
Sum of profits for vehicles considered for profit statistics.
Definition group.h:27
static void UpdateAutoreplace(CompanyID company)
Update autoreplace_defined and autoreplace_finished of all statistics of a company.
static void UpdateProfits()
Recompute the profits for all groups.
void Clear()
Clear all caches.
Definition group_cmd.cpp:33
bool autoreplace_defined
Are any autoreplace rules set?
Definition group.h:31
static GroupStatistics & Get(CompanyID company, GroupID id_g, VehicleType type)
Returns the GroupStatistics for a specific group.
Definition group_cmd.cpp:73
bool autoreplace_finished
Have all autoreplacement finished?
Definition group.h:32
std::map< EngineID, uint16_t > num_engines
Caches the number of engines of each type the company owns.
Definition group.h:28
uint16_t num_vehicle_min_age
Number of vehicles considered for profit statistics;.
Definition group.h:30
Group data.
Definition group.h:73
GroupFlags flags
Group flags.
Definition group.h:78
Livery livery
Custom colour scheme for vehicles in this group.
Definition group.h:79
GroupID parent
Parent group.
Definition group.h:85
GroupStatistics statistics
NOSAVE: Statistics and caches on the vehicles in the group.
Definition group.h:80
VehicleType vehicle_type
Vehicle type of the group.
Definition group.h:76
bool folded
NOSAVE: Is this group folded in the group view?
Definition group.h:83
std::string name
Group Name.
Definition group.h:74
uint16_t number
Per-company group number.
Definition group.h:86
Owner owner
Group Owner.
Definition group.h:75
FlatSet< GroupID > children
NOSAVE: child groups belonging to this group.
Definition group.h:82
Information about a particular livery.
Definition livery.h:78
Base class for all PoolItems.
Base class for all pools.
'Train' is either a loco or a wagon.
Definition train.h:91
Vehicle data structure.
Types related to vehicles.
VehicleType
Available vehicle types.
@ VEH_INVALID
Non-existing type of vehicle.