OpenTTD Source  20240917-master-g9ab0a47812
newgrf_airporttiles.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef NEWGRF_AIRPORTTILES_H
11 #define NEWGRF_AIRPORTTILES_H
12 
13 #include "airport.h"
14 #include "station_map.h"
15 #include "newgrf_animation_type.h"
16 #include "newgrf_commons.h"
17 #include "newgrf_spritegroup.h"
18 #include "station_base.h"
19 
22  struct Station *st;
23  uint8_t airport_id;
25  const AirportTileSpec *ats;
26 
34  : ScopeResolver(ro), st(st), tile(tile), ats(ats)
35  {
36  assert(st != nullptr);
37  this->airport_id = st->airport.type;
38  }
39 
40  uint32_t GetRandomBits() const override;
41  uint32_t GetVariable(uint8_t variable, [[maybe_unused]] uint32_t parameter, bool &available) const override;
42 };
43 
48 
51 
52  ScopeResolver *GetScope(VarSpriteGroupScope scope = VSG_SCOPE_SELF, uint8_t relative = 0) override
53  {
54  switch (scope) {
55  case VSG_SCOPE_SELF: return &tiles_scope;
56  case VSG_SCOPE_PARENT: return &airport_scope;
57  default: return ResolverObject::GetScope(scope, relative);
58  }
59  }
60 
61  GrfSpecFeature GetFeature() const override;
62  uint32_t GetDebugID() const override;
63 };
64 
71  uint8_t callback_mask;
73  bool enabled;
75 
76  static const AirportTileSpec *Get(StationGfx gfx);
77  static const AirportTileSpec *GetByTile(TileIndex tile);
78 
79  static void ResetAirportTiles();
80 
81 private:
82  static AirportTileSpec tiles[NUM_AIRPORTTILES];
83 
84  friend void AirportTileOverrideManager::SetEntitySpec(const AirportTileSpec *airpts);
85 };
86 
87 void AnimateAirportTile(TileIndex tile);
88 void AirportTileAnimationTrigger(Station *st, TileIndex tile, AirpAnimationTrigger trigger, CargoID cargo_type = INVALID_CARGO);
89 void AirportAnimationTrigger(Station *st, AirpAnimationTrigger trigger, CargoID cargo_type = INVALID_CARGO);
90 bool DrawNewAirportTile(TileInfo *ti, Station *st, const AirportTileSpec *airts);
91 
92 #endif /* NEWGRF_AIRPORTTILES_H */
AirportTileScopeResolver::tile
TileIndex tile
Tile for the callback, only valid for airporttile callbacks.
Definition: newgrf_airporttiles.h:24
AirportTileResolverObject::GetScope
ScopeResolver * GetScope(VarSpriteGroupScope scope=VSG_SCOPE_SELF, uint8_t relative=0) override
Get a resolver for the scope.
Definition: newgrf_airporttiles.h:52
newgrf_commons.h
TileInfo
Tile information, used while rendering the tile.
Definition: tile_cmd.h:43
Station
Station data structure.
Definition: station_base.h:439
StringID
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
Definition: strings_type.h:16
VarSpriteGroupScope
VarSpriteGroupScope
Definition: newgrf_spritegroup.h:97
AirportTileSpec::animation_special_flags
uint8_t animation_special_flags
Extra flags to influence the animation.
Definition: newgrf_airporttiles.h:72
AirportTileResolverObject::AirportTileResolverObject
AirportTileResolverObject(const AirportTileSpec *ats, TileIndex tile, Station *st, CallbackID callback=CBID_NO_CALLBACK, uint32_t callback_param1=0, uint32_t callback_param2=0)
Constructor of the resolver for airport tiles.
Definition: newgrf_airporttiles.cpp:215
AirportTileScopeResolver::st
struct Station * st
Station of the airport for which the callback is run, or nullptr for build gui.
Definition: newgrf_airporttiles.h:22
ResolverObject
Interface for SpriteGroup-s to access the gamestate.
Definition: newgrf_spritegroup.h:308
AnimationInfo
Information about animation.
Definition: newgrf_animation_type.h:18
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
CallbackID
CallbackID
List of implemented NewGRF callbacks.
Definition: newgrf_callbacks.h:20
ScopeResolver
Interface to query and set values specific to a single VarSpriteGroupScope (action 2 scope).
Definition: newgrf_spritegroup.h:289
AirportTileSpec::ResetAirportTiles
static void ResetAirportTiles()
This function initializes the tile array of AirportTileSpec.
Definition: newgrf_airporttiles.cpp:58
AirportTileSpec
Defines the data structure of each individual tile of an airport.
Definition: newgrf_airporttiles.h:68
AirportTileResolverObject::airport_scope
AirportScopeResolver airport_scope
Scope resolver for the airport owning the tile.
Definition: newgrf_airporttiles.h:47
VSG_SCOPE_SELF
@ VSG_SCOPE_SELF
Resolved object itself.
Definition: newgrf_spritegroup.h:100
StationGfx
uint8_t StationGfx
Copy from station_map.h.
Definition: newgrf_airport.h:22
CBID_NO_CALLBACK
@ CBID_NO_CALLBACK
Set when using the callback resolve system, but not to resolve a callback.
Definition: newgrf_callbacks.h:22
AirportTileScopeResolver::airport_id
uint8_t airport_id
Type of airport for which the callback is run.
Definition: newgrf_airporttiles.h:23
GRFFileProps
Data related to the handling of grf files.
Definition: newgrf_commons.h:317
AirportTileScopeResolver
Scope resolver for handling the tiles of an airport.
Definition: newgrf_airporttiles.h:21
Station::airport
Airport airport
Tile area the airport covers.
Definition: station_base.h:453
NUM_AIRPORTTILES
static const uint NUM_AIRPORTTILES
Total number of airport tiles.
Definition: airport.h:23
AirportTileSpec::GetByTile
static const AirportTileSpec * GetByTile(TileIndex tile)
Retrieve airport tile spec for the given airport tile.
Definition: newgrf_airporttiles.cpp:50
AirportTileResolverObject::GetDebugID
uint32_t GetDebugID() const override
Get an identifier for the item being resolved.
Definition: newgrf_airporttiles.cpp:229
AirportTileScopeResolver::GetRandomBits
uint32_t GetRandomBits() const override
Get a few random bits.
Definition: newgrf_airporttiles.cpp:201
AirportTileScopeResolver::GetVariable
uint32_t GetVariable(uint8_t variable, [[maybe_unused]] uint32_t parameter, bool &available) const override
Get a variable value.
Definition: newgrf_airporttiles.cpp:162
newgrf_spritegroup.h
GrfSpecFeature
GrfSpecFeature
Definition: newgrf.h:67
AirportScopeResolver
Resolver for the airport scope.
Definition: newgrf_airport.h:150
AirportTileResolverObject::tiles_scope
AirportTileScopeResolver tiles_scope
Scope resolver for the tiles.
Definition: newgrf_airporttiles.h:46
station_base.h
ResolverObject::callback_param2
uint32_t callback_param2
Second parameter (var 18) of the callback.
Definition: newgrf_spritegroup.h:328
VSG_SCOPE_PARENT
@ VSG_SCOPE_PARENT
Related object of the resolved one.
Definition: newgrf_spritegroup.h:101
AirportTileSpec::enabled
bool enabled
entity still available (by default true). newgrf can disable it, though
Definition: newgrf_airporttiles.h:73
ResolverObject::callback
CallbackID callback
Callback being resolved.
Definition: newgrf_spritegroup.h:326
ResolverObject::callback_param1
uint32_t callback_param1
First parameter (var 10) of the callback.
Definition: newgrf_spritegroup.h:327
CargoID
uint8_t CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:22
station_map.h
ResolverObject::GetScope
virtual ScopeResolver * GetScope(VarSpriteGroupScope scope=VSG_SCOPE_SELF, uint8_t relative=0)
Get a resolver for the scope.
Definition: newgrf_spritegroup.cpp:135
AirportTileScopeResolver::AirportTileScopeResolver
AirportTileScopeResolver(ResolverObject &ro, const AirportTileSpec *ats, TileIndex tile, Station *st)
Constructor of the scope resolver specific for airport tiles.
Definition: newgrf_airporttiles.h:33
airport.h
AirportTileSpec::callback_mask
uint8_t callback_mask
Bitmask telling which grf callback is set.
Definition: newgrf_airporttiles.h:71
AirportTileResolverObject
Resolver for tiles of an airport.
Definition: newgrf_airporttiles.h:45
ScopeResolver::ro
ResolverObject & ro
Surrounding resolver object.
Definition: newgrf_spritegroup.h:290
AirpAnimationTrigger
AirpAnimationTrigger
Animation triggers for airport tiles.
Definition: newgrf_animation_type.h:46
AirportTileSpec::name
StringID name
Tile Subname string, land information on this tile will give you "AirportName (TileSubname)".
Definition: newgrf_airporttiles.h:70
AirportTileSpec::Get
static const AirportTileSpec * Get(StationGfx gfx)
Retrieve airport tile spec for the given airport tile.
Definition: newgrf_airporttiles.cpp:37
Airport::type
uint8_t type
Type of this airport,.
Definition: station_base.h:294
newgrf_animation_type.h
AirportTileSpec::grf_prop
GRFFileProps grf_prop
properties related the the grf file
Definition: newgrf_airporttiles.h:74
AirportTileResolverObject::GetFeature
GrfSpecFeature GetFeature() const override
Get the feature number being resolved for.
Definition: newgrf_airporttiles.cpp:224
AirportTileSpec::animation
AnimationInfo animation
Information about the animation.
Definition: newgrf_airporttiles.h:69