(svn r27953) -Cleanup: Adjust other languages for r27952
[openttd.git] / src / newgrf_town.cpp
blob2f48eb757d072441025d31662ed59100806eb67c
1 /* $Id$ */
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 */
10 /** @file newgrf_town.cpp Implementation of the town part of NewGRF houses. */
12 #include "stdafx.h"
13 #include "debug.h"
14 #include "town.h"
15 #include "newgrf_town.h"
17 #include "safeguards.h"
19 /**
20 * Resolver of a town scope.
21 * @param ro Surrounding resolver.
22 * @param t %Town of the scope.
23 * @param readonly Scope may change persistent storage of the town.
25 TownScopeResolver::TownScopeResolver(ResolverObject &ro, Town *t, bool readonly) : ScopeResolver(ro)
27 this->t = t;
28 this->readonly = readonly;
31 /* virtual */ uint32 TownScopeResolver::GetVariable(byte variable, uint32 parameter, bool *available) const
33 switch (variable) {
34 /* Larger towns */
35 case 0x40:
36 if (_settings_game.economy.larger_towns == 0) return 2;
37 if (this->t->larger_town) return 1;
38 return 0;
40 /* Town index */
41 case 0x41: return this->t->index;
43 /* Get a variable from the persistent storage */
44 case 0x7C: {
45 /* Check the persistent storage for the GrfID stored in register 100h. */
46 uint32 grfid = GetRegister(0x100);
47 if (grfid == 0xFFFFFFFF) {
48 if (this->ro.grffile == NULL) return 0;
49 grfid = this->ro.grffile->grfid;
52 std::list<PersistentStorage *>::iterator iter;
53 for (iter = this->t->psa_list.begin(); iter != this->t->psa_list.end(); iter++) {
54 if ((*iter)->grfid == grfid) return (*iter)->GetValue(parameter);
57 return 0;
60 /* Town properties */
61 case 0x80: return this->t->xy;
62 case 0x81: return GB(this->t->xy, 8, 8);
63 case 0x82: return ClampToU16(this->t->cache.population);
64 case 0x83: return GB(ClampToU16(this->t->cache.population), 8, 8);
65 case 0x8A: return this->t->grow_counter;
66 case 0x92: return this->t->flags; // In original game, 0x92 and 0x93 are really one word. Since flags is a byte, this is to adjust
67 case 0x93: return 0;
68 case 0x94: return ClampToU16(this->t->cache.squared_town_zone_radius[0]);
69 case 0x95: return GB(ClampToU16(this->t->cache.squared_town_zone_radius[0]), 8, 8);
70 case 0x96: return ClampToU16(this->t->cache.squared_town_zone_radius[1]);
71 case 0x97: return GB(ClampToU16(this->t->cache.squared_town_zone_radius[1]), 8, 8);
72 case 0x98: return ClampToU16(this->t->cache.squared_town_zone_radius[2]);
73 case 0x99: return GB(ClampToU16(this->t->cache.squared_town_zone_radius[2]), 8, 8);
74 case 0x9A: return ClampToU16(this->t->cache.squared_town_zone_radius[3]);
75 case 0x9B: return GB(ClampToU16(this->t->cache.squared_town_zone_radius[3]), 8, 8);
76 case 0x9C: return ClampToU16(this->t->cache.squared_town_zone_radius[4]);
77 case 0x9D: return GB(ClampToU16(this->t->cache.squared_town_zone_radius[4]), 8, 8);
78 case 0x9E: return this->t->ratings[0];
79 case 0x9F: return GB(this->t->ratings[0], 8, 8);
80 case 0xA0: return this->t->ratings[1];
81 case 0xA1: return GB(this->t->ratings[1], 8, 8);
82 case 0xA2: return this->t->ratings[2];
83 case 0xA3: return GB(this->t->ratings[2], 8, 8);
84 case 0xA4: return this->t->ratings[3];
85 case 0xA5: return GB(this->t->ratings[3], 8, 8);
86 case 0xA6: return this->t->ratings[4];
87 case 0xA7: return GB(this->t->ratings[4], 8, 8);
88 case 0xA8: return this->t->ratings[5];
89 case 0xA9: return GB(this->t->ratings[5], 8, 8);
90 case 0xAA: return this->t->ratings[6];
91 case 0xAB: return GB(this->t->ratings[6], 8, 8);
92 case 0xAC: return this->t->ratings[7];
93 case 0xAD: return GB(this->t->ratings[7], 8, 8);
94 case 0xAE: return this->t->have_ratings;
95 case 0xB2: return this->t->statues;
96 case 0xB6: return ClampToU16(this->t->cache.num_houses);
97 case 0xB9: return this->t->growth_rate & (~TOWN_GROW_RATE_CUSTOM);
98 case 0xBA: return ClampToU16(this->t->supplied[CT_PASSENGERS].new_max);
99 case 0xBB: return GB(ClampToU16(this->t->supplied[CT_PASSENGERS].new_max), 8, 8);
100 case 0xBC: return ClampToU16(this->t->supplied[CT_MAIL].new_max);
101 case 0xBD: return GB(ClampToU16(this->t->supplied[CT_MAIL].new_max), 8, 8);
102 case 0xBE: return ClampToU16(this->t->supplied[CT_PASSENGERS].new_act);
103 case 0xBF: return GB(ClampToU16(this->t->supplied[CT_PASSENGERS].new_act), 8, 8);
104 case 0xC0: return ClampToU16(this->t->supplied[CT_MAIL].new_act);
105 case 0xC1: return GB(ClampToU16(this->t->supplied[CT_MAIL].new_act), 8, 8);
106 case 0xC2: return ClampToU16(this->t->supplied[CT_PASSENGERS].old_max);
107 case 0xC3: return GB(ClampToU16(this->t->supplied[CT_PASSENGERS].old_max), 8, 8);
108 case 0xC4: return ClampToU16(this->t->supplied[CT_MAIL].old_max);
109 case 0xC5: return GB(ClampToU16(this->t->supplied[CT_MAIL].old_max), 8, 8);
110 case 0xC6: return ClampToU16(this->t->supplied[CT_PASSENGERS].old_act);
111 case 0xC7: return GB(ClampToU16(this->t->supplied[CT_PASSENGERS].old_act), 8, 8);
112 case 0xC8: return ClampToU16(this->t->supplied[CT_MAIL].old_act);
113 case 0xC9: return GB(ClampToU16(this->t->supplied[CT_MAIL].old_act), 8, 8);
114 case 0xCA: return this->t->GetPercentTransported(CT_PASSENGERS);
115 case 0xCB: return this->t->GetPercentTransported(CT_MAIL);
116 case 0xCC: return this->t->received[TE_FOOD].new_act;
117 case 0xCD: return GB(this->t->received[TE_FOOD].new_act, 8, 8);
118 case 0xCE: return this->t->received[TE_WATER].new_act;
119 case 0xCF: return GB(this->t->received[TE_WATER].new_act, 8, 8);
120 case 0xD0: return this->t->received[TE_FOOD].old_act;
121 case 0xD1: return GB(this->t->received[TE_FOOD].old_act, 8, 8);
122 case 0xD2: return this->t->received[TE_WATER].old_act;
123 case 0xD3: return GB(this->t->received[TE_WATER].old_act, 8, 8);
124 case 0xD4: return this->t->road_build_months;
125 case 0xD5: return this->t->fund_buildings_months;
128 DEBUG(grf, 1, "Unhandled town variable 0x%X", variable);
130 *available = false;
131 return UINT_MAX;
134 /* virtual */ void TownScopeResolver::StorePSA(uint pos, int32 value)
136 if (this->readonly) return;
138 assert(this->t != NULL);
139 /* We can't store anything if the caller has no #GRFFile. */
140 if (this->ro.grffile == NULL) return;
142 /* Check the persistent storage for the GrfID stored in register 100h. */
143 uint32 grfid = GetRegister(0x100);
145 /* A NewGRF can only write in the persistent storage associated to its own GRFID. */
146 if (grfid == 0xFFFFFFFF) grfid = this->ro.grffile->grfid;
147 if (grfid != this->ro.grffile->grfid) return;
149 /* Check if the storage exists. */
150 std::list<PersistentStorage *>::iterator iter;
151 for (iter = t->psa_list.begin(); iter != t->psa_list.end(); iter++) {
152 if ((*iter)->grfid == grfid) {
153 (*iter)->StoreValue(pos, value);
154 return;
158 /* Create a new storage. */
159 assert(PersistentStorage::CanAllocateItem());
160 PersistentStorage *psa = new PersistentStorage(grfid, GSF_FAKE_TOWNS, this->t->xy);
161 psa->StoreValue(pos, value);
162 t->psa_list.push_back(psa);
166 * Resolver for a town.
167 * @param grffile NewGRF file associated with the town.
168 * @param t %Town of the scope.
169 * @param readonly Scope may change persistent storage of the town.
171 TownResolverObject::TownResolverObject(const struct GRFFile *grffile, Town *t, bool readonly)
172 : ResolverObject(grffile), town_scope(*this, t, readonly)