OpenTTD Source 20260712-master-gcf48f866eb
newgrf_spritegroup.h
Go to the documentation of this file.
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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#ifndef NEWGRF_SPRITEGROUP_H
11#define NEWGRF_SPRITEGROUP_H
12
13#include "core/pool_type.hpp"
14#include "town_type.h"
15#include "engine_type.h"
16#include "house_type.h"
17#include "industry_type.h"
18
19#include "newgrf_callbacks.h"
20#include "newgrf_generic.h"
21#include "newgrf_storage.h"
22#include "newgrf_commons.h"
23
24struct SpriteGroup;
28struct ResolverObject;
29using CallbackResult = uint16_t;
30
37using ResolverResult = std::variant<std::monostate, CallbackResult, const ResultSpriteGroup *, const TileLayoutSpriteGroup *, const IndustryProductionSpriteGroup *>;
38
39/* SPRITE_WIDTH is 24. ECS has roughly 30 sprite groups per real sprite.
40 * Adding an 'extra' margin would be assuming 64 sprite groups per real
41 * sprite. 64 = 2^6, so 2^30 should be enough (for now) */
44extern SpriteGroupPool _spritegroup_pool;
45
47struct SpriteGroup : SpriteGroupPool::PoolItem<&_spritegroup_pool> {
48protected:
53 SpriteGroup(SpriteGroupID index) : SpriteGroupPool::PoolItem<&_spritegroup_pool>(index) {}
59 virtual ResolverResult Resolve(ResolverObject &object) const = 0;
60
61public:
63 virtual ~SpriteGroup() = default;
64
65 uint32_t nfo_line = 0;
66
67 static ResolverResult Resolve(const SpriteGroup *group, ResolverObject &object, bool top_level = true);
68};
69
70
74template <class T>
80 inline SpecializedSpriteGroup(SpriteGroupID index) : SpriteGroup(index) {}
81
87 template <typename... Targs>
88 static inline T *Create(Targs &&... args)
89 {
90 return SpriteGroup::Create<T>(std::forward<Targs&&>(args)...);
91 }
92};
93
94
96struct RealSpriteGroup : SpecializedSpriteGroup<RealSpriteGroup> {
102
103 /* Loaded = in motion, loading = not moving
104 * Each group contains several spritesets, for various loading stages */
105
106 /* XXX: For stations the meaning is different - loaded is for stations
107 * with small amount of cargo whilst loading is for stations with a lot
108 * of da stuff. */
109
110 std::vector<const SpriteGroup *> loaded{};
111 std::vector<const SpriteGroup *> loading{};
112
113protected:
114 ResolverResult Resolve(ResolverObject &object) const override;
115};
116
118enum class VarSpriteGroupScope : uint8_t {
122
124};
125
132
139
166
167
171 uint8_t variable = 0;
172 uint8_t parameter = 0;
173 uint8_t shift_num = 0;
174 uint32_t and_mask = 0;
175 uint32_t add_val = 0;
176 uint32_t divmod_val = 0;
177 const SpriteGroup *subroutine = nullptr;
178};
179
180
182 bool calculated_result = false;
183 const SpriteGroup *group = nullptr;
184
185 bool operator==(const DeterministicSpriteGroupResult &) const = default;
186};
187
190 uint32_t low = 0;
191 uint32_t high = 0;
192};
193
194
195struct DeterministicSpriteGroup : SpecializedSpriteGroup<DeterministicSpriteGroup> {
196 DeterministicSpriteGroup(SpriteGroupID index) : SpecializedSpriteGroup<DeterministicSpriteGroup>(index) {}
197
198 VarSpriteGroupScope var_scope{};
200 std::vector<DeterministicSpriteGroupAdjust> adjusts{};
201 std::vector<DeterministicSpriteGroupRange> ranges{}; // Dynamically allocated
202
205
206 const SpriteGroup *error_group = nullptr;
207
208protected:
209 ResolverResult Resolve(ResolverObject &object) const override;
210};
211
216};
217
218struct RandomizedSpriteGroup : SpecializedSpriteGroup<RandomizedSpriteGroup> {
219 RandomizedSpriteGroup(SpriteGroupID index) : SpecializedSpriteGroup<RandomizedSpriteGroup>(index) {}
220
222
224 uint8_t triggers = 0;
225 uint8_t count = 0;
226
227 uint8_t lowest_randbit = 0;
228
229 std::vector<const SpriteGroup *> groups{};
230
231protected:
232 ResolverResult Resolve(ResolverObject &object) const override;
233};
234
235
237struct CallbackResultSpriteGroup : SpecializedSpriteGroup<CallbackResultSpriteGroup> {
243 CallbackResultSpriteGroup(SpriteGroupID index, CallbackResult value) : SpecializedSpriteGroup<CallbackResultSpriteGroup>(index), result(value) {}
244
245 CallbackResult result = 0;
246
247protected:
248 ResolverResult Resolve(ResolverObject &object) const override;
249};
250
251
253struct ResultSpriteGroup : SpecializedSpriteGroup<ResultSpriteGroup> {
260 ResultSpriteGroup(SpriteGroupID index, SpriteID sprite, uint8_t num_sprites) : SpecializedSpriteGroup<ResultSpriteGroup>(index), num_sprites(num_sprites), sprite(sprite) {}
261
262 uint8_t num_sprites = 0;
263 SpriteID sprite = 0;
264
265protected:
266 ResolverResult Resolve(ResolverObject &) const override { return this; }
267};
268
272struct TileLayoutSpriteGroup : SpecializedSpriteGroup<TileLayoutSpriteGroup> {
273 TileLayoutSpriteGroup(SpriteGroupID index) : SpecializedSpriteGroup<TileLayoutSpriteGroup>(index) {}
274
275 NewGRFSpriteLayout dts{};
276
277 SpriteLayoutProcessor ProcessRegisters(const ResolverObject &object, uint8_t *stage) const;
278
279protected:
280 ResolverResult Resolve(ResolverObject &) const override { return this; }
281};
282
283struct IndustryProductionSpriteGroup : SpecializedSpriteGroup<IndustryProductionSpriteGroup> {
284 IndustryProductionSpriteGroup(SpriteGroupID index) : SpecializedSpriteGroup<IndustryProductionSpriteGroup>(index) {}
285
286 uint8_t version = 0;
287 uint8_t num_input = 0;
288 std::array<int16_t, INDUSTRY_NUM_INPUTS> subtract_input{};
289 std::array<CargoType, INDUSTRY_NUM_INPUTS> cargo_input{};
290 uint8_t num_output = 0;
291 std::array<uint16_t, INDUSTRY_NUM_OUTPUTS> add_output{};
292 std::array<CargoType, INDUSTRY_NUM_OUTPUTS> cargo_output{};
293 uint8_t again = 0;
294
295protected:
296 ResolverResult Resolve(ResolverObject &) const override { return this; }
297};
298
305struct ScopeResolver {
307
308 ScopeResolver(ResolverObject &ro) : ro(ro) {}
310 virtual ~ScopeResolver() = default;
311
312 virtual uint32_t GetRandomBits() const;
313 virtual uint32_t GetRandomTriggers() const;
314
315 virtual uint32_t GetVariable(uint8_t variable, [[maybe_unused]] uint32_t parameter, bool &available) const;
316 virtual void StorePSA(uint reg, int32_t value);
317};
318
326private:
328
329public:
341
343 virtual ~ResolverObject() = default;
344
345 ResolverResult DoResolve()
346 {
347 temp_store.ClearChanges();
348 this->last_value = 0;
349 this->used_random_triggers = 0;
350 this->reseed.fill(0);
351 return SpriteGroup::Resolve(this->root_spritegroup, *this);
352 }
353
355
362 inline int32_t GetRegister(uint i) const
363 {
364 return temp_store.GetValue(i);
365 }
366
373 inline void SetRegister(uint i, int32_t value)
374 {
375 temp_store.StoreValue(i, value);
376 }
377
379 uint32_t callback_param1 = 0;
380 uint32_t callback_param2 = 0;
381
382 uint32_t last_value = 0;
383
384protected:
386 uint32_t used_random_triggers = 0;
387public:
389
390 const GRFFile *grffile = nullptr;
391 const SpriteGroup *root_spritegroup = nullptr;
392
398 template <class TSpriteGroup>
399 inline const TSpriteGroup *Resolve()
400 {
401 auto result = this->DoResolve();
402 const auto *group = std::get_if<const TSpriteGroup *>(&result);
403 if (group == nullptr) return nullptr;
404 return *group;
405 }
406
415 {
416 /* The Resolve result has no meaning.
417 * It can be a SpriteSet, a callback result, or even an invalid SpriteGroup reference (nullptr). */
418 this->DoResolve();
419 }
420
426 inline CallbackResult ResolveCallback(std::span<int32_t> regs100)
427 {
428 auto result = this->DoResolve();
429 const auto *value = std::get_if<CallbackResult>(&result);
430 if (value == nullptr) return CALLBACK_FAILED;
431 for (uint i = 0; i < regs100.size(); ++i) {
432 regs100[i] = this->GetRegister(0x100 + i);
433 }
434 return *value;
435 }
436
437 virtual const SpriteGroup *ResolveReal(const RealSpriteGroup &group) const;
438
439 virtual ScopeResolver *GetScope(VarSpriteGroupScope scope = VarSpriteGroupScope::Self, uint8_t relative = 0);
440
446 {
447 return this->waiting_random_triggers;
448 }
449
454 void AddUsedRandomTriggers(uint32_t triggers)
455 {
456 this->used_random_triggers |= triggers;
457 }
458
464 uint32_t GetReseedSum() const
465 {
466 uint32_t sum = 0;
468 sum |= this->reseed[vsg];
469 }
470 return sum;
471 }
472
485 virtual uint32_t GetDebugID() const { return 0; }
486};
487
491template <class RandomTriggers>
494
500 void SetWaitingRandomTriggers(RandomTriggers triggers)
501 {
502 this->waiting_random_triggers = triggers.base();
503 }
504
510 RandomTriggers GetUsedRandomTriggers() const
511 {
512 return static_cast<RandomTriggers>(this->used_random_triggers);
513 }
514};
515
516#endif /* NEWGRF_SPRITEGROUP_H */
Iterate a range of enum values.
Add dynamic register values to a sprite layout.
Types related to engines.
#define T
Climate temperate.
Definition engines.h:91
EnumClassIndexContainer< std::array< T, to_underlying(N)>, Index > EnumIndexArray
A typedef for EnumClassIndexContainer using std::array as the backing container type.
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition gfx_type.h:17
Declaration of basic house types and enums.
Types related to the industry.
GrfSpecFeature
Definition newgrf.h:78
@ Invalid
An invalid spec feature.
Definition newgrf.h:109
Callbacks that NewGRFs could implement.
CallbackID
List of implemented NewGRF callbacks.
@ CBID_NO_CALLBACK
Set when using the callback resolve system, but not to resolve a callback.
static const uint CALLBACK_FAILED
Different values for Callback result evaluations.
This file simplifies and embeds a common mechanism of loading/saving and mapping of grf entities.
Functions related to generic callbacks.
DeterministicSpriteGroupSize
Deterministic sprite group variable size.
@ DWord
Treat variable as a DWord.
@ Word
Treat variable as a Word.
@ Byte
Treat variable as a Byte.
DeterministicSpriteGroupAdjustOperation
Deterministic sprite group adjust operation.
@ Stop
store a into persistent storage, indexed by b, return a
@ Sto
store a into temporary storage, indexed by b. return a
@ UCmp
(unsigned) comparison (a < b -> 0, a == b = 1, a > b = 2)
@ Ror
rotate a b positions to the right
@ SCmp
(signed) comparison (a < b -> 0, a == b = 1, a > b = 2)
VarSpriteGroupScope
Shared by deterministic and random groups.
@ Relative
Relative position (vehicles only).
@ Parent
Related object of the resolved one.
@ Self
Resolved object itself.
RandomizedSpriteGroupCompareMode
Randomized sprite group comparisation mode.
@ All
Match if all bits are triggered.
@ Any
Match if any bit is triggered.
DeterministicSpriteGroupAdjustType
Deterministic sprite group adjust type.
@ Div
Apply divide adjustment to value.
@ Mod
Apply modulus adjustment to value.
std::variant< std::monostate, CallbackResult, const ResultSpriteGroup *, const TileLayoutSpriteGroup *, const IndustryProductionSpriteGroup * > ResolverResult
Result of resolving sprite groups:
Functionality related to the temporary and persistent storage arrays for NewGRFs.
Definition of Pool, structure used to access PoolItems, and PoolItem, base structure for Vehicle,...
ResolverResult Resolve(ResolverObject &object) const override
Resolves a callback or rerandomisation callback to a NewGRF.
CallbackResultSpriteGroup(SpriteGroupID index, CallbackResult value)
Creates a spritegroup representing a callback result.
uint8_t parameter
Used for variables between 0x60 and 0x7F inclusive.
ResolverResult Resolve(ResolverObject &object) const override
Resolves a callback or rerandomisation callback to a NewGRF.
DeterministicSpriteGroupResult default_result
Dynamically allocated, this is the sole owner.
const SpriteGroup * error_group
Was first range, before sorting ranges.
Dynamic data of a loaded NewGRF.
Definition newgrf.h:124
std::array< uint16_t, INDUSTRY_NUM_OUTPUTS > add_output
Add this much output cargo when successful (unsigned, is indirect in cb version 1+).
std::array< CargoType, INDUSTRY_NUM_OUTPUTS > cargo_output
Which output cargoes to add to (only cb version 2).
std::array< CargoType, INDUSTRY_NUM_INPUTS > cargo_input
Which input cargoes to take from (only cb version 2).
std::array< int16_t, INDUSTRY_NUM_INPUTS > subtract_input
Take this much of the input cargo (can be negative, is indirect in cb version 1+).
uint8_t num_input
How many subtract_input values are valid.
uint8_t version
Production callback version used, or 0xFF if marked invalid.
uint8_t num_output
How many add_output values are valid.
ResolverResult Resolve(ResolverObject &) const override
Resolves a callback or rerandomisation callback to a NewGRF.
NewGRF supplied spritelayout.
Templated helper to make a PoolID a single POD value.
Definition pool_type.hpp:50
Base class for all pools.
uint8_t lowest_randbit
Look for this in the per-object randomized bitmask:
VarSpriteGroupScope var_scope
Take this object:
std::vector< const SpriteGroup * > groups
Take the group with appropriate index:
ResolverResult Resolve(ResolverObject &object) const override
Resolves a callback or rerandomisation callback to a NewGRF.
RandomizedSpriteGroupCompareMode cmp_mode
Check for these triggers:
'Real' sprite groups contain a list of other result or callback sprite groups.
ResolverResult Resolve(ResolverObject &object) const override
Resolves a callback or rerandomisation callback to a NewGRF.
std::vector< const SpriteGroup * > loaded
List of loaded groups (can be SpriteIDs or Callback results).
RealSpriteGroup(SpriteGroupID index)
Create the RealSpriteGroup.
std::vector< const SpriteGroup * > loading
List of loading groups (can be SpriteIDs or Callback results).
Interface for SpriteGroup-s to access the gamestate.
const GRFFile * grffile
GRFFile the resolved SpriteGroup belongs to.
virtual uint32_t GetDebugID() const
Get an identifier for the item being resolved.
void SetRegister(uint i, int32_t value)
Sets the value of a so-called newgrf "register".
EnumIndexArray< uint32_t, VarSpriteGroupScope, VarSpriteGroupScope::End > reseed
Collects bits to rerandomise while triggering triggers.
uint32_t GetWaitingRandomTriggers() const
Used by RandomizedSpriteGroup: Triggers for rerandomisation.
virtual ~ResolverObject()=default
Ensure the destructor of the sub classes are called as well.
void AddUsedRandomTriggers(uint32_t triggers)
Used by RandomizedSpriteGroup: Consume triggers.
uint32_t callback_param2
Second parameter (var 18) of the callback.
const TSpriteGroup * Resolve()
Resolve SpriteGroup.
uint32_t used_random_triggers
Subset of cur_triggers, which actually triggered some rerandomisation. (scope independent).
int32_t GetRegister(uint i) const
Gets the value of a so-called newgrf "register".
uint32_t GetReseedSum() const
Returns the OR-sum of all bits that need reseeding independent of the scope they were accessed with.
ResolverObject(const GRFFile *grffile, CallbackID callback=CBID_NO_CALLBACK, uint32_t callback_param1=0, uint32_t callback_param2=0)
Resolver constructor.
ScopeResolver default_scope
Default implementation of the grf scope.
CallbackID callback
Callback being resolved.
uint32_t callback_param1
First parameter (var 10) of the callback.
virtual ScopeResolver * GetScope(VarSpriteGroupScope scope=VarSpriteGroupScope::Self, uint8_t relative=0)
Get a resolver for the scope.
virtual const SpriteGroup * ResolveReal(const RealSpriteGroup &group) const
Get the real sprites of the grf.
uint32_t last_value
Result of most recent DeterministicSpriteGroup (including procedure calls).
virtual GrfSpecFeature GetFeature() const
Get the feature number being resolved for.
void ResolveRerandomisation()
Resolve bits to be rerandomised.
const SpriteGroup * root_spritegroup
Root SpriteGroup to use for resolving.
uint32_t waiting_random_triggers
Waiting triggers to be used by any rerandomisation. (scope independent).
CallbackResult ResolveCallback(std::span< int32_t > regs100)
Resolve callback.
A result sprite group returns the first SpriteID and the number of sprites in the set.
ResolverResult Resolve(ResolverObject &) const override
Resolves a callback or rerandomisation callback to a NewGRF.
ResultSpriteGroup(SpriteGroupID index, SpriteID sprite, uint8_t num_sprites)
Creates a spritegroup representing a sprite number result.
Interface to query and set values specific to a single VarSpriteGroupScope (action 2 scope).
virtual void StorePSA(uint reg, int32_t value)
Store a value into the persistent storage area (PSA).
virtual uint32_t GetVariable(uint8_t variable, uint32_t parameter, bool &available) const
Get a variable value.
ResolverObject & ro
Surrounding resolver object.
virtual uint32_t GetRandomTriggers() const
Get the triggers.
virtual uint32_t GetRandomBits() const
Get a few random bits.
virtual ~ScopeResolver()=default
Ensure the destructor of the sub classes are called as well.
Specialization of ResolverObject with type-safe access to RandomTriggers.
void SetWaitingRandomTriggers(RandomTriggers triggers)
Set waiting triggers for rerandomisation.
RandomTriggers GetUsedRandomTriggers() const
Get the triggers, which were "consumed" by some rerandomisation.
ResolverObject(const GRFFile *grffile, CallbackID callback=CBID_NO_CALLBACK, uint32_t callback_param1=0, uint32_t callback_param2=0)
Resolver constructor.
static T * Create(Targs &&... args)
Creates a new T-object in the SpriteGroup pool.
SpecializedSpriteGroup(SpriteGroupID index)
Create the SpecializedSpriteGroup.
Common wrapper for all the different sprite group types.
virtual ~SpriteGroup()=default
Ensure the destructor of the sub classes are called as well.
SpriteGroup(SpriteGroupID index)
Create the SpriteGroup.
virtual ResolverResult Resolve(ResolverObject &object) const =0
Resolves a callback or rerandomisation callback to a NewGRF.
Class for temporary storage of data.
Action 2 sprite layout for houses, industry tiles, objects and airport tiles.
SpriteLayoutProcessor ProcessRegisters(const ResolverObject &object, uint8_t *stage) const
Process registers and the construction stage into the sprite layout.
ResolverResult Resolve(ResolverObject &) const override
Resolves a callback or rerandomisation callback to a NewGRF.
Types related to towns.