diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8c084c913f..dfa123509b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -398,6 +398,7 @@ add_files( sprite.h spritecache.cpp spritecache.h + spritecache_internal.h station.cpp station_base.h station_cmd.cpp diff --git a/src/spritecache.cpp b/src/spritecache.cpp index ef5e547c29..43d8a95894 100644 --- a/src/spritecache.cpp +++ b/src/spritecache.cpp @@ -19,6 +19,8 @@ #include "core/math_func.hpp" #include "core/mem_func.hpp" #include "video/video_driver.hpp" +#include "spritecache.h" +#include "spritecache_internal.h" #include "table/sprites.h" #include "table/strings.h" @@ -29,17 +31,6 @@ /* Default of 4MB spritecache */ uint _sprite_cache_size = 4; -struct SpriteCache { - void *ptr; - size_t file_pos; - SpriteFile *file; ///< The file the sprite in this entry can be found in. - uint32_t id; - int16_t lru; - SpriteType type; ///< In some cases a single sprite is misused by two NewGRFs. Once as real sprite and once as recolour sprite. If the recolour sprite gets into the cache it might be drawn as real sprite which causes enormous trouble. - bool warned; ///< True iff the user has been warned about incorrect use of this sprite - byte control_flags; ///< Control flags, see SpriteCacheCtrlFlags -}; - static uint _spritecache_items = 0; static SpriteCache *_spritecache = nullptr; @@ -50,12 +41,7 @@ static inline SpriteCache *GetSpriteCache(uint index) return &_spritecache[index]; } -static inline bool IsMapgenSpriteID(SpriteID sprite) -{ - return IsInsideMM(sprite, SPR_MAPGEN_BEGIN, SPR_MAPGEN_END); -} - -static SpriteCache *AllocateSpriteCache(uint index) +SpriteCache *AllocateSpriteCache(uint index) { if (index >= _spritecache_items) { /* Add another 1024 items to the 'pool' */ diff --git a/src/spritecache_internal.h b/src/spritecache_internal.h new file mode 100644 index 0000000000..4268c1217d --- /dev/null +++ b/src/spritecache_internal.h @@ -0,0 +1,41 @@ +/* + * This file is part of OpenTTD. + * 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. + * 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. + * 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 . + */ + +/** @file spritecache_internal.h Internal functions to cache sprites in memory. */ + +#ifndef SPRITECACHE_INTERNAL_H +#define SPRITECACHE_INTERNAL_H + +#include "stdafx.h" + +#include "core/math_func.hpp" +#include "gfx_type.h" +#include "spriteloader/spriteloader.hpp" + +#include "table/sprites.h" + +/* These declarations are internal to spritecache but need to be exposed for unit-tests. */ + +struct SpriteCache { + void *ptr; + size_t file_pos; + SpriteFile *file; ///< The file the sprite in this entry can be found in. + uint32_t id; + int16_t lru; + SpriteType type; ///< In some cases a single sprite is misused by two NewGRFs. Once as real sprite and once as recolour sprite. If the recolour sprite gets into the cache it might be drawn as real sprite which causes enormous trouble. + bool warned; ///< True iff the user has been warned about incorrect use of this sprite + byte control_flags; ///< Control flags, see SpriteCacheCtrlFlags +}; + +static inline bool IsMapgenSpriteID(SpriteID sprite) +{ + return IsInsideMM(sprite, SPR_MAPGEN_BEGIN, SPR_MAPGEN_END); +} + +SpriteCache *AllocateSpriteCache(uint index); + +#endif /* SPRITECACHE_INTERNAL_H */