4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file newgrf_roadtype.h NewGRF handling of road types. */
12 #ifndef NEWGRF_ROADTYPE_H
13 #define NEWGRF_ROADTYPE_H
16 #include "newgrf_commons.h"
17 #include "newgrf_spritegroup.h"
19 /** Resolver for the railtype scope. */
20 struct RoadTypeScopeResolver
: public ScopeResolver
{
21 TileIndex tile
; ///< Tracktile. For track on a bridge this is the southern bridgehead.
22 TileContext context
; ///< Are we resolving sprites for the upper halftile, or on a bridge?
24 RoadTypeScopeResolver(ResolverObject
&ro
, TileIndex tile
, TileContext context
);
26 /* virtual */ uint32
GetRandomBits() const;
27 /* virtual */ uint32
GetVariable(byte variable
, uint32 parameter
, bool *available
) const;
30 /** Resolver object for road types. */
31 struct RoadTypeResolverObject
: public ResolverObject
{
32 RoadTypeScopeResolver roadtype_scope
; ///< Resolver for the roadtype scope.
34 RoadTypeResolverObject(const RoadtypeInfo
*rti
, TileIndex tile
, TileContext context
, RoadTypeSpriteGroup rtsg
, uint32 param1
= 0, uint32 param2
= 0);
36 /* virtual */ ScopeResolver
*GetScope(VarSpriteGroupScope scope
= VSG_SCOPE_SELF
, byte relative
= 0)
39 case VSG_SCOPE_SELF
: return &this->roadtype_scope
;
40 default: return ResolverObject::GetScope(scope
, relative
);
44 /* virtual */ const SpriteGroup
*ResolveReal(const RealSpriteGroup
*group
) const;
47 SpriteID
GetCustomRoadSprite(const RoadtypeInfo
*rti
, TileIndex tile
, RoadTypeSpriteGroup rtsg
, TileContext context
= TCX_NORMAL
, uint
*num_results
= NULL
);
49 uint8
GetReverseRoadTypeTranslation(RoadTypeIdentifier rtid
, const GRFFile
*grffile
);
51 #endif /* NEWGRF_ROADTYPE_H */