mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
689dc10b13
the benefits are questionable, it's error prone, undocumented and hasn't been widely used for ages, if ever
37 lines
615 B
C
37 lines
615 B
C
/* $Id$ */
|
|
|
|
#ifndef SPRITECACHE_H
|
|
#define SPRITECACHE_H
|
|
|
|
typedef struct Sprite {
|
|
byte info;
|
|
byte height;
|
|
uint16 width;
|
|
int16 x_offs;
|
|
int16 y_offs;
|
|
byte data[VARARRAY_SIZE];
|
|
} Sprite;
|
|
|
|
typedef struct {
|
|
int xoffs, yoffs;
|
|
int xsize, ysize;
|
|
} SpriteDimension;
|
|
|
|
const SpriteDimension *GetSpriteDimension(SpriteID sprite);
|
|
const void *GetRawSprite(SpriteID sprite);
|
|
|
|
static inline const Sprite *GetSprite(SpriteID sprite)
|
|
{
|
|
return GetRawSprite(sprite);
|
|
}
|
|
|
|
static inline const byte *GetNonSprite(SpriteID sprite)
|
|
{
|
|
return GetRawSprite(sprite);
|
|
}
|
|
|
|
void GfxLoadSprites(void);
|
|
void IncreaseSpriteLRU(void);
|
|
|
|
#endif
|