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/>.
8 /** @file newgrf_airporttiles.h NewGRF handling of airport tiles. */
10 #ifndef NEWGRF_AIRPORTTILES_H
11 #define NEWGRF_AIRPORTTILES_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"
20 /** Scope resolver for handling the tiles of an airport. */
21 struct AirportTileScopeResolver
: public ScopeResolver
{
22 struct Station
*st
; ///< %Station of the airport for which the callback is run, or \c nullptr for build gui.
23 byte airport_id
; ///< Type of airport for which the callback is run.
24 TileIndex tile
; ///< Tile for the callback, only valid for airporttile callbacks.
25 const AirportTileSpec
*ats
;
28 * Constructor of the scope resolver specific for airport tiles.
29 * @param ats Specification of the airport tiles.
30 * @param tile %Tile for the callback, only valid for airporttile callbacks.
31 * @param st Station of the airport for which the callback is run, or \c nullptr for build gui.
33 AirportTileScopeResolver(ResolverObject
&ro
, const AirportTileSpec
*ats
, TileIndex tile
, Station
*st
)
34 : ScopeResolver(ro
), st(st
), tile(tile
), ats(ats
)
36 assert(st
!= nullptr);
37 this->airport_id
= st
->airport
.type
;
40 uint32
GetRandomBits() const override
;
41 uint32
GetVariable(byte variable
, uint32 parameter
, bool *available
) const override
;
44 /** Resolver for tiles of an airport. */
45 struct AirportTileResolverObject
: public ResolverObject
{
46 AirportTileScopeResolver tiles_scope
; ///< Scope resolver for the tiles.
48 AirportTileResolverObject(const AirportTileSpec
*ats
, TileIndex tile
, Station
*st
,
49 CallbackID callback
= CBID_NO_CALLBACK
, uint32 callback_param1
= 0, uint32 callback_param2
= 0);
51 ScopeResolver
*GetScope(VarSpriteGroupScope scope
= VSG_SCOPE_SELF
, byte relative
= 0) override
54 case VSG_SCOPE_SELF
: return &tiles_scope
;
55 default: return ResolverObject::GetScope(scope
, relative
);
59 GrfSpecFeature
GetFeature() const override
;
60 uint32
GetDebugID() const override
;
64 * Defines the data structure of each individual tile of an airport.
66 struct AirportTileSpec
{
67 AnimationInfo animation
; ///< Information about the animation.
68 StringID name
; ///< Tile Subname string, land information on this tile will give you "AirportName (TileSubname)"
69 uint8 callback_mask
; ///< Bitmask telling which grf callback is set
70 uint8 animation_special_flags
; ///< Extra flags to influence the animation
71 bool enabled
; ///< entity still available (by default true). newgrf can disable it, though
72 GRFFileProps grf_prop
; ///< properties related the the grf file
74 static const AirportTileSpec
*Get(StationGfx gfx
);
75 static const AirportTileSpec
*GetByTile(TileIndex tile
);
77 static void ResetAirportTiles();
80 static AirportTileSpec tiles
[NUM_AIRPORTTILES
];
82 friend void AirportTileOverrideManager::SetEntitySpec(const AirportTileSpec
*airpts
);
85 StationGfx
GetTranslatedAirportTileID(StationGfx gfx
);
86 void AnimateAirportTile(TileIndex tile
);
87 void AirportTileAnimationTrigger(Station
*st
, TileIndex tile
, AirpAnimationTrigger trigger
, CargoID cargo_type
= CT_INVALID
);
88 void AirportAnimationTrigger(Station
*st
, AirpAnimationTrigger trigger
, CargoID cargo_type
= CT_INVALID
);
89 bool DrawNewAirportTile(TileInfo
*ti
, Station
*st
, StationGfx gfx
, const AirportTileSpec
*airts
);
91 #endif /* NEWGRF_AIRPORTTILES_H */