mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:29:00 +00:00
35 lines
909 B
C
35 lines
909 B
C
|
#pragma once
|
||
|
|
||
|
#include "templates.h"
|
||
|
|
||
|
struct TxdDef {
|
||
|
RwTexDictionary *texDict;
|
||
|
int refCount;
|
||
|
char name[20];
|
||
|
};
|
||
|
|
||
|
class CTxdStore
|
||
|
{
|
||
|
static CPool<TxdDef,TxdDef> *&ms_pTxdPool;
|
||
|
static RwTexDictionary *&ms_pStoredTxd;
|
||
|
public:
|
||
|
static void Initialize(void);
|
||
|
static void Shutdown(void);
|
||
|
static int AddTxdSlot(const char *name);
|
||
|
static int FindTxdSlot(const char *name);
|
||
|
static char *GetTxdName(int slot);
|
||
|
static void PushCurrentTxd(void);
|
||
|
static void PopCurrentTxd(void);
|
||
|
static void SetCurrentTxd(int slot);
|
||
|
static void Create(int slot);
|
||
|
static void AddRef(int slot);
|
||
|
static void RemoveRef(int slot);
|
||
|
static void RemoveRefWithoutDelete(int slot);
|
||
|
static bool LoadTxd(int slot, RwStream *stream);
|
||
|
static bool LoadTxd(int slot, const char *filename);
|
||
|
static void RemoveTxd(int slot);
|
||
|
|
||
|
static TxdDef *GetSlot(int slot) { return ms_pTxdPool->GetSlot(slot); }
|
||
|
static bool isTxdLoaded(int slot);
|
||
|
};
|