From c417efc962a2d452bf52842b615bf3e09ecef7d6 Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 10 Nov 2012 20:41:08 +0000 Subject: (svn r24684) -Codechange: Add resolver classes for stations. --- src/table/newgrf_debug_data.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/table/newgrf_debug_data.h') diff --git a/src/table/newgrf_debug_data.h b/src/table/newgrf_debug_data.h index 8a669fee5..064b6a9a5 100644 --- a/src/table/newgrf_debug_data.h +++ b/src/table/newgrf_debug_data.h @@ -126,7 +126,12 @@ class NIHStation : public NIHelper { const void *GetSpec(uint index) const { return GetStationSpec(index); } void SetStringParameters(uint index) const { this->SetObjectAtStringParameters(STR_STATION_NAME, GetStationIndex(index), index); } uint32 GetGRFID(uint index) const { return (this->IsInspectable(index)) ? GetStationSpec(index)->grf_prop.grffile->grfid : 0; } - void Resolve(ResolverObject *ro, uint32 index) const { extern void GetStationResolver(ResolverObject *ro, uint index); GetStationResolver(ro, index); } + + /* virtual */ uint Resolve(uint index, uint var, uint param, bool *avail) const + { + StationResolverObject ro(GetStationSpec(index), Station::GetByTile(index), index); + return ro.GetScope(ro.scope)->GetVariable(var, param, avail); + } }; static const NIFeature _nif_station = { -- cgit v1.2.3-54-g00ecf