2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-05-07 12:46:07 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-05-07 12:46:07 -06:00
|
|
|
|
2015-03-01 15:53:15 -07:00
|
|
|
#include <memory>
|
2014-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
2015-12-29 05:17:59 -07:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2009-05-07 12:46:07 -06:00
|
|
|
|
2014-12-22 04:53:03 -07:00
|
|
|
class HiresTexture
|
2009-05-07 12:46:07 -06:00
|
|
|
{
|
2014-12-22 04:53:03 -07:00
|
|
|
public:
|
2015-12-29 05:32:39 -07:00
|
|
|
using SOILPointer = std::unique_ptr<u8, void(*)(unsigned char*)>;
|
|
|
|
|
2015-03-01 15:53:15 -07:00
|
|
|
static void Init();
|
|
|
|
static void Update();
|
|
|
|
static void Shutdown();
|
2009-12-21 23:47:42 -07:00
|
|
|
|
2015-03-01 15:53:15 -07:00
|
|
|
static std::shared_ptr<HiresTexture> Search(
|
2014-12-22 04:53:03 -07:00
|
|
|
const u8* texture, size_t texture_size,
|
|
|
|
const u8* tlut, size_t tlut_size,
|
|
|
|
u32 width, u32 height,
|
2015-01-15 13:33:22 -07:00
|
|
|
int format, bool has_mipmaps
|
2014-12-22 04:53:03 -07:00
|
|
|
);
|
|
|
|
|
2014-12-22 14:33:38 -07:00
|
|
|
static std::string GenBaseName(
|
|
|
|
const u8* texture, size_t texture_size,
|
|
|
|
const u8* tlut, size_t tlut_size,
|
|
|
|
u32 width, u32 height,
|
2015-01-15 13:33:22 -07:00
|
|
|
int format, bool has_mipmaps,
|
|
|
|
bool dump = false
|
2014-12-22 14:33:38 -07:00
|
|
|
);
|
|
|
|
|
2014-12-22 04:53:03 -07:00
|
|
|
~HiresTexture();
|
|
|
|
|
|
|
|
struct Level
|
|
|
|
{
|
2015-12-29 05:32:39 -07:00
|
|
|
Level();
|
|
|
|
|
|
|
|
SOILPointer data;
|
|
|
|
size_t data_size = 0;
|
|
|
|
u32 width = 0;
|
|
|
|
u32 height = 0;
|
2014-12-22 04:53:03 -07:00
|
|
|
};
|
|
|
|
std::vector<Level> m_levels;
|
|
|
|
|
|
|
|
private:
|
2015-12-29 05:21:51 -07:00
|
|
|
static std::unique_ptr<HiresTexture> Load(const std::string& base_filename, u32 width, u32 height);
|
2015-03-01 15:53:15 -07:00
|
|
|
static void Prefetch();
|
|
|
|
|
2016-01-06 11:35:16 -07:00
|
|
|
static std::string GetTextureDirectory(const std::string& game_id);
|
2016-01-06 06:33:36 -07:00
|
|
|
|
2014-12-22 04:53:03 -07:00
|
|
|
HiresTexture() {}
|
|
|
|
|
|
|
|
};
|