OpenTTD Source  12.0-beta2
vehicle_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 VEHICLE_BASE_H
11 #define VEHICLE_BASE_H
12 
13 #include "core/smallmap_type.hpp"
14 #include "track_type.h"
15 #include "command_type.h"
16 #include "order_base.h"
17 #include "cargopacket.h"
18 #include "texteff.hpp"
19 #include "engine_type.h"
20 #include "order_func.h"
21 #include "transport_type.h"
22 #include "group_type.h"
23 #include "base_consist.h"
24 #include "network/network.h"
25 #include "saveload/saveload.h"
26 #include <list>
27 #include <map>
28 
30 enum VehStatus {
31  VS_HIDDEN = 0x01,
32  VS_STOPPED = 0x02,
33  VS_UNCLICKABLE = 0x04,
34  VS_DEFPAL = 0x08,
36  VS_SHADOW = 0x20,
38  VS_CRASHED = 0x80,
39 };
40 
53 };
54 
63 };
64 
66 struct NewGRFCache {
67  /* Values calculated when they are requested for the first time after invalidating the NewGRF cache. */
73  uint8 cache_valid;
74 };
75 
81 
88 
92 
93  VE_DEFAULT = 0xFF,
94 };
95 
98  VESM_NONE = 0,
102 
103  VESM_END
104 };
105 
118 };
119 
121 struct VehicleCache {
124 
126 };
127 
130  PalSpriteID seq[4];
131  uint count;
132 
133  bool operator==(const VehicleSpriteSeq &other) const
134  {
135  return this->count == other.count && MemCmpT<PalSpriteID>(this->seq, other.seq, this->count) == 0;
136  }
137 
138  bool operator!=(const VehicleSpriteSeq &other) const
139  {
140  return !this->operator==(other);
141  }
142 
146  bool IsValid() const
147  {
148  return this->count != 0;
149  }
150 
154  void Clear()
155  {
156  this->count = 0;
157  }
158 
162  void Set(SpriteID sprite)
163  {
164  this->count = 1;
165  this->seq[0].sprite = sprite;
166  this->seq[0].pal = 0;
167  }
168 
173  {
174  this->count = src.count;
175  for (uint i = 0; i < src.count; ++i) {
176  this->seq[i].sprite = src.seq[i].sprite;
177  this->seq[i].pal = 0;
178  }
179  }
180 
181  void GetBounds(Rect *bounds) const;
182  void Draw(int x, int y, PaletteID default_pal, bool force_pal) const;
183 };
184 
195 };
196 
200 
201 /* Some declarations of functions, so we can make them friendly */
202 struct GroundVehicleCache;
203 struct LoadgameState;
204 extern bool LoadOldVehicle(LoadgameState *ls, int num);
205 extern void FixOldVehicles();
206 
207 struct GRFFile;
208 
212 struct RefitDesc {
214  uint16 capacity;
215  uint16 remaining;
216  RefitDesc(CargoID cargo, uint16 capacity, uint16 remaining) :
218 };
219 
222 private:
223  typedef std::list<RefitDesc> RefitList;
224  typedef std::map<CargoID, uint> CapacitiesMap;
225 
229 
232 
233 public:
234  friend void FixOldVehicles();
235  friend void AfterLoadVehicles(bool part_of_load);
236  friend bool LoadOldVehicle(LoadgameState *ls, int num);
237  /* So we can use private/protected variables in the saveload code */
238  friend class SlVehicleCommon;
239  friend class SlVehicleDisaster;
240  friend void Ptrs_VEHS();
241 
243 
250 
254 
256 
257  mutable Rect coord;
258 
261 
265 
267 
268  /* Related to age and service time */
273  uint16 reliability;
279 
280  int32 x_pos;
281  int32 y_pos;
282  int32 z_pos;
284 
286 
291  byte spritenum;
292  byte x_extent;
293  byte y_extent;
294  byte z_extent;
295  int8 x_bb_offs;
296  int8 y_bb_offs;
297  int8 x_offs;
298  int8 y_offs;
300 
301  TextEffectID fill_percent_te_id;
303 
304  uint16 cur_speed;
305  byte subspeed;
307  uint32 motion_counter;
308  byte progress;
309 
310  byte random_bits;
312 
315 
318  uint16 cargo_cap;
319  uint16 refit_cap;
323 
324  byte day_counter;
327 
328  byte vehstatus;
330 
331  union {
334  } orders;
335 
338  byte subtype;
339 
342 
344 
346 
347  void PreDestructor();
349  virtual ~Vehicle();
350 
351  void BeginLoading();
352  void CancelReservation(StationID next, Station *st);
353  void LeaveStation();
354 
357 
358  uint16 &GetGroundVehicleFlags();
359  const uint16 &GetGroundVehicleFlags() const;
360 
362 
363  void HandleLoading(bool mode = false);
364 
365  void GetConsistFreeCapacities(SmallMap<CargoID, uint> &capacities) const;
366 
367  uint GetConsistTotalCapacity() const;
368 
377  virtual void MarkDirty() {}
378 
383  virtual void UpdateDeltaXY() {}
384 
398  inline uint GetOldAdvanceSpeed(uint speed)
399  {
400  return (this->direction & 1) ? speed : speed * 3 / 4;
401  }
402 
415  static inline uint GetAdvanceSpeed(uint speed)
416  {
417  return speed * 3 / 4;
418  }
419 
427  inline uint GetAdvanceDistance()
428  {
429  return (this->direction & 1) ? 192 : 256;
430  }
431 
436  virtual ExpensesType GetExpenseType(bool income) const { return EXPENSES_OTHER; }
437 
441  virtual void PlayLeaveStationSound() const {}
442 
446  virtual bool IsPrimaryVehicle() const { return false; }
447 
448  const Engine *GetEngine() const;
449 
455  virtual void GetImage(Direction direction, EngineImageType image_type, VehicleSpriteSeq *result) const { result->Clear(); }
456 
457  const GRFFile *GetGRF() const;
458  uint32 GetGRFID() const;
459 
464  inline void InvalidateNewGRFCache()
465  {
466  this->grf_cache.cache_valid = 0;
467  }
468 
474  {
475  for (Vehicle *u = this; u != nullptr; u = u->Next()) {
476  u->InvalidateNewGRFCache();
477  }
478  }
479 
484  inline bool IsGroundVehicle() const
485  {
486  return this->type == VEH_TRAIN || this->type == VEH_ROAD;
487  }
488 
493  virtual int GetDisplaySpeed() const { return 0; }
494 
499  virtual int GetDisplayMaxSpeed() const { return 0; }
500 
505  virtual int GetCurrentMaxSpeed() const { return 0; }
506 
511  virtual Money GetRunningCost() const { return 0; }
512 
517  virtual bool IsInDepot() const { return false; }
518 
523  virtual bool IsChainInDepot() const { return this->IsInDepot(); }
524 
529  bool IsStoppedInDepot() const
530  {
531  assert(this == this->First());
532  /* Free wagons have no VS_STOPPED state */
533  if (this->IsPrimaryVehicle() && !(this->vehstatus & VS_STOPPED)) return false;
534  return this->IsChainInDepot();
535  }
536 
541  virtual bool Tick() { return true; };
542 
546  virtual void OnNewDay() {};
547 
553  virtual uint Crash(bool flooded = false);
554 
567  virtual Trackdir GetVehicleTrackdir() const { return INVALID_TRACKDIR; }
568 
573  Money GetDisplayRunningCost() const { return (this->GetRunningCost() >> 8); }
574 
579  Money GetDisplayProfitThisYear() const { return (this->profit_this_year >> 8); }
580 
585  Money GetDisplayProfitLastYear() const { return (this->profit_last_year >> 8); }
586 
587  void SetNext(Vehicle *next);
588 
594  inline Vehicle *Next() const { return this->next; }
595 
601  inline Vehicle *Previous() const { return this->previous; }
602 
607  inline Vehicle *First() const { return this->first; }
608 
613  inline Vehicle *Last()
614  {
615  Vehicle *v = this;
616  while (v->Next() != nullptr) v = v->Next();
617  return v;
618  }
619 
624  inline const Vehicle *Last() const
625  {
626  const Vehicle *v = this;
627  while (v->Next() != nullptr) v = v->Next();
628  return v;
629  }
630 
636  inline Vehicle *Move(int n)
637  {
638  Vehicle *v = this;
639  if (n < 0) {
640  for (int i = 0; i != n && v != nullptr; i--) v = v->Previous();
641  } else {
642  for (int i = 0; i != n && v != nullptr; i++) v = v->Next();
643  }
644  return v;
645  }
646 
652  inline const Vehicle *Move(int n) const
653  {
654  const Vehicle *v = this;
655  if (n < 0) {
656  for (int i = 0; i != n && v != nullptr; i--) v = v->Previous();
657  } else {
658  for (int i = 0; i != n && v != nullptr; i++) v = v->Next();
659  }
660  return v;
661  }
662 
667  inline Order *GetFirstOrder() const { return (this->orders.list == nullptr) ? nullptr : this->orders.list->GetFirstOrder(); }
668 
669  void AddToShared(Vehicle *shared_chain);
670  void RemoveFromShared();
671 
676  inline Vehicle *NextShared() const { return this->next_shared; }
677 
682  inline Vehicle *PreviousShared() const { return this->previous_shared; }
683 
688  inline Vehicle *FirstShared() const { return (this->orders.list == nullptr) ? this->First() : this->orders.list->GetFirstSharedVehicle(); }
689 
694  inline bool IsOrderListShared() const { return this->orders.list != nullptr && this->orders.list->IsShared(); }
695 
700  inline VehicleOrderID GetNumOrders() const { return (this->orders.list == nullptr) ? 0 : this->orders.list->GetNumOrders(); }
701 
706  inline VehicleOrderID GetNumManualOrders() const { return (this->orders.list == nullptr) ? 0 : this->orders.list->GetNumManualOrders(); }
707 
713  {
714  return (this->orders.list == nullptr) ? INVALID_STATION : this->orders.list->GetNextStoppingStation(this);
715  }
716 
717  void ResetRefitCaps();
718 
725  inline void CopyVehicleConfigAndStatistics(const Vehicle *src)
726  {
727  this->CopyConsistPropertiesFrom(src);
728 
729  this->unitnumber = src->unitnumber;
730 
731  this->current_order = src->current_order;
732  this->dest_tile = src->dest_tile;
733 
734  this->profit_this_year = src->profit_this_year;
735  this->profit_last_year = src->profit_last_year;
736  }
737 
738 
739  bool HandleBreakdown();
740 
741  bool NeedsAutorenewing(const Company *c, bool use_renew_setting = true) const;
742 
743  bool NeedsServicing() const;
744  bool NeedsAutomaticServicing() const;
745 
753  virtual TileIndex GetOrderStationLocation(StationID station) { return INVALID_TILE; }
754 
763  virtual bool FindClosestDepot(TileIndex *location, DestinationID *destination, bool *reverse) { return false; }
764 
765  virtual void SetDestTile(TileIndex tile) { this->dest_tile = tile; }
766 
768 
769  void UpdateVisualEffect(bool allow_power_change = true);
770  void ShowVisualEffect() const;
771 
772  void UpdatePosition();
773  void UpdateViewport(bool dirty);
774  void UpdateBoundingBoxCoordinates(bool update_cache) const;
776  bool MarkAllViewportsDirty() const;
777 
778  inline uint16 GetServiceInterval() const { return this->service_interval; }
779 
780  inline void SetServiceInterval(uint16 interval) { this->service_interval = interval; }
781 
782  inline bool ServiceIntervalIsCustom() const { return HasBit(this->vehicle_flags, VF_SERVINT_IS_CUSTOM); }
783 
784  inline bool ServiceIntervalIsPercent() const { return HasBit(this->vehicle_flags, VF_SERVINT_IS_PERCENT); }
785 
786  inline void SetServiceIntervalIsCustom(bool on) { SB(this->vehicle_flags, VF_SERVINT_IS_CUSTOM, 1, on); }
787 
788  inline void SetServiceIntervalIsPercent(bool on) { SB(this->vehicle_flags, VF_SERVINT_IS_PERCENT, 1, on); }
789 
790 private:
796  {
797  if (this->GetNumManualOrders() > 0) {
798  /* Advance to next real order */
799  do {
800  this->cur_real_order_index++;
801  if (this->cur_real_order_index >= this->GetNumOrders()) this->cur_real_order_index = 0;
802  } while (this->GetOrder(this->cur_real_order_index)->IsType(OT_IMPLICIT));
803  } else {
804  this->cur_real_order_index = 0;
805  }
806  }
807 
808 public:
815  {
816  if (this->cur_implicit_order_index == this->cur_real_order_index) {
817  /* Increment real order index as well */
818  this->SkipToNextRealOrderIndex();
819  }
820 
821  assert(this->cur_real_order_index == 0 || this->cur_real_order_index < this->GetNumOrders());
822 
823  /* Advance to next implicit order */
824  do {
825  this->cur_implicit_order_index++;
826  if (this->cur_implicit_order_index >= this->GetNumOrders()) this->cur_implicit_order_index = 0;
827  } while (this->cur_implicit_order_index != this->cur_real_order_index && !this->GetOrder(this->cur_implicit_order_index)->IsType(OT_IMPLICIT));
828 
829  InvalidateVehicleOrder(this, 0);
830  }
831 
839  {
840  if (this->cur_implicit_order_index == this->cur_real_order_index) {
841  /* Increment both real and implicit order */
843  } else {
844  /* Increment real order only */
845  this->SkipToNextRealOrderIndex();
846  InvalidateVehicleOrder(this, 0);
847  }
848  }
849 
854  {
855  /* Make sure the index is valid */
856  if (this->cur_real_order_index >= this->GetNumOrders()) this->cur_real_order_index = 0;
857 
858  if (this->GetNumManualOrders() > 0) {
859  /* Advance to next real order */
860  while (this->GetOrder(this->cur_real_order_index)->IsType(OT_IMPLICIT)) {
861  this->cur_real_order_index++;
862  if (this->cur_real_order_index >= this->GetNumOrders()) this->cur_real_order_index = 0;
863  }
864  } else {
865  this->cur_real_order_index = 0;
866  }
867  }
868 
874  inline Order *GetOrder(int index) const
875  {
876  return (this->orders.list == nullptr) ? nullptr : this->orders.list->GetOrderAt(index);
877  }
878 
883  inline Order *GetLastOrder() const
884  {
885  return (this->orders.list == nullptr) ? nullptr : this->orders.list->GetLastOrder();
886  }
887 
888  bool IsEngineCountable() const;
889  bool HasEngineType() const;
890  bool HasDepotOrder() const;
891  void HandlePathfindingResult(bool path_found);
892 
897  inline bool IsFrontEngine() const
898  {
899  return this->IsGroundVehicle() && HasBit(this->subtype, GVSF_FRONT);
900  }
901 
906  inline bool IsArticulatedPart() const
907  {
908  return this->IsGroundVehicle() && HasBit(this->subtype, GVSF_ARTICULATED_PART);
909  }
910 
915  inline bool HasArticulatedPart() const
916  {
917  return this->Next() != nullptr && this->Next()->IsArticulatedPart();
918  }
919 
926  {
927  assert(this->HasArticulatedPart());
928  return this->Next();
929  }
930 
936  {
937  Vehicle *v = this;
938  while (v->IsArticulatedPart()) v = v->Previous();
939  return v;
940  }
941 
946  inline const Vehicle *GetFirstEnginePart() const
947  {
948  const Vehicle *v = this;
949  while (v->IsArticulatedPart()) v = v->Previous();
950  return v;
951  }
952 
958  {
959  Vehicle *v = this;
960  while (v->HasArticulatedPart()) v = v->GetNextArticulatedPart();
961  return v;
962  }
963 
968  inline Vehicle *GetNextVehicle() const
969  {
970  const Vehicle *v = this;
971  while (v->HasArticulatedPart()) v = v->GetNextArticulatedPart();
972 
973  /* v now contains the last articulated part in the engine */
974  return v->Next();
975  }
976 
981  inline Vehicle *GetPrevVehicle() const
982  {
983  Vehicle *v = this->Previous();
984  while (v != nullptr && v->IsArticulatedPart()) v = v->Previous();
985 
986  return v;
987  }
988 
993  struct OrderIterator {
994  typedef Order value_type;
995  typedef Order* pointer;
996  typedef Order& reference;
997  typedef size_t difference_type;
998  typedef std::forward_iterator_tag iterator_category;
999 
1000  explicit OrderIterator(OrderList *list) : list(list), prev(nullptr)
1001  {
1002  this->order = (this->list == nullptr) ? nullptr : this->list->GetFirstOrder();
1003  }
1004 
1005  bool operator==(const OrderIterator &other) const { return this->order == other.order; }
1006  bool operator!=(const OrderIterator &other) const { return !(*this == other); }
1007  Order * operator*() const { return this->order; }
1008  OrderIterator & operator++()
1009  {
1010  this->prev = (this->prev == nullptr) ? this->list->GetFirstOrder() : this->prev->next;
1011  this->order = (this->prev == nullptr) ? nullptr : this->prev->next;
1012  return *this;
1013  }
1014 
1015  private:
1016  OrderList *list;
1017  Order *order;
1018  Order *prev;
1019  };
1020 
1025  OrderList *list;
1026  IterateWrapper(OrderList *list = nullptr) : list(list) {}
1027  OrderIterator begin() { return OrderIterator(this->list); }
1028  OrderIterator end() { return OrderIterator(nullptr); }
1029  bool empty() { return this->begin() == this->end(); }
1030  };
1031 
1036  IterateWrapper Orders() const { return IterateWrapper(this->orders.list); }
1037 };
1038 
1043 template <class T, VehicleType Type>
1044 struct SpecializedVehicle : public Vehicle {
1045  static const VehicleType EXPECTED_TYPE = Type;
1046 
1048 
1053  {
1054  this->sprite_cache.sprite_seq.count = 1;
1055  }
1056 
1061  inline T *First() const { return (T *)this->Vehicle::First(); }
1062 
1067  inline T *Last() { return (T *)this->Vehicle::Last(); }
1068 
1073  inline const T *Last() const { return (const T *)this->Vehicle::Last(); }
1074 
1079  inline T *Next() const { return (T *)this->Vehicle::Next(); }
1080 
1085  inline T *Previous() const { return (T *)this->Vehicle::Previous(); }
1086 
1092  inline T *GetNextArticulatedPart() { return (T *)this->Vehicle::GetNextArticulatedPart(); }
1093 
1099  inline T *GetNextArticulatedPart() const { return (T *)this->Vehicle::GetNextArticulatedPart(); }
1100 
1105  inline T *GetFirstEnginePart() { return (T *)this->Vehicle::GetFirstEnginePart(); }
1106 
1111  inline const T *GetFirstEnginePart() const { return (const T *)this->Vehicle::GetFirstEnginePart(); }
1112 
1117  inline T *GetLastEnginePart() { return (T *)this->Vehicle::GetLastEnginePart(); }
1118 
1123  inline T *GetNextVehicle() const { return (T *)this->Vehicle::GetNextVehicle(); }
1124 
1129  inline T *GetPrevVehicle() const { return (T *)this->Vehicle::GetPrevVehicle(); }
1130 
1136  static inline bool IsValidID(size_t index)
1137  {
1138  return Vehicle::IsValidID(index) && Vehicle::Get(index)->type == Type;
1139  }
1140 
1145  static inline T *Get(size_t index)
1146  {
1147  return (T *)Vehicle::Get(index);
1148  }
1149 
1154  static inline T *GetIfValid(size_t index)
1155  {
1156  return IsValidID(index) ? Get(index) : nullptr;
1157  }
1158 
1164  static inline T *From(Vehicle *v)
1165  {
1166  assert(v->type == Type);
1167  return (T *)v;
1168  }
1169 
1175  static inline const T *From(const Vehicle *v)
1176  {
1177  assert(v->type == Type);
1178  return (const T *)v;
1179  }
1180 
1186  inline void UpdateViewport(bool force_update, bool update_delta)
1187  {
1188  bool sprite_has_changed = false;
1189 
1190  /* Skip updating sprites on dedicated servers without screen */
1191  if (_network_dedicated) return;
1192 
1193  /* Explicitly choose method to call to prevent vtable dereference -
1194  * it gives ~3% runtime improvements in games with many vehicles */
1195  if (update_delta) ((T *)this)->T::UpdateDeltaXY();
1196 
1197  /*
1198  * Only check for a new sprite sequence if the vehicle direction
1199  * has changed since we last checked it, assuming that otherwise
1200  * there won't be enough change in bounding box or offsets to need
1201  * to resolve a new sprite.
1202  */
1203  if (this->direction != this->sprite_cache.last_direction || this->sprite_cache.is_viewport_candidate) {
1204  VehicleSpriteSeq seq;
1205 
1206  ((T*)this)->T::GetImage(this->direction, EIT_ON_MAP, &seq);
1207  if (this->sprite_cache.sprite_seq != seq) {
1208  sprite_has_changed = true;
1209  this->sprite_cache.sprite_seq = seq;
1210  }
1211 
1212  this->sprite_cache.last_direction = this->direction;
1213  this->sprite_cache.revalidate_before_draw = false;
1214  } else {
1215  /*
1216  * A change that could potentially invalidate the sprite has been
1217  * made, signal that we should still resolve it before drawing on a
1218  * viewport.
1219  */
1220  this->sprite_cache.revalidate_before_draw = true;
1221  }
1222 
1223  if (force_update || sprite_has_changed) {
1224  this->Vehicle::UpdateViewport(true);
1225  }
1226  }
1227 
1233  static Pool::IterateWrapper<T> Iterate(size_t from = 0) { return Pool::IterateWrapper<T>(from); }
1234 };
1235 
1238  bool *cache;
1241 
1243  UnitID NextID();
1244 
1246  ~FreeUnitIDGenerator() { free(this->cache); }
1247 };
1248 
1250 static const int32 INVALID_COORD = 0x7fffffff;
1251 
1252 #endif /* VEHICLE_BASE_H */
SpecializedVehicle::GetNextVehicle
T * GetNextVehicle() const
Get the next real (non-articulated part) vehicle in the consist.
Definition: vehicle_base.h:1123
GVSF_ENGINE
@ GVSF_ENGINE
Engine that can be front engine, but might be placed behind another engine (not used for road vehicle...
Definition: vehicle_base.h:115
Vehicle::GetGroundVehicleCache
GroundVehicleCache * GetGroundVehicleCache()
Access the ground vehicle cache of the vehicle.
Definition: vehicle.cpp:2891
Vehicle::IsChainInDepot
virtual bool IsChainInDepot() const
Check whether the whole vehicle chain is in the depot.
Definition: vehicle_base.h:523
BaseConsist::cur_implicit_order_index
VehicleOrderID cur_implicit_order_index
The index to the current implicit order.
Definition: base_consist.h:29
Vehicle::SkipToNextRealOrderIndex
void SkipToNextRealOrderIndex()
Advance cur_real_order_index to the next real order.
Definition: vehicle_base.h:795
VehicleOrderID
byte VehicleOrderID
The index of an order within its current vehicle (not pool related)
Definition: order_type.h:15
MutableSpriteCache::is_viewport_candidate
bool is_viewport_candidate
This vehicle can potentially be drawn on a viewport.
Definition: vehicle_base.h:193
TileIndex
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:83
transport_type.h
LoadgameState
Definition: oldloader.h:19
SmallStack
Minimal stack that uses a pool to avoid pointers.
Definition: smallstack_type.hpp:136
MutableSpriteCache::last_direction
Direction last_direction
Last direction we obtained sprites for.
Definition: vehicle_base.h:190
VE_OFFSET_COUNT
@ VE_OFFSET_COUNT
Number of bits used for the offset.
Definition: vehicle_base.h:79
VE_DISABLE_EFFECT
@ VE_DISABLE_EFFECT
Flag to disable visual effect.
Definition: vehicle_base.h:89
Vehicle::PreDestructor
void PreDestructor()
Destroy all stuff that (still) needs the virtual functions to work properly.
Definition: vehicle.cpp:800
Pool::PoolItem<&_vehicle_pool >::Get
static Titem * Get(size_t index)
Returns Titem with given index.
Definition: pool_type.hpp:337
Direction
Direction
Defines the 8 directions on the map.
Definition: direction_type.h:24
Vehicle::y_pos
int32 y_pos
y coordinate.
Definition: vehicle_base.h:281
SpecializedVehicle::SpecializedVehicleBase
SpecializedVehicle< T, Type > SpecializedVehicleBase
Our type.
Definition: vehicle_base.h:1047
MutableSpriteCache::sprite_seq
VehicleSpriteSeq sprite_seq
Vehicle appearance.
Definition: vehicle_base.h:194
VehicleSpriteSeq::CopyWithoutPalette
void CopyWithoutPalette(const VehicleSpriteSeq &src)
Copy data from another sprite sequence, while dropping all recolouring information.
Definition: vehicle_base.h:172
Vehicle::PreviousShared
Vehicle * PreviousShared() const
Get the previous vehicle of the shared vehicle chain.
Definition: vehicle_base.h:682
Vehicle::GetNumManualOrders
VehicleOrderID GetNumManualOrders() const
Get the number of manually added orders this vehicle has.
Definition: vehicle_base.h:706
Vehicle::GetRunningCost
virtual Money GetRunningCost() const
Gets the running cost of a vehicle.
Definition: vehicle_base.h:511
Vehicle::value
Money value
Value of the vehicle.
Definition: vehicle_base.h:253
Vehicle::x_pos
int32 x_pos
x coordinate.
Definition: vehicle_base.h:280
_vehicle_pool
VehiclePool _vehicle_pool
The pool with all our precious vehicles.
RefitDesc::capacity
uint16 capacity
Capacity the vehicle will have.
Definition: vehicle_base.h:214
Vehicle::HasEngineType
bool HasEngineType() const
Check whether Vehicle::engine_type has any meaning.
Definition: vehicle.cpp:725
Vehicle::GetGroundVehicleFlags
uint16 & GetGroundVehicleFlags()
Access the ground vehicle flags of the vehicle.
Definition: vehicle.cpp:2921
Vehicle::IsEngineCountable
bool IsEngineCountable() const
Check if a vehicle is counted in num_engines in each company struct.
Definition: vehicle.cpp:708
Vehicle::Previous
Vehicle * Previous() const
Get the previous vehicle of this vehicle.
Definition: vehicle_base.h:601
Vehicle::GetNextVehicle
Vehicle * GetNextVehicle() const
Get the next real (non-articulated part) vehicle in the consist.
Definition: vehicle_base.h:968
Vehicle::UpdateDeltaXY
virtual void UpdateDeltaXY()
Updates the x and y offsets and the size of the sprite used for this vehicle.
Definition: vehicle_base.h:383
Vehicle::LeaveStation
void LeaveStation()
Perform all actions when leaving a station.
Definition: vehicle.cpp:2247
Vehicle::Next
Vehicle * Next() const
Get the next vehicle of this vehicle.
Definition: vehicle_base.h:594
SpecializedVehicle::Next
T * Next() const
Get next vehicle in the chain.
Definition: vehicle_base.h:1079
EXPENSES_OTHER
@ EXPENSES_OTHER
Other expenses.
Definition: economy_type.h:170
Vehicle::GetDisplayMaxSpeed
virtual int GetDisplayMaxSpeed() const
Gets the maximum speed in km-ish/h that can be sent into SetDParam for string processing.
Definition: vehicle_base.h:499
Vehicle::y_extent
byte y_extent
y-extent of vehicle bounding box
Definition: vehicle_base.h:293
UnitID
uint16 UnitID
Type for the company global vehicle unit number.
Definition: transport_type.h:16
Station
Station data structure.
Definition: station_base.h:447
RefitDesc::remaining
uint16 remaining
Capacity remaining from before the previous refit.
Definition: vehicle_base.h:215
Vehicle::NeedsAutomaticServicing
bool NeedsAutomaticServicing() const
Checks if the current order should be interrupted for a service-in-depot order.
Definition: vehicle.cpp:252
Vehicle::z_pos
int32 z_pos
z coordinate.
Definition: vehicle_base.h:282
Vehicle::load_unload_ticks
uint16 load_unload_ticks
Ticks to wait before starting next cycle.
Definition: vehicle_base.h:336
Vehicle::GetLastEnginePart
Vehicle * GetLastEnginePart()
Get the last part of an articulated engine.
Definition: vehicle_base.h:957
VehicleSpriteSeq::Clear
void Clear()
Clear all information.
Definition: vehicle_base.h:154
VehicleSpriteSeq::Set
void Set(SpriteID sprite)
Assign a single sprite to the sequence.
Definition: vehicle_base.h:162
NewGRFCache::position_same_id_length
uint32 position_same_id_length
Cache for NewGRF var 41.
Definition: vehicle_base.h:69
FreeUnitIDGenerator::curid
UnitID curid
last ID returned; 0 if none
Definition: vehicle_base.h:1240
Vehicle::random_bits
byte random_bits
Bits used for determining which randomized variational spritegroups to use when drawing.
Definition: vehicle_base.h:310
Vehicle::vehstatus
byte vehstatus
Status.
Definition: vehicle_base.h:328
VE_DEFAULT
@ VE_DEFAULT
Default value to indicate that visual effect should be based on engine class.
Definition: vehicle_base.h:93
Vehicle::grf_cache
NewGRFCache grf_cache
Cache of often used calculated NewGRF values.
Definition: vehicle_base.h:340
VS_DEFPAL
@ VS_DEFPAL
Use default vehicle palette.
Definition: vehicle_base.h:34
Pool::PoolItem<&_vehicle_pool >::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:235
Vehicle::SetNext
void SetNext(Vehicle *next)
Set the next vehicle of this vehicle.
Definition: vehicle.cpp:2726
order_base.h
Vehicle::Crash
virtual uint Crash(bool flooded=false)
Crash the (whole) vehicle chain.
Definition: vehicle.cpp:260
Vehicle::acceleration
byte acceleration
used by train & aircraft
Definition: vehicle_base.h:306
PalSpriteID::sprite
SpriteID sprite
The 'real' sprite.
Definition: gfx_type.h:23
Vehicle::group_id
GroupID group_id
Index of group Pool array.
Definition: vehicle_base.h:337
Vehicle::Vehicle
Vehicle(VehicleType type=VEH_INVALID)
Vehicle constructor.
Definition: vehicle.cpp:345
Vehicle::old
Order * old
Only used during conversion of old save games.
Definition: vehicle_base.h:333
HasBit
static bool HasBit(const T x, const uint8 y)
Checks if a bit in a value is set.
Definition: bitmath_func.hpp:103
GroundVehicleSubtypeFlags
GroundVehicleSubtypeFlags
Enum to handle ground vehicle subtypes.
Definition: vehicle_base.h:111
VE_TYPE_ELECTRIC
@ VE_TYPE_ELECTRIC
Electric sparks.
Definition: vehicle_base.h:87
Vehicle::next
Vehicle * next
pointer to the next vehicle in the chain
Definition: vehicle_base.h:226
Vehicle::GetGRF
const GRFFile * GetGRF() const
Retrieve the NewGRF the vehicle is tied to.
Definition: vehicle.cpp:751
Year
int32 Year
Type for the year, note: 0 based, i.e. starts at the year 0.
Definition: date_type.h:18
NewGRFCache::cache_valid
uint8 cache_valid
Bitset that indicates which cache values are valid.
Definition: vehicle_base.h:73
VF_LOADING_FINISHED
@ VF_LOADING_FINISHED
Vehicle has finished loading.
Definition: vehicle_base.h:43
saveload.h
SpecializedVehicle::GetNextArticulatedPart
T * GetNextArticulatedPart()
Get the next part of an articulated engine.
Definition: vehicle_base.h:1092
Vehicle::running_ticks
byte running_ticks
Number of ticks this vehicle was not stopped this day.
Definition: vehicle_base.h:326
Vehicle::~Vehicle
virtual ~Vehicle()
We want to 'destruct' the right class.
Definition: vehicle.cpp:866
base_consist.h
VE_TYPE_COUNT
@ VE_TYPE_COUNT
Number of bits used for the effect type.
Definition: vehicle_base.h:83
Vehicle::GetConsistFreeCapacities
void GetConsistFreeCapacities(SmallMap< CargoID, uint > &capacities) const
Get a map of cargoes and free capacities in the consist.
Definition: vehicle.cpp:2344
VS_TRAIN_SLOWING
@ VS_TRAIN_SLOWING
Train is slowing down.
Definition: vehicle_base.h:35
Vehicle::OrderIterator
Iterator to iterate orders Supports deletion of current order.
Definition: vehicle_base.h:993
smallmap_type.hpp
Vehicle::GetNextArticulatedPart
Vehicle * GetNextArticulatedPart() const
Get the next part of an articulated engine.
Definition: vehicle_base.h:925
Vehicle::AfterLoadVehicles
friend void AfterLoadVehicles(bool part_of_load)
So we can set the previous and first pointers while loading.
Definition: vehicle_sl.cpp:242
Vehicle::orders
union Vehicle::@49 orders
The orders currently assigned to the vehicle.
EngineImageType
EngineImageType
Visualisation contexts of vehicles and engines.
Definition: vehicle_type.h:85
Engine
Definition: engine_base.h:27
VEH_ROAD
@ VEH_ROAD
Road vehicle type.
Definition: vehicle_type.h:25
Vehicle::cur_speed
uint16 cur_speed
current speed
Definition: vehicle_base.h:304
Vehicle
Vehicle data structure.
Definition: vehicle_base.h:221
Vehicle::IsPrimaryVehicle
virtual bool IsPrimaryVehicle() const
Whether this is the primary vehicle in the chain.
Definition: vehicle_base.h:446
Vehicle::IsGroundVehicle
bool IsGroundVehicle() const
Check if the vehicle is a ground vehicle.
Definition: vehicle_base.h:484
VehicleSpriteSeq::Draw
void Draw(int x, int y, PaletteID default_pal, bool force_pal) const
Draw the sprite sequence.
Definition: vehicle.cpp:126
Vehicle::owner
Owner owner
Which company owns the vehicle?
Definition: vehicle_base.h:285
Owner
Owner
Enum for all companies/owners.
Definition: company_type.h:18
VehicleCache::cached_cargo_age_period
uint16 cached_cargo_age_period
Number of ticks before carried cargo is aged.
Definition: vehicle_base.h:123
Vehicle::IsInDepot
virtual bool IsInDepot() const
Check whether the vehicle is in the depot.
Definition: vehicle_base.h:517
VS_AIRCRAFT_BROKEN
@ VS_AIRCRAFT_BROKEN
Aircraft is broken down.
Definition: vehicle_base.h:37
DoCommandFlag
DoCommandFlag
List of flags for a command.
Definition: command_type.h:346
VE_OFFSET_START
@ VE_OFFSET_START
First bit that contains the offset (0 = front, 8 = centre, 15 = rear)
Definition: vehicle_base.h:78
Vehicle::breakdowns_since_last_service
byte breakdowns_since_last_service
Counter for the amount of breakdowns.
Definition: vehicle_base.h:277
Vehicle::UpdateRealOrderIndex
void UpdateRealOrderIndex()
Skip implicit orders until cur_real_order_index is a non-implicit order.
Definition: vehicle_base.h:853
NCVV_POSITION_IN_VEHICLE
@ NCVV_POSITION_IN_VEHICLE
This bit will be set if the NewGRF var 4D currently stored is valid.
Definition: vehicle_base.h:61
SmallMap
Implementation of simple mapping class.
Definition: smallmap_type.hpp:26
Vehicle::IsArticulatedPart
bool IsArticulatedPart() const
Check if the vehicle is an articulated part of an engine.
Definition: vehicle_base.h:906
VehicleCargoList
CargoList that is used for vehicles.
Definition: cargopacket.h:269
SpriteID
uint32 SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition: gfx_type.h:17
VF_STOP_LOADING
@ VF_STOP_LOADING
Don't load anymore during the next load cycle.
Definition: vehicle_base.h:49
SlVehicleCommon
Definition: vehicle_sl.cpp:578
VE_TYPE_DIESEL
@ VE_TYPE_DIESEL
Diesel fumes.
Definition: vehicle_base.h:86
VESM_STEAM
@ VESM_STEAM
Steam model.
Definition: vehicle_base.h:99
Vehicle::GetDisplayRunningCost
Money GetDisplayRunningCost() const
Gets the running cost of a vehicle that can be sent into SetDParam for string processing.
Definition: vehicle_base.h:573
VF_AUTOFILL_TIMETABLE
@ VF_AUTOFILL_TIMETABLE
Whether the vehicle should fill in the timetable automatically.
Definition: vehicle_base.h:47
MutableSpriteCache
Cache for vehicle sprites and values relating to whether they should be updated before drawing,...
Definition: vehicle_base.h:189
Vehicle::Orders
IterateWrapper Orders() const
Returns an iterable ensemble of orders of a vehicle.
Definition: vehicle_base.h:1036
Vehicle::Last
const Vehicle * Last() const
Get the last vehicle of this vehicle chain.
Definition: vehicle_base.h:624
Vehicle::BeginLoading
void BeginLoading()
Prepare everything to begin the loading when arriving at a station.
Definition: vehicle.cpp:2099
Vehicle::breakdown_ctr
byte breakdown_ctr
Counter for managing breakdown events.
Definition: vehicle_base.h:275
VS_HIDDEN
@ VS_HIDDEN
Vehicle is not visible.
Definition: vehicle_base.h:31
EngineID
uint16 EngineID
Unique identification number of an engine.
Definition: engine_type.h:21
Vehicle::UpdateVisualEffect
void UpdateVisualEffect(bool allow_power_change=true)
Update the cached visual effect.
Definition: vehicle.cpp:2453
VehicleSpriteSeq::IsValid
bool IsValid() const
Check whether the sequence contains any sprites.
Definition: vehicle_base.h:146
Vehicle::dest_tile
TileIndex dest_tile
Heading for this tile.
Definition: vehicle_base.h:249
Vehicle::HandlePathfindingResult
void HandlePathfindingResult(bool path_found)
Handle the pathfinding result, especially the lost status.
Definition: vehicle.cpp:773
Vehicle::GetDisplayProfitThisYear
Money GetDisplayProfitThisYear() const
Gets the profit vehicle had this year.
Definition: vehicle_base.h:579
Vehicle::GetDisplaySpeed
virtual int GetDisplaySpeed() const
Gets the speed in km-ish/h that can be sent into SetDParam for string processing.
Definition: vehicle_base.h:493
Vehicle::GetPrevVehicle
Vehicle * GetPrevVehicle() const
Get the previous real (non-articulated part) vehicle in the consist.
Definition: vehicle_base.h:981
VE_TYPE_START
@ VE_TYPE_START
First bit used for the type of effect.
Definition: vehicle_base.h:82
GroundVehicleCache
Cached, frequently calculated values.
Definition: ground_vehicle.hpp:29
CommandCost
Common return value for all commands.
Definition: command_type.h:23
Vehicle::UpdateBoundingBoxCoordinates
void UpdateBoundingBoxCoordinates(bool update_cache) const
Update the bounding box co-ordinates of the vehicle.
Definition: vehicle.cpp:1605
BaseVehicle
Base vehicle class.
Definition: vehicle_type.h:50
Vehicle::GetCurrentMaxSpeed
virtual int GetCurrentMaxSpeed() const
Calculates the maximum speed of the vehicle under its current conditions.
Definition: vehicle_base.h:505
FreeUnitIDGenerator::NextID
UnitID NextID()
Returns next free UnitID.
Definition: vehicle.cpp:1778
Vehicle::AddToShared
void AddToShared(Vehicle *shared_chain)
Adds this vehicle to a shared vehicle chain.
Definition: vehicle.cpp:2755
VehStatus
VehStatus
Vehicle status bits in Vehicle::vehstatus.
Definition: vehicle_base.h:30
NewGRFCache::consist_cargo_information
uint32 consist_cargo_information
Cache for NewGRF var 42. (Note: The cargotype is untranslated in the cache because the accessing GRF ...
Definition: vehicle_base.h:70
Vehicle::RemoveFromShared
void RemoveFromShared()
Removes the vehicle from the shared order list.
Definition: vehicle.cpp:2778
VF_CARGO_UNLOADING
@ VF_CARGO_UNLOADING
Vehicle is unloading cargo.
Definition: vehicle_base.h:44
NCVV_POSITION_CONSIST_LENGTH
@ NCVV_POSITION_CONSIST_LENGTH
This bit will be set if the NewGRF var 40 currently stored is valid.
Definition: vehicle_base.h:57
Vehicle::tile
TileIndex tile
Current tile index.
Definition: vehicle_base.h:242
Vehicle::CancelReservation
void CancelReservation(StationID next, Station *st)
Return all reserved cargo packets to the station and reset all packets staged for transfer.
Definition: vehicle.cpp:2230
EIT_ON_MAP
@ EIT_ON_MAP
Vehicle drawn in viewport.
Definition: vehicle_type.h:86
Vehicle::engine_type
EngineID engine_type
The type of engine used for this vehicle.
Definition: vehicle_base.h:299
VS_CRASHED
@ VS_CRASHED
Vehicle is crashed.
Definition: vehicle_base.h:38
VehicleSpriteSeq
Sprite sequence for a vehicle part.
Definition: vehicle_base.h:129
SB
static T SB(T &x, const uint8 s, const uint8 n, const U d)
Set n bits in x starting at bit s to d.
Definition: bitmath_func.hpp:58
LoadOldVehicle
bool LoadOldVehicle(LoadgameState *ls, int num)
Load the vehicles of an old style savegame.
Definition: oldloader_sl.cpp:1221
Vehicle::last_station_visited
StationID last_station_visited
The last station we stopped at.
Definition: vehicle_base.h:313
Vehicle::GetVehicleTrackdir
virtual Trackdir GetVehicleTrackdir() const
Returns the Trackdir on which the vehicle is currently located.
Definition: vehicle_base.h:567
CargoPayment
Helper class to perform the cargo payment.
Definition: economy_base.h:24
Vehicle::cargo
VehicleCargoList cargo
The cargo this vehicle is carrying.
Definition: vehicle_base.h:320
Vehicle::GetOldAdvanceSpeed
uint GetOldAdvanceSpeed(uint speed)
Determines the effective direction-specific vehicle movement speed.
Definition: vehicle_base.h:398
VehicleFlags
VehicleFlags
Bit numbers in Vehicle::vehicle_flags.
Definition: vehicle_base.h:42
Vehicle::GetExpenseType
virtual ExpensesType GetExpenseType(bool income) const
Sets the expense type associated to this vehicle type.
Definition: vehicle_base.h:436
SpecializedVehicle
Class defining several overloaded accessors so we don't have to cast vehicle types that often.
Definition: vehicle_base.h:1044
Vehicle::hash_tile_current
Vehicle ** hash_tile_current
NOSAVE: Cache of the current hash chain.
Definition: vehicle_base.h:264
GVSF_ARTICULATED_PART
@ GVSF_ARTICULATED_PART
Articulated part of an engine.
Definition: vehicle_base.h:113
Vehicle::current_order
Order current_order
The current order (+ status, like: loading)
Definition: vehicle_base.h:329
FreeUnitIDGenerator::~FreeUnitIDGenerator
~FreeUnitIDGenerator()
Releases allocated memory.
Definition: vehicle_base.h:1246
Date
int32 Date
The type to store our dates in.
Definition: date_type.h:14
Vehicle::max_age
Date max_age
Maximum age.
Definition: vehicle_base.h:271
Vehicle::IsFrontEngine
bool IsFrontEngine() const
Check if the vehicle is a front engine.
Definition: vehicle_base.h:897
Vehicle::GetLastOrder
Order * GetLastOrder() const
Returns the last order of a vehicle, or nullptr if it doesn't exists.
Definition: vehicle_base.h:883
FreeUnitIDGenerator
Generates sequence of free UnitID numbers.
Definition: vehicle_base.h:1237
SpecializedVehicle::Get
static T * Get(size_t index)
Gets vehicle with given index.
Definition: vehicle_base.h:1145
Pool::IterateWrapper
Definition: pool_type.hpp:175
VS_STOPPED
@ VS_STOPPED
Vehicle is stopped by the player.
Definition: vehicle_base.h:32
Vehicle::trip_occupancy
int8 trip_occupancy
NOSAVE: Occupancy of vehicle of the current trip (updated after leaving a station).
Definition: vehicle_base.h:322
Vehicle::GetGRFID
uint32 GetGRFID() const
Retrieve the GRF ID of the NewGRF the vehicle is tied to.
Definition: vehicle.cpp:761
VehicleCache
Cached often queried values common to all vehicles.
Definition: vehicle_base.h:121
Vehicle::ShowVisualEffect
void ShowVisualEffect() const
Draw visual effects (smoke and/or sparks) for a vehicle chain.
Definition: vehicle.cpp:2576
Vehicle::GetEngine
const Engine * GetEngine() const
Retrieves the engine of the vehicle.
Definition: vehicle.cpp:741
VisualEffectSpawnModel
VisualEffectSpawnModel
Models for spawning visual effects.
Definition: vehicle_base.h:97
Vehicle::CopyVehicleConfigAndStatistics
void CopyVehicleConfigAndStatistics(const Vehicle *src)
Copy certain configurations and statistics of a vehicle after successful autoreplace/renew The functi...
Definition: vehicle_base.h:725
cargopacket.h
Vehicle::ResetRefitCaps
void ResetRefitCaps()
Reset all refit_cap in the consist to cargo_cap.
Definition: vehicle.cpp:2299
Vehicle::reliability_spd_dec
uint16 reliability_spd_dec
Reliability decrease speed.
Definition: vehicle_base.h:274
Vehicle::UpdateViewport
void UpdateViewport(bool dirty)
Update the vehicle on the viewport, updating the right hash and setting the new coordinates.
Definition: vehicle.cpp:1638
Vehicle::last_loading_station
StationID last_loading_station
Last station the vehicle has stopped at and could possibly leave from with any cargo loaded.
Definition: vehicle_base.h:314
VEH_INVALID
@ VEH_INVALID
Non-existing type of vehicle.
Definition: vehicle_type.h:35
VF_SERVINT_IS_CUSTOM
@ VF_SERVINT_IS_CUSTOM
Service interval is custom.
Definition: vehicle_base.h:51
Vehicle::previous_shared
Vehicle * previous_shared
NOSAVE: pointer to the previous vehicle in the shared order chain.
Definition: vehicle_base.h:231
DepotCommand
DepotCommand
Flags to add to p1 for goto depot commands.
Definition: vehicle_type.h:65
Vehicle::profit_this_year
Money profit_this_year
Profit this year << 8, low 8 bits are fract.
Definition: vehicle_base.h:251
VehiclePool
Pool< Vehicle, VehicleID, 512, 0xFF000 > VehiclePool
A vehicle pool for a little over 1 million vehicles.
Definition: vehicle_base.h:198
Vehicle::MarkAllViewportsDirty
bool MarkAllViewportsDirty() const
Marks viewports dirty where the vehicle's image is.
Definition: vehicle.cpp:1677
Vehicle::PlayLeaveStationSound
virtual void PlayLeaveStationSound() const
Play the sound associated with leaving the station.
Definition: vehicle_base.h:441
GVSF_WAGON
@ GVSF_WAGON
Wagon (not used for road vehicles).
Definition: vehicle_base.h:114
INVALID_TRACKDIR
@ INVALID_TRACKDIR
Flag for an invalid trackdir.
Definition: track_type.h:89
FixOldVehicles
void FixOldVehicles()
Convert the old style vehicles into something that resembles the old new style savegames.
Definition: oldloader_sl.cpp:171
VehicleCache::cached_vis_effect
byte cached_vis_effect
Visual effect to show (see VisualEffect)
Definition: vehicle_base.h:125
Vehicle::FindClosestDepot
virtual bool FindClosestDepot(TileIndex *location, DestinationID *destination, bool *reverse)
Find the closest depot for this vehicle and tell us the location, DestinationID and whether we should...
Definition: vehicle_base.h:763
Vehicle::HandleLoading
void HandleLoading(bool mode=false)
Handle the loading of the vehicle; when not it skips through dummy orders and does nothing in all oth...
Definition: vehicle.cpp:2309
Vehicle::HasDepotOrder
bool HasDepotOrder() const
Checks if a vehicle has a depot in its order list.
Definition: order_cmd.cpp:1872
_network_dedicated
bool _network_dedicated
are we a dedicated server?
Definition: network.cpp:59
Vehicle::Move
const Vehicle * Move(int n) const
Get the vehicle at offset n of this vehicle chain.
Definition: vehicle_base.h:652
VisualEffect
VisualEffect
Meaning of the various bits of the visual effect.
Definition: vehicle_base.h:77
BaseConsist::vehicle_flags
uint16 vehicle_flags
Used for gradual loading and other miscellaneous things (.
Definition: base_consist.h:31
Vehicle::SendToDepot
CommandCost SendToDepot(DoCommandFlag flags, DepotCommand command)
Send this vehicle to the depot using the given command(s).
Definition: vehicle.cpp:2372
NewGRFCache::company_information
uint32 company_information
Cache for NewGRF var 43.
Definition: vehicle_base.h:71
VehicleType
VehicleType
Available vehicle types.
Definition: vehicle_type.h:21
Vehicle::sprite_cache
MutableSpriteCache sprite_cache
Cache of sprites and values related to recalculating them, see MutableSpriteCache.
Definition: vehicle_base.h:343
Vehicle::IsOrderListShared
bool IsOrderListShared() const
Check if we share our orders with another vehicle.
Definition: vehicle_base.h:694
VE_TYPE_DEFAULT
@ VE_TYPE_DEFAULT
Use default from engine class.
Definition: vehicle_base.h:84
Vehicle::y_offs
int8 y_offs
y offset for vehicle sprite
Definition: vehicle_base.h:298
Vehicle::colourmap
SpriteID colourmap
NOSAVE: cached colour mapping.
Definition: vehicle_base.h:266
Vehicle::waiting_triggers
byte waiting_triggers
Triggers to be yet matched before rerandomizing the random bits.
Definition: vehicle_base.h:311
VESM_DIESEL
@ VESM_DIESEL
Diesel model.
Definition: vehicle_base.h:100
NewGRFCache::position_in_vehicle
uint32 position_in_vehicle
Cache for NewGRF var 4D.
Definition: vehicle_base.h:72
Vehicle::IncrementRealOrderIndex
void IncrementRealOrderIndex()
Advanced cur_real_order_index to the next real order, keeps care of the wrap-around and invalidates t...
Definition: vehicle_base.h:838
VF_BUILT_AS_PROTOTYPE
@ VF_BUILT_AS_PROTOTYPE
Vehicle is a prototype (accepted as exclusive preview).
Definition: vehicle_base.h:45
command_type.h
Vehicle::IterateWrapper
Iterable ensemble of orders.
Definition: vehicle_base.h:1024
Vehicle::direction
Direction direction
facing
Definition: vehicle_base.h:283
FreeUnitIDGenerator::cache
bool * cache
array of occupied unit id numbers
Definition: vehicle_base.h:1238
SpecializedVehicle::EXPECTED_TYPE
static const VehicleType EXPECTED_TYPE
Specialized type.
Definition: vehicle_base.h:1045
Vehicle::list
OrderList * list
Pointer to the order list for this vehicle.
Definition: vehicle_base.h:332
BaseConsist::cur_real_order_index
VehicleOrderID cur_real_order_index
The index to the current real (non-implicit) order.
Definition: base_consist.h:28
Vehicle::next_shared
Vehicle * next_shared
pointer to the next vehicle that shares the order
Definition: vehicle_base.h:230
texteff.hpp
Vehicle::FirstShared
Vehicle * FirstShared() const
Get the first vehicle of this vehicle chain.
Definition: vehicle_base.h:688
Vehicle::x_extent
byte x_extent
x-extent of vehicle bounding box
Definition: vehicle_base.h:292
Vehicle::Move
Vehicle * Move(int n)
Get the vehicle at offset n of this vehicle chain.
Definition: vehicle_base.h:636
NCVV_CONSIST_CARGO_INFORMATION
@ NCVV_CONSIST_CARGO_INFORMATION
This bit will be set if the NewGRF var 42 currently stored is valid.
Definition: vehicle_base.h:59
Vehicle::GetFirstEnginePart
const Vehicle * GetFirstEnginePart() const
Get the first part of an articulated engine.
Definition: vehicle_base.h:946
Vehicle::vcache
VehicleCache vcache
Cache of often used vehicle values.
Definition: vehicle_base.h:341
Vehicle::motion_counter
uint32 motion_counter
counter to occasionally play a vehicle sound.
Definition: vehicle_base.h:307
GVSF_FREE_WAGON
@ GVSF_FREE_WAGON
First in a wagon chain (in depot) (not used for road vehicles).
Definition: vehicle_base.h:116
VESM_NONE
@ VESM_NONE
No visual effect.
Definition: vehicle_base.h:98
MutableSpriteCache::revalidate_before_draw
bool revalidate_before_draw
We need to do a GetImage() and check bounds before drawing this sprite.
Definition: vehicle_base.h:191
Vehicle::hash_viewport_next
Vehicle * hash_viewport_next
NOSAVE: Next vehicle in the visual location hash.
Definition: vehicle_base.h:259
Pool
Base class for all pools.
Definition: pool_type.hpp:81
Vehicle::First
Vehicle * First() const
Get the first vehicle of this vehicle chain.
Definition: vehicle_base.h:607
Vehicle::cargo_age_counter
uint16 cargo_age_counter
Ticks till cargo is aged next.
Definition: vehicle_base.h:321
Vehicle::tick_counter
byte tick_counter
Increased by one for each tick.
Definition: vehicle_base.h:325
Vehicle::cargo_cap
uint16 cargo_cap
total capacity
Definition: vehicle_base.h:318
GroupID
uint16 GroupID
Type for all group identifiers.
Definition: group_type.h:13
engine_type.h
Vehicle::IncrementImplicitOrderIndex
void IncrementImplicitOrderIndex()
Increments cur_implicit_order_index, keeps care of the wrap-around and invalidates the GUI.
Definition: vehicle_base.h:814
NCVV_POSITION_SAME_ID_LENGTH
@ NCVV_POSITION_SAME_ID_LENGTH
This bit will be set if the NewGRF var 41 currently stored is valid.
Definition: vehicle_base.h:58
Vehicle::x_offs
int8 x_offs
x offset for vehicle sprite
Definition: vehicle_base.h:297
Vehicle::subspeed
byte subspeed
fractional speed
Definition: vehicle_base.h:305
Vehicle::GetAdvanceSpeed
static uint GetAdvanceSpeed(uint speed)
Determines the effective vehicle movement speed.
Definition: vehicle_base.h:415
Vehicle::GetFirstOrder
Order * GetFirstOrder() const
Get the first order of the vehicles order list.
Definition: vehicle_base.h:667
SpecializedVehicle::From
static T * From(Vehicle *v)
Converts a Vehicle to SpecializedVehicle with type checking.
Definition: vehicle_base.h:1164
Vehicle::z_extent
byte z_extent
z-extent of vehicle bounding box
Definition: vehicle_base.h:294
Vehicle::GetFirstEnginePart
Vehicle * GetFirstEnginePart()
Get the first part of an articulated engine.
Definition: vehicle_base.h:935
Vehicle::InvalidateNewGRFCacheOfChain
void InvalidateNewGRFCacheOfChain()
Invalidates cached NewGRF variables of all vehicles in the chain (after the current vehicle)
Definition: vehicle_base.h:473
PaletteID
uint32 PaletteID
The number of the palette.
Definition: gfx_type.h:18
FreeUnitIDGenerator::maxid
UnitID maxid
maximum ID at the moment of constructor call
Definition: vehicle_base.h:1239
OrderList
Shared order list linking together the linked list of orders and the list of vehicles sharing this or...
Definition: order_base.h:253
VF_SERVINT_IS_PERCENT
@ VF_SERVINT_IS_PERCENT
Service interval is percent.
Definition: vehicle_base.h:52
Vehicle::cargo_payment
CargoPayment * cargo_payment
The cargo payment we're currently in.
Definition: vehicle_base.h:255
Vehicle::NextShared
Vehicle * NextShared() const
Get the next vehicle of the shared vehicle chain.
Definition: vehicle_base.h:676
VE_DISABLE_WAGON_POWER
@ VE_DISABLE_WAGON_POWER
Flag to disable wagon power.
Definition: vehicle_base.h:91
SpecializedVehicle::IsValidID
static bool IsValidID(size_t index)
Tests whether given index is a valid index for vehicle of this type.
Definition: vehicle_base.h:1136
Vehicle::age
Date age
Age in days.
Definition: vehicle_base.h:270
Vehicle::HasArticulatedPart
bool HasArticulatedPart() const
Check if an engine has an articulated part.
Definition: vehicle_base.h:915
Vehicle::build_year
Year build_year
Year the vehicle has been built.
Definition: vehicle_base.h:269
Vehicle::profit_last_year
Money profit_last_year
Profit last year << 8, low 8 bits are fract.
Definition: vehicle_base.h:252
Vehicle::breakdown_chance
byte breakdown_chance
Current chance of breakdowns.
Definition: vehicle_base.h:278
GVSF_MULTIHEADED
@ GVSF_MULTIHEADED
Engine is multiheaded (not used for road vehicles).
Definition: vehicle_base.h:117
PalSpriteID
Combination of a palette sprite and a 'real' sprite.
Definition: gfx_type.h:22
Vehicle::unitnumber
UnitID unitnumber
unit number, for display purposes only
Definition: vehicle_base.h:302
SpecializedVehicle::GetIfValid
static T * GetIfValid(size_t index)
Returns vehicle if the index is a valid index for this vehicle type.
Definition: vehicle_base.h:1154
VehicleCache::cached_max_speed
uint16 cached_max_speed
Maximum speed of the consist (minimum of the max speed of all vehicles in the consist).
Definition: vehicle_base.h:122
VF_AUTOFILL_PRES_WAIT_TIME
@ VF_AUTOFILL_PRES_WAIT_TIME
Whether non-destructive auto-fill should preserve waiting times.
Definition: vehicle_base.h:48
SpecializedVehicle::Iterate
static Pool::IterateWrapper< T > Iterate(size_t from=0)
Returns an iterable ensemble of all valid vehicles of type T.
Definition: vehicle_base.h:1233
Vehicle::LoadOldVehicle
friend bool LoadOldVehicle(LoadgameState *ls, int num)
So we can set the proper next pointer while loading.
Definition: oldloader_sl.cpp:1221
NCVV_END
@ NCVV_END
End of the bits.
Definition: vehicle_base.h:62
VE_ADVANCED_EFFECT
@ VE_ADVANCED_EFFECT
Flag for advanced effects.
Definition: vehicle_base.h:90
Vehicle::x_bb_offs
int8 x_bb_offs
x offset of vehicle bounding box
Definition: vehicle_base.h:295
Vehicle::hash_viewport_prev
Vehicle ** hash_viewport_prev
NOSAVE: Previous vehicle in the visual location hash.
Definition: vehicle_base.h:260
Vehicle::breakdown_delay
byte breakdown_delay
Counter for managing breakdown length.
Definition: vehicle_base.h:276
Vehicle::Last
Vehicle * Last()
Get the last vehicle of this vehicle chain.
Definition: vehicle_base.h:613
Vehicle::coord
Rect coord
NOSAVE: Graphical bounding box of the vehicle, i.e. what to redraw on moves.
Definition: vehicle_base.h:257
Vehicle::NeedsServicing
bool NeedsServicing() const
Check if the vehicle needs to go to a depot in near future (if a opportunity presents itself) for ser...
Definition: vehicle.cpp:184
Vehicle::InvalidateNewGRFCache
void InvalidateNewGRFCache()
Invalidates cached NewGRF variables.
Definition: vehicle_base.h:464
network.h
Vehicle::subtype
byte subtype
subtype (Filled with values from AircraftSubType/DisasterSubType/EffectVehicleType/GroundVehicleSubty...
Definition: vehicle_base.h:338
VF_TIMETABLE_STARTED
@ VF_TIMETABLE_STARTED
Whether the vehicle has started running on the timetable yet.
Definition: vehicle_base.h:46
OrderList::GetFirstOrder
Order * GetFirstOrder() const
Get the first order of the order chain.
Definition: order_base.h:293
Vehicle::day_counter
byte day_counter
Increased by one for each day.
Definition: vehicle_base.h:324
BaseConsist::service_interval
uint16 service_interval
The interval for (automatic) servicing; either in days or %.
Definition: base_consist.h:26
VS_UNCLICKABLE
@ VS_UNCLICKABLE
Vehicle is not clickable by the user (shadow vehicles).
Definition: vehicle_base.h:33
NewGRFCacheValidValues
NewGRFCacheValidValues
Bit numbers used to indicate which of the NewGRFCache values are valid.
Definition: vehicle_base.h:56
GVSF_FRONT
@ GVSF_FRONT
Leading engine of a consist.
Definition: vehicle_base.h:112
Vehicle::NeedsAutorenewing
bool NeedsAutorenewing(const Company *c, bool use_renew_setting=true) const
Function to tell if a vehicle needs to be autorenewed.
Definition: vehicle.cpp:140
VF_PATHFINDER_LOST
@ VF_PATHFINDER_LOST
Vehicle's pathfinder is lost.
Definition: vehicle_base.h:50
Vehicle::progress
byte progress
The percentage (if divided by 256) this vehicle already crossed the tile unit.
Definition: vehicle_base.h:308
OverflowSafeInt< int64 >
CargoID
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
Vehicle::IsStoppedInDepot
bool IsStoppedInDepot() const
Check whether the vehicle is in the depot and stopped.
Definition: vehicle_base.h:529
Vehicle::FixOldVehicles
friend void FixOldVehicles()
Convert the old style vehicles into something that resembles the old new style savegames.
Definition: oldloader_sl.cpp:171
Vehicle::previous
Vehicle * previous
NOSAVE: pointer to the previous vehicle in the chain.
Definition: vehicle_base.h:227
INVALID_TILE
static const TileIndex INVALID_TILE
The very nice invalid tile marker.
Definition: tile_type.h:88
Vehicle::cargo_type
CargoID cargo_type
type of cargo this vehicle is carrying
Definition: vehicle_base.h:316
Vehicle::spritenum
byte spritenum
currently displayed sprite index 0xfd == custom sprite, 0xfe == custom second head sprite 0xff == res...
Definition: vehicle_base.h:291
NCVV_COMPANY_INFORMATION
@ NCVV_COMPANY_INFORMATION
This bit will be set if the NewGRF var 43 currently stored is valid.
Definition: vehicle_base.h:60
SlVehicleDisaster
Definition: vehicle_sl.cpp:917
FreeUnitIDGenerator::FreeUnitIDGenerator
FreeUnitIDGenerator(VehicleType type, CompanyID owner)
Initializes the structure.
Definition: vehicle.cpp:1753
SpecializedVehicle::GetLastEnginePart
T * GetLastEnginePart()
Get the last part of an articulated engine.
Definition: vehicle_base.h:1117
Vehicle::OnNewDay
virtual void OnNewDay()
Calls the new day handler of the vehicle.
Definition: vehicle_base.h:546
PalSpriteID::pal
PaletteID pal
The palette (use PAL_NONE) if not needed)
Definition: gfx_type.h:24
SpecializedVehicle::Previous
T * Previous() const
Get previous vehicle in the chain.
Definition: vehicle_base.h:1085
Trackdir
Trackdir
Enumeration for tracks and directions.
Definition: track_type.h:70
Vehicle::cargo_subtype
byte cargo_subtype
Used for livery refits (NewGRF variations)
Definition: vehicle_base.h:317
VEH_TRAIN
@ VEH_TRAIN
Train vehicle type.
Definition: vehicle_type.h:24
Pool::PoolItem<&_vehicle_pool >::IsValidID
static bool IsValidID(size_t index)
Tests whether given index can be used to get valid (non-nullptr) Titem.
Definition: pool_type.hpp:326
Vehicle::GetAdvanceDistance
uint GetAdvanceDistance()
Determines the vehicle "progress" needed for moving a step.
Definition: vehicle_base.h:427
Vehicle::GetOrder
Order * GetOrder(int index) const
Returns order 'index' of a vehicle or nullptr when it doesn't exists.
Definition: vehicle_base.h:874
BaseVehicle::type
VehicleType type
Type of vehicle.
Definition: vehicle_type.h:52
Vehicle::Tick
virtual bool Tick()
Calls the tick handler of the vehicle.
Definition: vehicle_base.h:541
Vehicle::UpdatePositionAndViewport
void UpdatePositionAndViewport()
Update the position of the vehicle, and update the viewport.
Definition: vehicle.cpp:1667
Vehicle::reliability
uint16 reliability
Reliability.
Definition: vehicle_base.h:273
SpecializedVehicle::First
T * First() const
Get the first vehicle in the chain.
Definition: vehicle_base.h:1061
Vehicle::UpdatePosition
void UpdatePosition()
Update the position of the vehicle.
Definition: vehicle.cpp:1596
Vehicle::hash_tile_prev
Vehicle ** hash_tile_prev
NOSAVE: Previous vehicle in the tile location hash.
Definition: vehicle_base.h:263
ExpensesType
ExpensesType
Types of expenses.
Definition: economy_type.h:157
Vehicle::HandleBreakdown
bool HandleBreakdown()
Handle all of the aspects of a vehicle breakdown This includes adding smoke and sounds,...
Definition: vehicle.cpp:1298
Vehicle::y_bb_offs
int8 y_bb_offs
y offset of vehicle bounding box
Definition: vehicle_base.h:296
free
static void free(const void *ptr)
Version of the standard free that accepts const pointers.
Definition: stdafx.h:460
NewGRFCache::position_consist_length
uint32 position_consist_length
Cache for NewGRF var 40.
Definition: vehicle_base.h:68
VESM_ELECTRIC
@ VESM_ELECTRIC
Electric model.
Definition: vehicle_base.h:101
Rect
Specification of a rectangle with absolute coordinates of all edges.
Definition: geometry_type.hpp:47
Company
Definition: company_base.h:115
group_type.h
Vehicle::GetNumOrders
VehicleOrderID GetNumOrders() const
Get the number of orders this vehicle has.
Definition: vehicle_base.h:700
BaseConsist
Various front vehicle properties that are preserved when autoreplacing, using order-backup or switchi...
Definition: base_consist.h:18
SpecializedVehicle::Last
T * Last()
Get the last vehicle in the chain.
Definition: vehicle_base.h:1067
InvalidateVehicleOrder
void InvalidateVehicleOrder(const Vehicle *v, int data)
Updates the widgets of a vehicle which contains the order-data.
Definition: order_cmd.cpp:250
VehicleSpriteSeq::GetBounds
void GetBounds(Rect *bounds) const
Determine shared bounds of all sprites.
Definition: vehicle.cpp:98
Vehicle::hash_tile_next
Vehicle * hash_tile_next
NOSAVE: Next vehicle in the tile location hash.
Definition: vehicle_base.h:262
Pool::PoolItem
Base class for all PoolItems.
Definition: pool_type.hpp:234
BaseConsist::CopyConsistPropertiesFrom
void CopyConsistPropertiesFrom(const BaseConsist *src)
Copy properties of other BaseConsist.
Definition: base_consist.cpp:22
Vehicle::DeleteUnreachedImplicitOrders
void DeleteUnreachedImplicitOrders()
Delete all implicit orders which were not reached.
Definition: vehicle.cpp:2060
Vehicle::first
Vehicle * first
NOSAVE: pointer to the first vehicle in the chain.
Definition: vehicle_base.h:228
Order::next
Order * next
Pointer to next order. If nullptr, end of list.
Definition: order_base.h:52
SpecializedVehicle::UpdateViewport
void UpdateViewport(bool force_update, bool update_delta)
Update vehicle sprite- and position caches.
Definition: vehicle_base.h:1186
Vehicle::fill_percent_te_id
TextEffectID fill_percent_te_id
a text-effect id to a loading indicator object
Definition: vehicle_base.h:301
Order
Definition: order_base.h:33
SpecializedVehicle::GetPrevVehicle
T * GetPrevVehicle() const
Get the previous real (non-articulated part) vehicle in the consist.
Definition: vehicle_base.h:1129
VS_SHADOW
@ VS_SHADOW
Vehicle is a shadow vehicle.
Definition: vehicle_base.h:36
INVALID_COORD
static const int32 INVALID_COORD
Sentinel for an invalid coordinate.
Definition: vehicle_base.h:1250
MutableSpriteCache::old_coord
Rect old_coord
Co-ordinates from the last valid bounding box.
Definition: vehicle_base.h:192
Vehicle::GetDisplayProfitLastYear
Money GetDisplayProfitLastYear() const
Gets the profit vehicle had last year.
Definition: vehicle_base.h:585
VE_OFFSET_CENTRE
@ VE_OFFSET_CENTRE
Value of offset corresponding to a position above the centre of the vehicle.
Definition: vehicle_base.h:80
SpecializedVehicle::GetFirstEnginePart
T * GetFirstEnginePart()
Get the first part of an articulated engine.
Definition: vehicle_base.h:1105
VE_TYPE_STEAM
@ VE_TYPE_STEAM
Steam plumes.
Definition: vehicle_base.h:85
RefitDesc
Simulated cargo type and capacity for prediction of future links.
Definition: vehicle_base.h:212
track_type.h
Vehicle::GetOrderStationLocation
virtual TileIndex GetOrderStationLocation(StationID station)
Determine the location for the station where the vehicle goes to next.
Definition: vehicle_base.h:753
order_func.h
Vehicle::MarkDirty
virtual void MarkDirty()
Marks the vehicles to be redrawn and updates cached variables.
Definition: vehicle_base.h:377
GRFFile
Dynamic data of a loaded NewGRF.
Definition: newgrf.h:105
Vehicle::refit_cap
uint16 refit_cap
Capacity left over from before last refit.
Definition: vehicle_base.h:319
NewGRFCache
Cached often queried (NewGRF) values.
Definition: vehicle_base.h:66
Vehicle::date_of_last_service
Date date_of_last_service
Last date the vehicle had a service at a depot.
Definition: vehicle_base.h:272
Vehicle::GetNextStoppingStation
StationIDStack GetNextStoppingStation() const
Get the next station the vehicle will stop at.
Definition: vehicle_base.h:712
RefitDesc::cargo
CargoID cargo
Cargo type the vehicle will be carrying.
Definition: vehicle_base.h:213
Vehicle::GetImage
virtual void GetImage(Direction direction, EngineImageType image_type, VehicleSpriteSeq *result) const
Gets the sprite to show for the given direction.
Definition: vehicle_base.h:455