OpenTTD Source
12.0-beta2
|
Class for storing amounts of cargo. More...
#include <cargo_type.h>
Public Member Functions | |
CargoArray () | |
Default constructor. | |
void | Clear () |
Reset all entries. | |
uint & | operator[] (CargoID cargo) |
Read/write access to an amount of a specific cargo type. More... | |
const uint & | operator[] (CargoID cargo) const |
Read-only access to an amount of a specific cargo type. More... | |
template<typename T > | |
const T | GetSum () const |
Get the sum of all cargo amounts. More... | |
byte | GetCount () const |
Get the amount of cargos that have an amount. More... | |
Private Attributes | |
uint | amount [NUM_CARGO] |
Amount of each type of cargo. | |
Class for storing amounts of cargo.
Definition at line 82 of file cargo_type.h.
|
inline |
Get the amount of cargos that have an amount.
Definition at line 135 of file cargo_type.h.
References lengthof.
|
inline |
Get the sum of all cargo amounts.
Definition at line 122 of file cargo_type.h.
Referenced by GetTotalCapacityOfArticulatedParts().
|
inline |
Read/write access to an amount of a specific cargo type.
cargo | Cargo type to access. |
Definition at line 103 of file cargo_type.h.
|
inline |
Read-only access to an amount of a specific cargo type.
cargo | Cargo type to access. |
Definition at line 112 of file cargo_type.h.