|
OpenTTD Source 20251104-master-g3befbdd52f
|
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.
|
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 BaseStation::random_bits, and 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 Station::airport, BaseBitSet< Timpl, Tvalue_type, Tstorage, Tmask >::base(), BaseStation::build_date, TimerGameConst< struct Calendar >::DAYS_TILL_ORIGINAL_BASE_YEAR, BaseStation::facilities, GetBadgeVariableResult(), PersistentStorageArray< TYPE, SIZE >::GetValue(), ResolverObject::grffile, layout, Airport::psa, 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 Station::airport, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem<&_persistent_storage_pool >::CanAllocateItem(), ResolverObject::grffile, Airport::psa, ScopeResolver::ro, st, PersistentStorageArray< TYPE, SIZE >::StoreValue(), and OrthogonalTileArea::tile.
| uint8_t AirportScopeResolver::layout |
Layout of the airport to build.
Definition at line 160 of file newgrf_airport.h.
Referenced by GetVariable().
| const AirportSpec* AirportScopeResolver::spec |
AirportSpec for which the callback is run.
Definition at line 159 of file newgrf_airport.h.
Referenced by AirportResolverObject::GetDebugID().
| 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 GetRandomBits(), AirportResolverObject::GetTown(), 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 AirportResolverObject::GetTown().