OpenTTD Source 20250220-master-gf89924a727
|
Variable-length list of sprite groups for an entity. More...
#include <newgrf_commons.h>
Public Types | |
using | CargoSpriteGroup = std::pair< size_t, const struct SpriteGroup * > |
Public Member Functions | |
const struct SpriteGroup * | GetSpriteGroup (size_t index) const |
Get the SpriteGroup at the specified index. | |
void | SetSpriteGroup (size_t index, const struct SpriteGroup *spritegroup) |
Set the SpriteGroup at the specified index. | |
![]() | |
void | SetGRFFile (const struct GRFFile *grffile) |
Set the NewGRF file, and its grfid, associated with grf props. | |
bool | HasGrfFile () const |
Test if this entity was introduced by NewGRF. | |
Data Fields | |
std::vector< CargoSpriteGroup > | spritegroups |
pointers to the different sprite groups of the entity | |
![]() | |
uint16_t | local_id = 0 |
id defined by the grf file for this entity | |
uint32_t | grfid = 0 |
grfid that introduced this entity. | |
const struct GRFFile * | grffile = nullptr |
grf file that introduced this entity | |
Variable-length list of sprite groups for an entity.
Definition at line 332 of file newgrf_commons.h.
using VariableGRFFileProps::CargoSpriteGroup = std::pair<size_t, const struct SpriteGroup *> |
Definition at line 333 of file newgrf_commons.h.
const SpriteGroup * VariableGRFFileProps::GetSpriteGroup | ( | size_t | index | ) | const |
Get the SpriteGroup at the specified index.
index | Index to get. |
Definition at line 750 of file newgrf_commons.cpp.
References spritegroups.
Referenced by BadgeResolverObject::BadgeResolverObject(), StationResolverObject::StationResolverObject(), and VehicleResolverObject::VehicleResolverObject().
void VariableGRFFileProps::SetSpriteGroup | ( | size_t | index, |
const struct SpriteGroup * | spritegroup | ||
) |
Set the SpriteGroup at the specified index.
index | Index to set. |
spritegroup | SpriteGroup to set. |
Definition at line 762 of file newgrf_commons.cpp.
References spritegroups.
std::vector<CargoSpriteGroup> VariableGRFFileProps::spritegroups |
pointers to the different sprite groups of the entity
Definition at line 334 of file newgrf_commons.h.
Referenced by GetSpriteGroup(), SetSpriteGroup(), and StationResolverObject::StationResolverObject().