|
OpenTTD Source 20260208-master-g43af8e94d0
|
Resolver for the airport scope. More...
#include <newgrf_airport.h>
Public Member Functions | |
| AirportScopeResolver (ResolverObject &ro, TileIndex tile, Station *st, const AirportSpec *spec, uint8_t layout) | |
| Constructor of the scope resolver for an airport. | |
| uint32_t | GetRandomBits () const override |
| Get a few random bits. | |
| uint32_t | GetVariable (uint8_t variable, uint32_t parameter, bool &available) const override |
| Get a variable value. | |
| void | StorePSA (uint pos, int32_t value) override |
| Store a value into the object's persistent storage. | |
| Public Member Functions inherited from ScopeResolver | |
| ScopeResolver (ResolverObject &ro) | |
| virtual uint32_t | GetRandomTriggers () const |
| Get the triggers. | |
Data Fields | |
| struct Station * | st |
Station of the airport for which the callback is run, or nullptr for build gui. | |
| const AirportSpec * | spec |
| AirportSpec for which the callback is run. | |
| uint8_t | layout |
| Layout of the airport to build. | |
| TileIndex | tile |
| Tile for the callback, only valid for airporttile callbacks. | |
| Data Fields inherited from ScopeResolver | |
| ResolverObject & | ro |
| Surrounding resolver object. | |
Resolver for the airport scope.
Definition at line 157 of file newgrf_airport.h.
|
inline |
Constructor of the scope resolver for an airport.
| ro | Surrounding resolver. |
| tile | Tile for the callback, only valid for airporttile callbacks. |
| st | Station of the airport for which the callback is run, or nullptr for build gui. |
| spec | AirportSpec for which the callback is run. |
| layout | Layout of the airport to build. |
Definition at line 171 of file newgrf_airport.h.
References layout, ScopeResolver::ro, spec, st, and tile.
|
overridevirtual |
Get a few random bits.
Default implementation has no random bits.
Reimplemented from ScopeResolver.
Definition at line 195 of file newgrf_airport.cpp.
References st.
|
overridevirtual |
Get a variable value.
Default implementation has no available variables.
| variable | Variable to read | |
| parameter | Parameter for 60+x variables | |
| [out] | available | Set to false, in case the variable does not exist. |
Reimplemented from ScopeResolver.
Definition at line 161 of file newgrf_airport.cpp.
References ClampTo(), TimerGameConst< struct Calendar >::DAYS_TILL_ORIGINAL_BASE_YEAR, GetBadgeVariableResult(), layout, ScopeResolver::ro, and st.
|
overridevirtual |
Store a value into the object's persistent storage.
| pos | Position in the persistent storage to use. |
| value | Value to store. |
Reimplemented from ScopeResolver.
Definition at line 205 of file newgrf_airport.cpp.
References ScopeResolver::ro, and st.
| uint8_t AirportScopeResolver::layout |
Layout of the airport to build.
Definition at line 160 of file newgrf_airport.h.
Referenced by AirportScopeResolver(), and GetVariable().
| const AirportSpec* AirportScopeResolver::spec |
AirportSpec for which the callback is run.
Definition at line 159 of file newgrf_airport.h.
Referenced by AirportScopeResolver().
| struct Station* AirportScopeResolver::st |
Station of the airport for which the callback is run, or nullptr for build gui.
Definition at line 158 of file newgrf_airport.h.
Referenced by AirportScopeResolver(), GetRandomBits(), GetVariable(), and StorePSA().
| TileIndex AirportScopeResolver::tile |
Tile for the callback, only valid for airporttile callbacks.
Definition at line 161 of file newgrf_airport.h.
Referenced by AirportScopeResolver().