OpenTTD Source  1.11.2
vehiclelist.cpp
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 #include "stdafx.h"
11 #include "train.h"
12 #include "vehiclelist.h"
13 #include "group.h"
14 
15 #include "safeguards.h"
16 
22 {
23  byte c = this->company == OWNER_NONE ? 0xF : (byte)this->company;
24  assert(c < (1 << 4));
25  assert(this->vtype < (1 << 2));
26  assert(this->index < (1 << 20));
27  assert(this->type < VLT_END);
28  static_assert(VLT_END <= (1 << 3));
29 
30  return c << 28 | this->type << 23 | this->vtype << 26 | this->index;
31 }
32 
39 {
40  byte c = GB(data, 28, 4);
41  this->company = c == 0xF ? OWNER_NONE : (CompanyID)c;
42  this->type = (VehicleListType)GB(data, 23, 3);
43  this->vtype = (VehicleType)GB(data, 26, 2);
44  this->index = GB(data, 0, 20);
45 
46  return this->type < VLT_END;
47 }
48 
54 {
55  VehicleListIdentifier result;
56  bool ret = result.UnpackIfValid(data);
57  (void)ret; // assert only
58  assert(ret);
59  return result;
60 }
61 
70 void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engines, VehicleList *wagons, bool individual_wagons)
71 {
72  engines->clear();
73  if (wagons != nullptr && wagons != engines) wagons->clear();
74 
75  for (const Vehicle *v : Vehicle::Iterate()) {
76  /* General tests for all vehicle types */
77  if (v->type != type) continue;
78  if (v->tile != tile) continue;
79 
80  switch (type) {
81  case VEH_TRAIN: {
82  const Train *t = Train::From(v);
83  if (t->IsArticulatedPart() || t->IsRearDualheaded()) continue;
84  if (t->track != TRACK_BIT_DEPOT) continue;
85  if (wagons != nullptr && t->First()->IsFreeWagon()) {
86  if (individual_wagons || t->IsFreeWagon()) wagons->push_back(t);
87  continue;
88  }
89  break;
90  }
91 
92  default:
93  if (!v->IsInDepot()) continue;
94  break;
95  }
96 
97  if (!v->IsPrimaryVehicle()) continue;
98 
99  engines->push_back(v);
100  }
101 
102  /* Ensure the lists are not wasting too much space. If the lists are fresh
103  * (i.e. built within a command) then this will actually do nothing. */
104  engines->shrink_to_fit();
105  if (wagons != nullptr && wagons != engines) wagons->shrink_to_fit();
106 }
107 
115 {
116  list->clear();
117 
118  switch (vli.type) {
119  case VL_STATION_LIST:
120  for (const Vehicle *v : Vehicle::Iterate()) {
121  if (v->type == vli.vtype && v->IsPrimaryVehicle()) {
122  for (const Order *order : v->Orders()) {
123  if ((order->IsType(OT_GOTO_STATION) || order->IsType(OT_GOTO_WAYPOINT) || order->IsType(OT_IMPLICIT))
124  && order->GetDestination() == vli.index) {
125  list->push_back(v);
126  break;
127  }
128  }
129  }
130  }
131  break;
132 
133  case VL_SHARED_ORDERS: {
134  /* Add all vehicles from this vehicle's shared order list */
135  const Vehicle *v = Vehicle::GetIfValid(vli.index);
136  if (v == nullptr || v->type != vli.vtype || !v->IsPrimaryVehicle()) return false;
137 
138  for (; v != nullptr; v = v->NextShared()) {
139  list->push_back(v);
140  }
141  break;
142  }
143 
144  case VL_GROUP_LIST:
145  if (vli.index != ALL_GROUP) {
146  for (const Vehicle *v : Vehicle::Iterate()) {
147  if (v->type == vli.vtype && v->IsPrimaryVehicle() &&
148  v->owner == vli.company && GroupIsInGroup(v->group_id, vli.index)) {
149  list->push_back(v);
150  }
151  }
152  break;
153  }
154  FALLTHROUGH;
155 
156  case VL_STANDARD:
157  for (const Vehicle *v : Vehicle::Iterate()) {
158  if (v->type == vli.vtype && v->owner == vli.company && v->IsPrimaryVehicle()) {
159  list->push_back(v);
160  }
161  }
162  break;
163 
164  case VL_DEPOT_LIST:
165  for (const Vehicle *v : Vehicle::Iterate()) {
166  if (v->type == vli.vtype && v->IsPrimaryVehicle()) {
167  for (const Order *order : v->Orders()) {
168  if (order->IsType(OT_GOTO_DEPOT) && !(order->GetDepotActionType() & ODATFB_NEAREST_DEPOT) && order->GetDestination() == vli.index) {
169  list->push_back(v);
170  break;
171  }
172  }
173  }
174  }
175  break;
176 
177  default: return false;
178  }
179 
180  list->shrink_to_fit();
181  return true;
182 }
TileIndex
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:83
VehicleList
std::vector< const Vehicle * > VehicleList
A list of vehicles.
Definition: vehiclelist.h:53
VehicleListIdentifier::company
CompanyID company
The company associated with this list.
Definition: vehiclelist.h:32
GB
static uint GB(const T x, const uint8 s, const uint8 n)
Fetch n bits from x, started at bit s.
Definition: bitmath_func.hpp:32
train.h
Pool::PoolItem<&_vehicle_pool >::GetIfValid
static Titem * GetIfValid(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:340
VehicleListIdentifier
The information about a vehicle list.
Definition: vehiclelist.h:29
vehiclelist.h
VehicleListIdentifier::UnpackIfValid
bool UnpackIfValid(uint32 data)
Unpack a VehicleListIdentifier from a single uint32.
Definition: vehiclelist.cpp:38
group.h
GroundVehicle::IsRearDualheaded
bool IsRearDualheaded() const
Tell if we are dealing with the rear end of a multiheaded engine.
Definition: ground_vehicle.hpp:334
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:222
Vehicle::IsPrimaryVehicle
virtual bool IsPrimaryVehicle() const
Whether this is the primary vehicle in the chain.
Definition: vehicle_base.h:444
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
Vehicle::IsArticulatedPart
bool IsArticulatedPart() const
Check if the vehicle is an articulated part of an engine.
Definition: vehicle_base.h:904
ALL_GROUP
static const GroupID ALL_GROUP
All vehicles are in this group.
Definition: group_type.h:16
VehicleListIdentifier::Pack
uint32 Pack() const
Pack a VehicleListIdentifier in a single uint32.
Definition: vehiclelist.cpp:21
ODATFB_NEAREST_DEPOT
@ ODATFB_NEAREST_DEPOT
Send the vehicle to the nearest depot.
Definition: order_type.h:105
BuildDepotVehicleList
void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engines, VehicleList *wagons, bool individual_wagons)
Generate a list of vehicles inside a depot.
Definition: vehiclelist.cpp:70
GenerateVehicleSortList
bool GenerateVehicleSortList(VehicleList *list, const VehicleListIdentifier &vli)
Generate a list of vehicles based on window type.
Definition: vehiclelist.cpp:114
safeguards.h
Train
'Train' is either a loco or a wagon.
Definition: train.h:85
stdafx.h
VehicleType
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
VehicleListType
VehicleListType
Vehicle List type flags.
Definition: vehiclelist.h:19
VehicleListIdentifier::index
uint32 index
A vehicle list type specific index.
Definition: vehiclelist.h:33
TRACK_BIT_DEPOT
@ TRACK_BIT_DEPOT
Bitflag for a depot.
Definition: track_type.h:56
Pool::PoolItem<&_vehicle_pool >::Iterate
static Pool::IterateWrapper< Titem > Iterate(size_t from=0)
Returns an iterable ensemble of all valid Titem.
Definition: pool_type.hpp:378
SpecializedVehicle< Train, Type >::From
static Train * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
Definition: vehicle_base.h:1162
VehicleListIdentifier::vtype
VehicleType vtype
The vehicle type associated with this list.
Definition: vehiclelist.h:31
Vehicle::NextShared
Vehicle * NextShared() const
Get the next vehicle of the shared vehicle chain.
Definition: vehicle_base.h:674
OWNER_NONE
@ OWNER_NONE
The tile has no ownership.
Definition: company_type.h:25
VehicleListIdentifier::type
VehicleListType type
The type of vehicle list.
Definition: vehiclelist.h:30
VehicleListIdentifier::UnPack
static VehicleListIdentifier UnPack(uint32 data)
Decode a packed vehicle list identifier into a new one.
Definition: vehiclelist.cpp:53
GroundVehicle::IsFreeWagon
bool IsFreeWagon() const
Check if the vehicle is a free wagon (got no engine in front of it).
Definition: ground_vehicle.hpp:310
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
BaseVehicle::type
VehicleType type
Type of vehicle.
Definition: vehicle_type.h:52
SpecializedVehicle::First
T * First() const
Get the first vehicle in the chain.
Definition: vehicle_base.h:1059
Order
Definition: order_base.h:32
GroupIsInGroup
bool GroupIsInGroup(GroupID search, GroupID group)
Test if GroupID group is a descendant of (or is) GroupID search.
Definition: group_cmd.cpp:859