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/>.
10 /** @file spritecache.h Functions to cache sprites in memory. */
17 /** Data structure describing a sprite. */
19 uint16 height
; ///< Height of the sprite.
20 uint16 width
; ///< Width of the sprite.
21 int16 x_offs
; ///< Number of pixels to shift the sprite to the right.
22 int16 y_offs
; ///< Number of pixels to shift the sprite downwards.
23 byte data
[]; ///< Sprite data.
26 extern uint _sprite_cache_size
;
28 typedef void *AllocatorProc(size_t size
);
30 void *GetRawSprite(SpriteID sprite
, SpriteType type
, AllocatorProc
*allocator
= NULL
);
31 bool SpriteExists(SpriteID sprite
);
33 SpriteType
GetSpriteType(SpriteID sprite
);
34 uint
GetOriginFileSlot(SpriteID sprite
);
35 uint
GetMaxSpriteID();
38 static inline const Sprite
*GetSprite(SpriteID sprite
, SpriteType type
)
40 assert(type
!= ST_RECOLOUR
);
41 return (Sprite
*)GetRawSprite(sprite
, type
);
44 static inline const byte
*GetNonSprite(SpriteID sprite
, SpriteType type
)
46 assert(type
== ST_RECOLOUR
);
47 return (byte
*)GetRawSprite(sprite
, type
);
50 void GfxInitSpriteMem();
51 void GfxClearSpriteCache();
52 void IncreaseSpriteLRU();
54 void ReadGRFSpriteOffsets(byte container_version
);
55 size_t GetGRFSpriteOffset(uint32 id
);
56 bool LoadNextSprite(int load_index
, byte file_index
, uint file_sprite_id
, byte container_version
);
57 bool SkipSpriteData(byte type
, uint16 num
);
58 void DupSprite(SpriteID old_spr
, SpriteID new_spr
);
60 #endif /* SPRITECACHE_H */