OpenTTD
newgrf_town.h
Go to the documentation of this file.
1 /* $Id: newgrf_town.h 26085 2013-11-24 14:41:19Z frosch $ */
2 
3 /*
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/>.
8  */
9 
12 #ifndef NEWGRF_TOWN_H
13 #define NEWGRF_TOWN_H
14 
15 #include "town_type.h"
16 #include "newgrf_spritegroup.h"
17 
25  Town *t;
26  bool readonly;
27 
29 
30  virtual uint32 GetVariable(byte variable, uint32 parameter, bool *available) const;
31  virtual void StorePSA(uint reg, int32 value);
32 };
33 
37 
38  TownResolverObject(const struct GRFFile *grffile, Town *t, bool readonly);
39 
40  /* virtual */ ScopeResolver *GetScope(VarSpriteGroupScope scope = VSG_SCOPE_SELF, byte relative = 0)
41  {
42  switch (scope) {
43  case VSG_SCOPE_SELF: return &town_scope;
44  default: return ResolverObject::GetScope(scope, relative);
45  }
46  }
47 };
48 
49 #endif /* NEWGRF_TOWN_H */