2019-08-06 16:24:07 +00:00
|
|
|
// Copyright 2019 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2019-08-06 12:43:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-08-17 02:34:22 +00:00
|
|
|
#include <string>
|
2019-08-06 12:43:24 +00:00
|
|
|
#include <unordered_map>
|
2019-08-14 05:04:50 +00:00
|
|
|
#include <unordered_set>
|
2019-08-06 12:43:24 +00:00
|
|
|
#include <vector>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
struct CustomTexInfo {
|
|
|
|
u32 width;
|
|
|
|
u32 height;
|
|
|
|
std::vector<u8> tex;
|
|
|
|
};
|
|
|
|
|
2019-08-17 02:34:22 +00:00
|
|
|
// This is to avoid parsing the filename multiple times
|
|
|
|
struct CustomTexPathInfo {
|
|
|
|
std::string path;
|
|
|
|
u64 hash;
|
|
|
|
};
|
|
|
|
|
2019-08-06 12:43:24 +00:00
|
|
|
// TODO: think of a better name for this class...
|
|
|
|
class CustomTexCache {
|
|
|
|
public:
|
2019-08-14 14:43:24 +00:00
|
|
|
explicit CustomTexCache();
|
2019-08-06 16:24:07 +00:00
|
|
|
~CustomTexCache();
|
|
|
|
|
|
|
|
bool IsTextureDumped(u64 hash) const;
|
|
|
|
void SetTextureDumped(u64 hash);
|
2019-08-06 12:43:24 +00:00
|
|
|
|
2019-08-06 16:24:07 +00:00
|
|
|
bool IsTextureCached(u64 hash) const;
|
2019-08-14 05:04:50 +00:00
|
|
|
const CustomTexInfo& LookupTexture(u64 hash) const;
|
2019-08-06 16:24:07 +00:00
|
|
|
void CacheTexture(u64 hash, const std::vector<u8>& tex, u32 width, u32 height);
|
2019-08-06 12:43:24 +00:00
|
|
|
|
2019-08-17 02:34:22 +00:00
|
|
|
void AddTexturePath(u64 hash, const std::string& path);
|
|
|
|
void FindCustomTextures();
|
|
|
|
void PreloadTextures();
|
|
|
|
bool CustomTextureExists(u64 hash) const;
|
|
|
|
const CustomTexPathInfo& LookupTexturePathInfo(u64 hash) const;
|
|
|
|
bool IsTexturePathMapEmpty() const;
|
|
|
|
|
2019-08-06 12:43:24 +00:00
|
|
|
private:
|
2019-08-14 05:04:50 +00:00
|
|
|
std::unordered_set<u64> dumped_textures;
|
2019-08-06 12:43:24 +00:00
|
|
|
std::unordered_map<u64, CustomTexInfo> custom_textures;
|
2019-08-17 02:34:22 +00:00
|
|
|
std::unordered_map<u64, CustomTexPathInfo> custom_texture_paths;
|
2019-08-06 12:43:24 +00:00
|
|
|
};
|
2019-10-12 15:25:27 +00:00
|
|
|
} // namespace Core
|