OpenTTD Source
12.0-beta2
|
Station specification. More...
#include <newgrf_station.h>
Data Fields | |
GRFFilePropsBase< NUM_CARGO+3 > | grf_prop |
Properties related the the grf file. More... | |
StationClassID | cls_id |
The class to which this spec belongs. | |
StringID | name |
Name of this station. | |
byte | disallowed_platforms |
Bitmask of number of platforms available for the station. More... | |
byte | disallowed_lengths |
Bitmask of platform lengths available for the station. More... | |
std::vector< NewGRFSpriteLayout > | renderdata |
Number of tile layouts. More... | |
uint16 | cargo_threshold |
Cargo threshold for choosing between little and lots of cargo. More... | |
CargoTypes | cargo_triggers |
Bitmask of cargo types which cause trigger re-randomizing. | |
byte | callback_mask |
Bitmask of station callbacks that have to be called. | |
byte | flags |
Bitmask of flags, bit 0: use different sprite set; bit 1: divide cargo about by station size. | |
byte | pylons |
Bitmask of base tiles (0 - 7) which should contain elrail pylons. | |
byte | wires |
Bitmask of base tiles (0 - 7) which should contain elrail wires. | |
byte | blocked |
Bitmask of base tiles (0 - 7) which are blocked to trains. | |
AnimationInfo | animation |
std::vector< std::vector< std::vector< byte > > > | layouts |
Custom platform layouts. More... | |
Station specification.
Definition at line 113 of file newgrf_station.h.
uint16 StationSpec::cargo_threshold |
Cargo threshold for choosing between little and lots of cargo.
Definition at line 154 of file newgrf_station.h.
byte StationSpec::disallowed_lengths |
Bitmask of platform lengths available for the station.
0..6 correspond to 1..7, while bit 7 corresponds to >7 tiles long.
Definition at line 138 of file newgrf_station.h.
byte StationSpec::disallowed_platforms |
Bitmask of number of platforms available for the station.
0..6 correspond to 1..7, while bit 7 corresponds to >7 platforms.
Definition at line 133 of file newgrf_station.h.
Referenced by BuildRailStationWindow::CheckSelectedSize().
GRFFilePropsBase<NUM_CARGO + 3> StationSpec::grf_prop |
Properties related the the grf file.
NUM_CARGO real cargo plus three pseudo cargo sprite groups. Used for obtaining the sprite offset of custom sprites, and for evaluating callbacks.
Definition at line 125 of file newgrf_station.h.
Referenced by AllocateSpecToStation(), and StationResolverObject::GetDebugID().
std::vector<std::vector<std::vector<byte> > > StationSpec::layouts |
Custom platform layouts.
This is a 2D array containing an array of tiles. 1st layer is platform lengths. 2nd layer is tracks (width). These can be sparsely populated, and the upper limit is not defined but limited to 255.
Definition at line 176 of file newgrf_station.h.
Referenced by GetStationLayout().
std::vector<NewGRFSpriteLayout> StationSpec::renderdata |
Number of tile layouts.
A minimum of 8 is required is required for stations. 0-1 = plain platform 2-3 = platform with building 4-5 = platform with roof, left side 6-7 = platform with roof, right side Array of tile layouts.
Definition at line 148 of file newgrf_station.h.