2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-05-07 18:46:07 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-05-07 18:46:07 +00:00
|
|
|
|
2015-03-01 22:53:15 +00:00
|
|
|
#include <memory>
|
2020-02-13 03:10:44 +00:00
|
|
|
#include <set>
|
2014-03-12 19:33:41 +00:00
|
|
|
#include <string>
|
2015-12-29 12:17:59 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2017-06-12 17:37:28 +00:00
|
|
|
#include "VideoCommon/TextureConfig.h"
|
2021-05-01 05:59:24 +00:00
|
|
|
#include "VideoCommon/TextureInfo.h"
|
2009-05-07 18:46:07 +00:00
|
|
|
|
2017-07-30 19:45:55 +00:00
|
|
|
enum class TextureFormat;
|
|
|
|
|
2020-05-03 17:49:46 +00:00
|
|
|
std::set<std::string> GetTextureDirectoriesWithGameId(const std::string& root_directory,
|
|
|
|
const std::string& game_id);
|
|
|
|
|
2014-12-22 11:53:03 +00:00
|
|
|
class HiresTexture
|
2009-05-07 18:46:07 +00:00
|
|
|
{
|
2014-12-22 11:53:03 +00:00
|
|
|
public:
|
2015-12-29 12:21:51 +00:00
|
|
|
static void Init();
|
2015-03-01 22:53:15 +00:00
|
|
|
static void Update();
|
2019-08-17 19:40:58 +00:00
|
|
|
static void Clear();
|
2015-03-01 22:53:15 +00:00
|
|
|
static void Shutdown();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2022-03-05 20:52:43 +00:00
|
|
|
static std::shared_ptr<HiresTexture> Search(const TextureInfo& texture_info);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2022-03-05 20:52:43 +00:00
|
|
|
static std::string GenBaseName(const TextureInfo& texture_info, bool dump = false);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-04-21 09:53:03 +00:00
|
|
|
static u32 CalculateMipCount(u32 width, u32 height);
|
|
|
|
|
2015-03-01 22:53:15 +00:00
|
|
|
~HiresTexture();
|
|
|
|
|
2017-06-12 17:37:28 +00:00
|
|
|
AbstractTextureFormat GetFormat() const;
|
2018-01-10 13:56:18 +00:00
|
|
|
bool HasArbitraryMipmaps() const;
|
|
|
|
|
2014-12-22 11:53:03 +00:00
|
|
|
struct Level
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-12-27 15:32:32 +00:00
|
|
|
std::vector<u8> data;
|
2017-06-12 17:37:28 +00:00
|
|
|
AbstractTextureFormat format = AbstractTextureFormat::RGBA8;
|
2015-12-29 12:32:39 +00:00
|
|
|
u32 width = 0;
|
|
|
|
u32 height = 0;
|
2017-04-16 09:30:11 +00:00
|
|
|
u32 row_length = 0;
|
2016-06-24 08:43:46 +00:00
|
|
|
};
|
2016-01-06 18:35:16 +00:00
|
|
|
std::vector<Level> m_levels;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-01-06 18:35:16 +00:00
|
|
|
private:
|
|
|
|
static std::unique_ptr<HiresTexture> Load(const std::string& base_filename, u32 width,
|
2015-12-29 12:32:39 +00:00
|
|
|
u32 height);
|
2017-04-16 14:24:16 +00:00
|
|
|
static bool LoadDDSTexture(HiresTexture* tex, const std::string& filename);
|
2018-05-22 06:13:54 +00:00
|
|
|
static bool LoadDDSTexture(Level& level, const std::string& filename, u32 mip_level);
|
2017-04-16 09:30:11 +00:00
|
|
|
static bool LoadTexture(Level& level, const std::vector<u8>& buffer);
|
2016-01-06 18:35:16 +00:00
|
|
|
static void Prefetch();
|
2016-01-06 13:33:36 +00:00
|
|
|
|
2021-09-04 04:43:19 +00:00
|
|
|
HiresTexture() = default;
|
|
|
|
bool m_has_arbitrary_mipmaps = false;
|
2014-12-22 11:53:03 +00:00
|
|
|
};
|