2021-03-02 02:13:17 +00:00
|
|
|
// Project64 - A Nintendo 64 emulator
|
2021-05-18 11:51:36 +00:00
|
|
|
// https://www.pj64-emu.com/
|
2021-03-02 02:13:17 +00:00
|
|
|
// Copyright(C) 2001-2021 Project64
|
|
|
|
// Copyright(C) 2007 Hiroshi Morii
|
|
|
|
// Copyright(C) 2003 Rice1964
|
|
|
|
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
|
2013-04-17 10:30:38 +00:00
|
|
|
|
|
|
|
#ifndef __TXCACHE_H__
|
|
|
|
#define __TXCACHE_H__
|
|
|
|
|
|
|
|
#include "TxInternal.h"
|
|
|
|
#include "TxUtil.h"
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class TxCache
|
|
|
|
{
|
|
|
|
private:
|
2017-04-26 10:23:36 +00:00
|
|
|
std::list<uint64_t> _cachelist;
|
|
|
|
uint8 *_gzdest0;
|
|
|
|
uint8 *_gzdest1;
|
|
|
|
uint32 _gzdestLen;
|
2013-04-17 10:30:38 +00:00
|
|
|
protected:
|
2017-04-26 10:23:36 +00:00
|
|
|
int _options;
|
|
|
|
std::string _ident;
|
|
|
|
std::string _path;
|
|
|
|
dispInfoFuncExt _callback;
|
|
|
|
TxUtil *_txUtil;
|
|
|
|
struct TXCACHE {
|
|
|
|
int size;
|
|
|
|
GHQTexInfo info;
|
|
|
|
std::list<uint64_t>::iterator it;
|
|
|
|
};
|
|
|
|
int _totalSize;
|
|
|
|
int _cacheSize;
|
|
|
|
std::map<uint64_t, TXCACHE*> _cache;
|
|
|
|
bool save(const char *path, const char *filename, const int config);
|
|
|
|
bool load(const char *path, const char *filename, const int config);
|
2021-05-18 11:51:36 +00:00
|
|
|
bool del(uint64_t checksum); // Checksum hi:palette low:texture
|
|
|
|
bool is_cached(uint64_t checksum); // Checksum hi:palette low:texture
|
2017-04-26 10:23:36 +00:00
|
|
|
void clear();
|
2013-04-17 10:30:38 +00:00
|
|
|
public:
|
2017-04-26 10:23:36 +00:00
|
|
|
~TxCache();
|
|
|
|
TxCache(int options, int cachesize, const char *path, const char *ident,
|
|
|
|
dispInfoFuncExt callback);
|
2021-05-18 11:51:36 +00:00
|
|
|
bool add(uint64_t checksum, // Checksum hi:palette low:texture
|
2017-04-26 10:23:36 +00:00
|
|
|
GHQTexInfo *info, int dataSize = 0);
|
2021-05-18 11:51:36 +00:00
|
|
|
bool get(uint64_t checksum, // Checksum hi:palette low:texture
|
2017-04-26 10:23:36 +00:00
|
|
|
GHQTexInfo *info);
|
2013-04-17 10:30:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __TXCACHE_H__ */
|