|
OpenTTD Source
1.10.0-RC1
|
Functions related to order backups. More...
#include "core/pool_type.hpp"#include "group_type.h"#include "tile_type.h"#include "vehicle_type.h"#include "base_consist.h"Go to the source code of this file.
Data Structures | |
| struct | OrderBackup |
| Data for backing up an order of a vehicle so it can be restored after a vehicle is rebuilt in the same depot. More... | |
Typedefs | |
| typedef uint8 | OrderBackupID |
| Unique identifier for an order backup. More... | |
| typedef Pool< OrderBackup, OrderBackupID, 1, 256 > | OrderBackupPool |
| The pool type for order backups. More... | |
Variables | |
| OrderBackupPool | _order_backup_pool |
| The pool with order backups. More... | |
| static const uint32 | MAKE_ORDER_BACKUP_FLAG = 1U << 31 |
| Flag to pass to the vehicle construction command when an order should be preserved. More... | |
Functions related to order backups.
Definition in file order_backup.h.
| typedef uint8 OrderBackupID |
Unique identifier for an order backup.
Definition at line 20 of file order_backup.h.
| typedef Pool<OrderBackup, OrderBackupID, 1, 256> OrderBackupPool |
The pool type for order backups.
Definition at line 21 of file order_backup.h.
| OrderBackupPool _order_backup_pool |
The pool with order backups.
|
static |
Flag to pass to the vehicle construction command when an order should be preserved.
Definition at line 29 of file order_backup.h.
Referenced by CmdSellRailWagon(), and CmdSellVehicle().