2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-05-07 21:46:07 +03:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2009-05-07 21:46:07 +03:00
|
|
|
|
2014-03-12 21:33:41 +02:00
|
|
|
#include <string>
|
2014-12-22 13:53:03 +02:00
|
|
|
#include <unordered_map>
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoCommon/TextureDecoder.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2009-05-07 21:46:07 +03:00
|
|
|
|
2014-12-22 13:53:03 +02:00
|
|
|
class HiresTexture
|
2009-05-07 21:46:07 +03:00
|
|
|
{
|
2014-12-22 13:53:03 +02:00
|
|
|
public:
|
|
|
|
static void Init(const std::string& gameCode);
|
2009-12-22 08:47:42 +02:00
|
|
|
|
2014-12-22 13:53:03 +02:00
|
|
|
static HiresTexture* Search(
|
|
|
|
const u8* texture, size_t texture_size,
|
|
|
|
const u8* tlut, size_t tlut_size,
|
|
|
|
u32 width, u32 height,
|
2015-01-15 22:33:22 +02:00
|
|
|
int format, bool has_mipmaps
|
2014-12-22 13:53:03 +02:00
|
|
|
);
|
|
|
|
|
2014-12-22 23:33:38 +02: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 22:33:22 +02:00
|
|
|
int format, bool has_mipmaps,
|
|
|
|
bool dump = false
|
2014-12-22 23:33:38 +02:00
|
|
|
);
|
|
|
|
|
2014-12-22 13:53:03 +02:00
|
|
|
~HiresTexture();
|
|
|
|
|
|
|
|
struct Level
|
|
|
|
{
|
|
|
|
u8* data;
|
|
|
|
size_t data_size;
|
|
|
|
u32 width, height;
|
|
|
|
};
|
|
|
|
std::vector<Level> m_levels;
|
|
|
|
|
|
|
|
private:
|
|
|
|
HiresTexture() {}
|
|
|
|
|
|
|
|
};
|