re3-mirror/src/rw/TxdStore.cpp

184 lines
3.1 KiB
C++
Raw Permalink Normal View History

2019-05-15 15:52:37 +01:00
#include "common.h"
2020-04-17 14:31:11 +01:00
2019-05-15 15:52:37 +01:00
#include "templates.h"
#include "General.h"
2019-05-15 15:52:37 +01:00
#include "Streaming.h"
2019-06-13 10:57:43 +01:00
#include "RwHelper.h"
2019-05-15 15:52:37 +01:00
#include "TxdStore.h"
2020-04-17 06:54:14 +01:00
CPool<TxdDef,TxdDef> *CTxdStore::ms_pTxdPool;
RwTexDictionary *CTxdStore::ms_pStoredTxd;
2019-05-15 15:52:37 +01:00
void
CTxdStore::Initialise(void)
2019-05-15 15:52:37 +01:00
{
if(ms_pTxdPool == nil)
ms_pTxdPool = new CPool<TxdDef,TxdDef>(TXDSTORESIZE);
}
void
CTxdStore::Shutdown(void)
{
if(ms_pTxdPool)
delete ms_pTxdPool;
}
2019-06-13 11:25:55 +01:00
void
CTxdStore::GameShutdown(void)
{
int i;
for(i = 0; i < TXDSTORESIZE; i++){
TxdDef *def = GetSlot(i);
2019-06-15 10:41:27 +01:00
if(def && GetNumRefs(i) == 0)
2019-06-13 11:25:55 +01:00
RemoveTxdSlot(i);
}
}
2019-05-15 15:52:37 +01:00
int
CTxdStore::AddTxdSlot(const char *name)
{
TxdDef *def = ms_pTxdPool->New();
assert(def);
def->texDict = nil;
def->refCount = 0;
strcpy(def->name, name);
return ms_pTxdPool->GetJustIndex(def);
}
2019-05-22 19:28:53 +01:00
void
CTxdStore::RemoveTxdSlot(int slot)
{
TxdDef *def = GetSlot(slot);
if(def->texDict)
RwTexDictionaryDestroy(def->texDict);
ms_pTxdPool->Delete(def);
}
2019-05-15 15:52:37 +01:00
int
CTxdStore::FindTxdSlot(const char *name)
{
int size = ms_pTxdPool->GetSize();
for(int i = 0; i < size; i++){
2020-08-20 11:55:41 +01:00
TxdDef *def = GetSlot(i);
if(def && !CGeneral::faststricmp(def->name, name))
2019-05-15 15:52:37 +01:00
return i;
}
return -1;
}
char*
CTxdStore::GetTxdName(int slot)
{
2020-08-20 11:55:41 +01:00
return GetSlot(slot)->name;
2019-05-15 15:52:37 +01:00
}
void
CTxdStore::PushCurrentTxd(void)
{
ms_pStoredTxd = RwTexDictionaryGetCurrent();
}
void
CTxdStore::PopCurrentTxd(void)
{
RwTexDictionarySetCurrent(ms_pStoredTxd);
ms_pStoredTxd = nil;
}
void
CTxdStore::SetCurrentTxd(int slot)
{
2020-08-20 11:55:41 +01:00
RwTexDictionarySetCurrent(GetSlot(slot)->texDict);
2019-05-15 15:52:37 +01:00
}
void
CTxdStore::Create(int slot)
{
GetSlot(slot)->texDict = RwTexDictionaryCreate();
}
2019-06-13 11:25:55 +01:00
int
CTxdStore::GetNumRefs(int slot)
{
return GetSlot(slot)->refCount;
}
2019-05-15 15:52:37 +01:00
void
CTxdStore::AddRef(int slot)
{
GetSlot(slot)->refCount++;
}
void
CTxdStore::RemoveRef(int slot)
{
if(--GetSlot(slot)->refCount <= 0)
2020-08-20 11:55:41 +01:00
CStreaming::RemoveTxd(slot);
2019-05-15 15:52:37 +01:00
}
void
CTxdStore::RemoveRefWithoutDelete(int slot)
{
GetSlot(slot)->refCount--;
}
bool
CTxdStore::LoadTxd(int slot, RwStream *stream)
{
TxdDef *def = GetSlot(slot);
2019-05-22 19:28:53 +01:00
if(RwStreamFindChunk(stream, rwID_TEXDICTIONARY, nil, nil)){
def->texDict = RwTexDictionaryGtaStreamRead(stream);
2019-05-15 15:52:37 +01:00
return def->texDict != nil;
}
2019-05-22 19:28:53 +01:00
printf("Failed to load TXD\n");
return false;
2019-05-15 15:52:37 +01:00
}
bool
CTxdStore::LoadTxd(int slot, const char *filename)
{
2019-05-22 19:28:53 +01:00
RwStream *stream;
bool ret;
ret = false;
_rwD3D8TexDictionaryEnableRasterFormatConversion(true);
do
stream = RwStreamOpen(rwSTREAMFILENAME, rwSTREAMREAD, filename);
while(stream == nil);
ret = LoadTxd(slot, stream);
RwStreamClose(stream, nil);
return ret;
2019-05-15 15:52:37 +01:00
}
2019-06-13 11:25:55 +01:00
bool
CTxdStore::StartLoadTxd(int slot, RwStream *stream)
{
TxdDef *def = GetSlot(slot);
if(RwStreamFindChunk(stream, rwID_TEXDICTIONARY, nil, nil)){
def->texDict = RwTexDictionaryGtaStreamRead1(stream);
return def->texDict != nil;
}else{
printf("Failed to load TXD\n");
2019-06-30 11:53:39 +01:00
return false;
2019-06-13 11:25:55 +01:00
}
}
bool
CTxdStore::FinishLoadTxd(int slot, RwStream *stream)
{
TxdDef *def = GetSlot(slot);
def->texDict = RwTexDictionaryGtaStreamRead2(stream, def->texDict);
return def->texDict != nil;
}
2019-05-15 15:52:37 +01:00
void
CTxdStore::RemoveTxd(int slot)
{
TxdDef *def = GetSlot(slot);
if(def->texDict)
RwTexDictionaryDestroy(def->texDict);
def->texDict = nil;
}