OpenTTD Source  20240917-master-g9ab0a47812
spritecache.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 <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef SPRITECACHE_H
11 #define SPRITECACHE_H
12 
13 #include "gfx_type.h"
15 
17 struct Sprite {
18  uint16_t height;
19  uint16_t width;
20  int16_t x_offs;
21  int16_t y_offs;
22  uint8_t data[];
23 };
24 
30 };
31 
32 extern uint _sprite_cache_size;
33 
36 protected:
37  void *AllocatePtr(size_t size) override;
38 };
39 
42 public:
43  std::unique_ptr<uint8_t[]> data;
44 protected:
45  void *AllocatePtr(size_t size) override;
46 };
47 
48 void *GetRawSprite(SpriteID sprite, SpriteType type, SpriteAllocator *allocator = nullptr, SpriteEncoder *encoder = nullptr);
49 bool SpriteExists(SpriteID sprite);
50 
53 uint32_t GetSpriteLocalID(SpriteID sprite);
54 uint GetSpriteCountForFile(const std::string &filename, SpriteID begin, SpriteID end);
55 uint GetMaxSpriteID();
56 
57 
58 inline const Sprite *GetSprite(SpriteID sprite, SpriteType type)
59 {
60  assert(type != SpriteType::Recolour);
61  return (Sprite*)GetRawSprite(sprite, type);
62 }
63 
64 inline const uint8_t *GetNonSprite(SpriteID sprite, SpriteType type)
65 {
66  assert(type == SpriteType::Recolour);
67  return (uint8_t*)GetRawSprite(sprite, type);
68 }
69 
70 void GfxInitSpriteMem();
71 void GfxClearSpriteCache();
73 void IncreaseSpriteLRU();
74 
75 SpriteFile &OpenCachedSpriteFile(const std::string &filename, Subdirectory subdir, bool palette_remap);
76 std::span<const std::unique_ptr<SpriteFile>> GetCachedSpriteFiles();
77 
79 size_t GetGRFSpriteOffset(uint32_t id);
80 bool LoadNextSprite(int load_index, SpriteFile &file, uint file_sprite_id);
81 bool SkipSpriteData(SpriteFile &file, uint8_t type, uint16_t num);
82 void DupSprite(SpriteID old_spr, SpriteID new_spr);
83 
84 #endif /* SPRITECACHE_H */
Sprite::height
uint16_t height
Height of the sprite.
Definition: spritecache.h:18
SkipSpriteData
bool SkipSpriteData(SpriteFile &file, uint8_t type, uint16_t num)
Skip the given amount of sprite graphics data.
Definition: spritecache.cpp:122
Sprite::x_offs
int16_t x_offs
Number of pixels to shift the sprite to the right.
Definition: spritecache.h:20
SpriteType::Recolour
@ Recolour
Recolour sprite.
GetSpriteType
SpriteType GetSpriteType(SpriteID sprite)
Get the sprite type of a given sprite.
Definition: spritecache.cpp:159
spriteloader.hpp
GetSpriteLocalID
uint32_t GetSpriteLocalID(SpriteID sprite)
Get the GRF-local sprite id of a given sprite.
Definition: spritecache.cpp:181
SCCF_ALLOW_ZOOM_MIN_2X_32BPP
@ SCCF_ALLOW_ZOOM_MIN_2X_32BPP
Allow use of sprite min zoom setting at 2x in 32bpp mode.
Definition: spritecache.h:29
SimpleSpriteAllocator
SpriteAllocate that uses malloc to allocate memory.
Definition: spritecache.h:35
GetOriginFile
SpriteFile * GetOriginFile(SpriteID sprite)
Get the SpriteFile of a given sprite.
Definition: spritecache.cpp:170
SpriteAllocator
Interface for something that can allocate memory for a sprite.
Definition: spriteloader.hpp:88
GetSpriteCountForFile
uint GetSpriteCountForFile(const std::string &filename, SpriteID begin, SpriteID end)
Count the sprites which originate from a specific file in a range of SpriteIDs.
Definition: spritecache.cpp:194
UniquePtrSpriteAllocator
SpriteAllocator that allocates memory via a unique_ptr array.
Definition: spritecache.h:41
Sprite::width
uint16_t width
Width of the sprite.
Definition: spritecache.h:19
LoadNextSprite
bool LoadNextSprite(int load_index, SpriteFile &file, uint file_sprite_id)
Load a real or recolour sprite.
Definition: spritecache.cpp:618
GfxClearFontSpriteCache
void GfxClearFontSpriteCache()
Remove all encoded font sprites from the sprite cache without discarding sprite location information.
Definition: spritecache.cpp:1069
GetCachedSpriteFiles
std::span< const std::unique_ptr< SpriteFile > > GetCachedSpriteFiles()
Get the list of cached SpriteFiles.
Definition: spritecache.cpp:81
SCCF_ALLOW_ZOOM_MIN_1X_PAL
@ SCCF_ALLOW_ZOOM_MIN_1X_PAL
Allow use of sprite min zoom setting at 1x in palette mode.
Definition: spritecache.h:26
SpriteEncoder
Interface for something that can encode a sprite.
Definition: spriteloader.hpp:114
GetRawSprite
void * GetRawSprite(SpriteID sprite, SpriteType type, SpriteAllocator *allocator=nullptr, SpriteEncoder *encoder=nullptr)
Reads a sprite (from disk or sprite cache).
Definition: spritecache.cpp:956
SimpleSpriteAllocator::AllocatePtr
void * AllocatePtr(size_t size) override
Sprite allocator simply using malloc.
Definition: spritecache.cpp:891
SpriteID
uint32_t SpriteID
The number of a sprite, without mapping bits and colourtables.
Definition: gfx_type.h:18
ReadGRFSpriteOffsets
void ReadGRFSpriteOffsets(SpriteFile &file)
Parse the sprite section of GRFs.
Definition: spritecache.cpp:562
UniquePtrSpriteAllocator::AllocatePtr
void * AllocatePtr(size_t size) override
Allocate memory for a sprite.
Definition: spritecache.cpp:896
SpriteFile
RandomAccessFile with some extra information specific for sprite files.
Definition: sprite_file_type.hpp:19
Sprite::y_offs
int16_t y_offs
Number of pixels to shift the sprite downwards.
Definition: spritecache.h:21
GetGRFSpriteOffset
size_t GetGRFSpriteOffset(uint32_t id)
Get the file offset for a specific sprite in the sprite section of a GRF.
Definition: spritecache.cpp:553
Subdirectory
Subdirectory
The different kinds of subdirectories OpenTTD uses.
Definition: fileio_type.h:115
SpriteType
SpriteType
Types of sprites that might be loaded.
Definition: gfx_type.h:314
SCCF_ALLOW_ZOOM_MIN_2X_PAL
@ SCCF_ALLOW_ZOOM_MIN_2X_PAL
Allow use of sprite min zoom setting at 2x in palette mode.
Definition: spritecache.h:28
GetMaxSpriteID
uint GetMaxSpriteID()
Get a reasonable (upper bound) estimate of the maximum SpriteID used in OpenTTD; there will be no spr...
Definition: spritecache.cpp:220
GfxClearSpriteCache
void GfxClearSpriteCache()
Remove all encoded sprites from the sprite cache without discarding sprite location information.
Definition: spritecache.cpp:1054
Sprite::data
uint8_t data[]
Sprite data.
Definition: spritecache.h:22
OpenCachedSpriteFile
SpriteFile & OpenCachedSpriteFile(const std::string &filename, Subdirectory subdir, bool palette_remap)
Open/get the SpriteFile that is cached for use in the sprite cache.
Definition: spritecache.cpp:93
gfx_type.h
Sprite
Data structure describing a sprite.
Definition: spritecache.h:17
SpriteCacheCtrlFlags
SpriteCacheCtrlFlags
Definition: spritecache.h:25
SCCF_ALLOW_ZOOM_MIN_1X_32BPP
@ SCCF_ALLOW_ZOOM_MIN_1X_32BPP
Allow use of sprite min zoom setting at 1x in 32bpp mode.
Definition: spritecache.h:27