OpenTTD Source 20250511-master-gf2b48bad79
IndustriesResolverObject Struct Reference

Resolver for industries. More...

#include <newgrf_industries.h>

Inheritance diagram for IndustriesResolverObject:
ResolverObject

Public Member Functions

 IndustriesResolverObject (TileIndex tile, Industry *indus, IndustryType type, uint32_t random_bits=0, CallbackID callback=CBID_NO_CALLBACK, uint32_t callback_param1=0, uint32_t callback_param2=0)
 Constructor of the industries resolver.
 
TownScopeResolverGetTown ()
 Get or create the town scope object associated with the industry.
 
ScopeResolverGetScope (VarSpriteGroupScope scope=VSG_SCOPE_SELF, uint8_t relative=0) override
 Get a resolver for the scope.
 
GrfSpecFeature GetFeature () const override
 Get the feature number being resolved for.
 
uint32_t GetDebugID () const override
 Get an identifier for the item being resolved.
 
- Public Member Functions inherited from ResolverObject
 ResolverObject (const GRFFile *grffile, CallbackID callback=CBID_NO_CALLBACK, uint32_t callback_param1=0, uint32_t callback_param2=0)
 Resolver constructor.
 
ResolverResult DoResolve ()
 
int32_t GetRegister (uint i) const
 Gets the value of a so-called newgrf "register".
 
void SetRegister (uint i, int32_t value)
 Sets the value of a so-called newgrf "register".
 
template<class TSpriteGroup >
const TSpriteGroup * Resolve ()
 Resolve SpriteGroup.
 
void ResolveRerandomisation ()
 Resolve bits to be rerandomised.
 
CallbackResult ResolveCallback (std::span< int32_t > regs100)
 Resolve callback.
 
virtual const SpriteGroupResolveReal (const RealSpriteGroup &group) const
 Get the real sprites of the grf.
 
uint32_t GetWaitingRandomTriggers () const
 Used by RandomizedSpriteGroup: Triggers for rerandomisation.
 
void AddUsedRandomTriggers (uint32_t triggers)
 Used by RandomizedSpriteGroup: Consume triggers.
 
uint32_t GetReseedSum () const
 Returns the OR-sum of all bits that need reseeding independent of the scope they were accessed with.
 

Data Fields

IndustriesScopeResolver industries_scope
 Scope resolver for the industry.
 
std::optional< TownScopeResolvertown_scope = std::nullopt
 Scope resolver for the associated town (if needed and available, else std::nullopt).
 
- Data Fields inherited from ResolverObject
ScopeResolver default_scope
 Default implementation of the grf scope.
 
CallbackID callback {}
 Callback being resolved.
 
uint32_t callback_param1 = 0
 First parameter (var 10) of the callback.
 
uint32_t callback_param2 = 0
 Second parameter (var 18) of the callback.
 
uint32_t last_value = 0
 Result of most recent DeterministicSpriteGroup (including procedure calls)
 
std::array< uint32_t, VSG_END > reseed
 Collects bits to rerandomise while triggering triggers.
 
const GRFFilegrffile = nullptr
 GRFFile the resolved SpriteGroup belongs to.
 
const SpriteGrouproot_spritegroup = nullptr
 Root SpriteGroup to use for resolving.
 

Additional Inherited Members

- Protected Attributes inherited from ResolverObject
uint32_t waiting_random_triggers = 0
 Waiting triggers to be used by any rerandomisation. (scope independent)
 
uint32_t used_random_triggers = 0
 Subset of cur_triggers, which actually triggered some rerandomisation. (scope independent)
 

Detailed Description

Resolver for industries.

Definition at line 42 of file newgrf_industries.h.

Constructor & Destructor Documentation

◆ IndustriesResolverObject()

IndustriesResolverObject::IndustriesResolverObject ( TileIndex  tile,
Industry indus,
IndustryType  type,
uint32_t  random_bits = 0,
CallbackID  callback = CBID_NO_CALLBACK,
uint32_t  callback_param1 = 0,
uint32_t  callback_param2 = 0 
)

Constructor of the industries resolver.

Parameters
tileTile owned by the industry.
indusIndustry being resolved.
typeType of the industry.
random_bitsRandom bits of the new industry.
callbackCallback ID.
callback_param1First parameter (var 10) of the callback.
callback_param2Second parameter (var 18) of the callback.

Definition at line 480 of file newgrf_industries.cpp.

References GetIndustrySpec(), StandardGRFFileProps::GetSpriteGroup(), IndustrySpec::grf_prop, Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem< Tpool >::index, and ResolverObject::root_spritegroup.

Member Function Documentation

◆ GetDebugID()

uint32_t IndustriesResolverObject::GetDebugID ( ) const
overridevirtual

Get an identifier for the item being resolved.

This function is mainly intended for the callback profiling feature, and should return an identifier recognisable by the NewGRF developer.

Reimplemented from ResolverObject.

Definition at line 514 of file newgrf_industries.cpp.

References GetIndustrySpec(), IndustrySpec::grf_prop, industries_scope, GRFFilePropsBase::local_id, and IndustriesScopeResolver::type.

◆ GetFeature()

GrfSpecFeature IndustriesResolverObject::GetFeature ( ) const
overridevirtual

Get the feature number being resolved for.

This function is mainly intended for the callback profiling feature.

Reimplemented from ResolverObject.

Definition at line 509 of file newgrf_industries.cpp.

◆ GetScope()

ScopeResolver * IndustriesResolverObject::GetScope ( VarSpriteGroupScope  scope = VSG_SCOPE_SELF,
uint8_t  relative = 0 
)
inlineoverridevirtual

Get a resolver for the scope.

Returns
The resolver for the requested scope.

Reimplemented from ResolverObject.

Definition at line 51 of file newgrf_industries.h.

References ResolverObject::GetScope(), GetTown(), industries_scope, VSG_SCOPE_PARENT, and VSG_SCOPE_SELF.

Referenced by NIHIndustry::Resolve().

◆ GetTown()

TownScopeResolver * IndustriesResolverObject::GetTown ( )

Get or create the town scope object associated with the industry.

Returns
The associated town scope, if it exists.

Definition at line 492 of file newgrf_industries.cpp.

References ClosestTownFromTile(), Pool< Titem, Tindex, Tgrowth_step, Tpool_type, Tcache >::PoolItem< Tpool >::index, industries_scope, IndustriesScopeResolver::industry, INVALID_TILE, IndustriesScopeResolver::tile, Industry::town, and town_scope.

Referenced by GetScope().

Field Documentation

◆ industries_scope

IndustriesScopeResolver IndustriesResolverObject::industries_scope

Scope resolver for the industry.

Definition at line 43 of file newgrf_industries.h.

Referenced by GetDebugID(), GetScope(), and GetTown().

◆ town_scope

std::optional<TownScopeResolver> IndustriesResolverObject::town_scope = std::nullopt

Scope resolver for the associated town (if needed and available, else std::nullopt).

Definition at line 44 of file newgrf_industries.h.

Referenced by GetTown().


The documentation for this struct was generated from the following files: