Change: Improve graph period markings (#8732)
[openttd-github.git] / src / newgrf_generic.cpp
blob6538b79b669446ab812fdba4f419e9f4240032f3
1 /*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
8 /** @file newgrf_generic.cpp Handling of generic feature callbacks. */
10 #include "stdafx.h"
11 #include "debug.h"
12 #include "newgrf_spritegroup.h"
13 #include "industrytype.h"
14 #include "core/random_func.hpp"
15 #include "newgrf_sound.h"
16 #include "water_map.h"
17 #include <list>
19 #include "safeguards.h"
21 /** Scope resolver for generic objects and properties. */
22 struct GenericScopeResolver : public ScopeResolver {
23 CargoID cargo_type;
24 uint8 default_selection;
25 uint8 src_industry; ///< Source industry substitute type. 0xFF for "town", 0xFE for "unknown".
26 uint8 dst_industry; ///< Destination industry substitute type. 0xFF for "town", 0xFE for "unknown".
27 uint8 distance;
28 AIConstructionEvent event;
29 uint8 count;
30 uint8 station_size;
32 uint8 feature;
34 /**
35 * Generic scope resolver.
36 * @param ro Surrounding resolver.
37 * @param ai_callback Callback comes from the AI.
39 GenericScopeResolver(ResolverObject &ro, bool ai_callback)
40 : ScopeResolver(ro), cargo_type(0), default_selection(0), src_industry(0), dst_industry(0), distance(0),
41 event(), count(0), station_size(0), feature(GSF_INVALID), ai_callback(ai_callback)
45 uint32 GetVariable(byte variable, uint32 parameter, bool *available) const override;
47 private:
48 bool ai_callback; ///< Callback comes from the AI.
52 /** Resolver object for generic objects/properties. */
53 struct GenericResolverObject : public ResolverObject {
54 GenericScopeResolver generic_scope;
56 GenericResolverObject(bool ai_callback, CallbackID callback = CBID_NO_CALLBACK);
58 ScopeResolver *GetScope(VarSpriteGroupScope scope = VSG_SCOPE_SELF, byte relative = 0) override
60 switch (scope) {
61 case VSG_SCOPE_SELF: return &this->generic_scope;
62 default: return ResolverObject::GetScope(scope, relative);
66 const SpriteGroup *ResolveReal(const RealSpriteGroup *group) const override;
68 GrfSpecFeature GetFeature() const override
70 return (GrfSpecFeature)this->generic_scope.feature;
73 uint32 GetDebugID() const override
75 return 0;
79 struct GenericCallback {
80 const GRFFile *file;
81 const SpriteGroup *group;
83 GenericCallback(const GRFFile *file, const SpriteGroup *group) :
84 file(file),
85 group(group)
86 { }
89 typedef std::list<GenericCallback> GenericCallbackList;
91 static GenericCallbackList _gcl[GSF_END];
94 /**
95 * Reset all generic feature callback sprite groups.
97 void ResetGenericCallbacks()
99 for (uint8 feature = 0; feature < lengthof(_gcl); feature++) {
100 _gcl[feature].clear();
106 * Add a generic feature callback sprite group to the appropriate feature list.
107 * @param feature The feature for the callback.
108 * @param file The GRF of the callback.
109 * @param group The sprite group of the callback.
111 void AddGenericCallback(uint8 feature, const GRFFile *file, const SpriteGroup *group)
113 if (feature >= lengthof(_gcl)) {
114 grfmsg(5, "AddGenericCallback: Unsupported feature 0x%02X", feature);
115 return;
118 /* Generic feature callbacks are evaluated in reverse (i.e. the last group
119 * to be added is evaluated first, etc) thus we push the group to the
120 * beginning of the list so a standard iterator will do the right thing. */
121 _gcl[feature].push_front(GenericCallback(file, group));
124 /* virtual */ uint32 GenericScopeResolver::GetVariable(byte variable, uint32 parameter, bool *available) const
126 if (this->ai_callback) {
127 switch (variable) {
128 case 0x40: return this->ro.grffile->cargo_map[this->cargo_type];
130 case 0x80: return this->cargo_type;
131 case 0x81: return CargoSpec::Get(this->cargo_type)->bitnum;
132 case 0x82: return this->default_selection;
133 case 0x83: return this->src_industry;
134 case 0x84: return this->dst_industry;
135 case 0x85: return this->distance;
136 case 0x86: return this->event;
137 case 0x87: return this->count;
138 case 0x88: return this->station_size;
140 default: break;
144 DEBUG(grf, 1, "Unhandled generic feature variable 0x%02X", variable);
146 *available = false;
147 return UINT_MAX;
151 /* virtual */ const SpriteGroup *GenericResolverObject::ResolveReal(const RealSpriteGroup *group) const
153 if (group->num_loaded == 0) return nullptr;
155 return group->loaded[0];
159 * Generic resolver.
160 * @param ai_callback Callback comes from the AI.
161 * @param callback Callback ID.
163 GenericResolverObject::GenericResolverObject(bool ai_callback, CallbackID callback) : ResolverObject(nullptr, callback), generic_scope(*this, ai_callback)
169 * Follow a generic feature callback list and return the first successful
170 * answer
171 * @param feature GRF Feature of callback
172 * @param object pre-populated resolver object
173 * @param param1_grfv7 callback_param1 for GRFs up to version 7.
174 * @param param1_grfv8 callback_param1 for GRFs from version 8 on.
175 * @param[out] file Optionally returns the GRFFile which made the final decision for the callback result. May be nullptr if not required.
176 * @return callback value if successful or CALLBACK_FAILED
178 static uint16 GetGenericCallbackResult(uint8 feature, ResolverObject &object, uint32 param1_grfv7, uint32 param1_grfv8, const GRFFile **file)
180 assert(feature < lengthof(_gcl));
182 /* Test each feature callback sprite group. */
183 for (GenericCallbackList::const_iterator it = _gcl[feature].begin(); it != _gcl[feature].end(); ++it) {
184 object.grffile = it->file;
185 object.root_spritegroup = it->group;
186 /* Set callback param based on GRF version. */
187 object.callback_param1 = it->file->grf_version >= 8 ? param1_grfv8 : param1_grfv7;
188 uint16 result = object.ResolveCallback();
189 if (result == CALLBACK_FAILED) continue;
191 /* Return NewGRF file if necessary */
192 if (file != nullptr) *file = it->file;
194 return result;
197 /* No callback returned a valid result, so we've failed. */
198 return CALLBACK_FAILED;
203 * 'Execute' an AI purchase selection callback
205 * @param feature GRF Feature to call callback for.
206 * @param cargo_type Cargotype to pass to callback. (Variable 80)
207 * @param default_selection 'Default selection' to pass to callback. (Variable 82)
208 * @param src_industry 'Source industry type' to pass to callback. (Variable 83)
209 * @param dst_industry 'Destination industry type' to pass to callback. (Variable 84)
210 * @param distance 'Distance between source and destination' to pass to callback. (Variable 85)
211 * @param event 'AI construction event' to pass to callback. (Variable 86)
212 * @param count 'Construction number' to pass to callback. (Variable 87)
213 * @param station_size 'Station size' to pass to callback. (Variable 88)
214 * @param[out] file Optionally returns the GRFFile which made the final decision for the callback result. May be nullptr if not required.
215 * @return callback value if successful or CALLBACK_FAILED
217 uint16 GetAiPurchaseCallbackResult(uint8 feature, CargoID cargo_type, uint8 default_selection, IndustryType src_industry, IndustryType dst_industry, uint8 distance, AIConstructionEvent event, uint8 count, uint8 station_size, const GRFFile **file)
219 GenericResolverObject object(true, CBID_GENERIC_AI_PURCHASE_SELECTION);
221 if (src_industry != IT_AI_UNKNOWN && src_industry != IT_AI_TOWN) {
222 const IndustrySpec *is = GetIndustrySpec(src_industry);
223 /* If this is no original industry, use the substitute type */
224 if (is->grf_prop.subst_id != INVALID_INDUSTRYTYPE) src_industry = is->grf_prop.subst_id;
227 if (dst_industry != IT_AI_UNKNOWN && dst_industry != IT_AI_TOWN) {
228 const IndustrySpec *is = GetIndustrySpec(dst_industry);
229 /* If this is no original industry, use the substitute type */
230 if (is->grf_prop.subst_id != INVALID_INDUSTRYTYPE) dst_industry = is->grf_prop.subst_id;
233 object.generic_scope.cargo_type = cargo_type;
234 object.generic_scope.default_selection = default_selection;
235 object.generic_scope.src_industry = src_industry;
236 object.generic_scope.dst_industry = dst_industry;
237 object.generic_scope.distance = distance;
238 object.generic_scope.event = event;
239 object.generic_scope.count = count;
240 object.generic_scope.station_size = station_size;
241 object.generic_scope.feature = feature;
243 uint16 callback = GetGenericCallbackResult(feature, object, 0, 0, file);
244 if (callback != CALLBACK_FAILED) callback = GB(callback, 0, 8);
245 return callback;
250 * 'Execute' the ambient sound effect callback.
251 * @param tile Tile the sound effect should be generated for.
253 void AmbientSoundEffectCallback(TileIndex tile)
255 assert(IsTileType(tile, MP_CLEAR) || IsTileType(tile, MP_TREES) || IsTileType(tile, MP_WATER));
257 /* Only run every 1/200-th time. */
258 uint32 r; // Save for later
259 if (!Chance16R(1, 200, r) || !_settings_client.sound.ambient) return;
261 /* Prepare resolver object. */
262 GenericResolverObject object(false, CBID_SOUNDS_AMBIENT_EFFECT);
263 object.generic_scope.feature = GSF_SOUNDFX;
265 uint32 param1_v7 = GetTileType(tile) << 28 | Clamp(TileHeight(tile), 0, 15) << 24 | GB(r, 16, 8) << 16 | GetTerrainType(tile);
266 uint32 param1_v8 = GetTileType(tile) << 24 | GetTileZ(tile) << 16 | GB(r, 16, 8) << 8 | (HasTileWaterClass(tile) ? GetWaterClass(tile) : 0) << 3 | GetTerrainType(tile);
268 /* Run callback. */
269 const GRFFile *grf_file;
270 uint16 callback = GetGenericCallbackResult(GSF_SOUNDFX, object, param1_v7, param1_v8, &grf_file);
272 if (callback != CALLBACK_FAILED) PlayTileSound(grf_file, callback, tile);