mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-14 13:58:04 +01:00
28e2417ef9
Fixed GCC warnings and Windows specifics. Restored C++11, switch to 14 was not supposed to happen. Not 100% sure about my Find* module section.
294 lines
7.8 KiB
C++
294 lines
7.8 KiB
C++
#include "pch.h"
|
|
#include "partman.h"
|
|
#include "gdrv.h"
|
|
#include "memory.h"
|
|
#include "zdrv.h"
|
|
|
|
short partman::_field_size[] =
|
|
{
|
|
2, -1, 2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0
|
|
};
|
|
|
|
datFileStruct* partman::load_records(LPCSTR lpFileName, int resolution, bool fullTiltMode)
|
|
{
|
|
datFileHeader header{};
|
|
dat8BitBmpHeader bmpHeader{};
|
|
dat16BitBmpHeader zMapHeader{};
|
|
|
|
FILE* fileHandle = fopen(lpFileName, "rb");
|
|
if (fileHandle == nullptr)
|
|
return nullptr;
|
|
fread(&header, 1, sizeof header, fileHandle);
|
|
if (strcmp("PARTOUT(4.0)RESOURCE", header.FileSignature) != 0)
|
|
{
|
|
fclose(fileHandle);
|
|
return nullptr;
|
|
}
|
|
auto datFile = memory::allocate<datFileStruct>();
|
|
if (!datFile)
|
|
{
|
|
fclose(fileHandle);
|
|
return nullptr;
|
|
}
|
|
if (strlen(header.Description) <= 0)
|
|
{
|
|
datFile->Description = nullptr;
|
|
}
|
|
else
|
|
{
|
|
auto lenOfStr = strlen(header.Description);
|
|
auto descriptionBuf = memory::allocate(lenOfStr + 1);
|
|
datFile->Description = descriptionBuf;
|
|
if (!descriptionBuf)
|
|
{
|
|
fclose(fileHandle);
|
|
memory::free(datFile);
|
|
return nullptr;
|
|
}
|
|
strncpy(descriptionBuf, header.Description, lenOfStr + 1);
|
|
}
|
|
|
|
if (header.Unknown)
|
|
{
|
|
auto unknownBuf = memory::allocate(header.Unknown);
|
|
if (!unknownBuf)
|
|
{
|
|
fclose(fileHandle);
|
|
if (datFile->Description)
|
|
memory::free(datFile->Description);
|
|
memory::free(datFile);
|
|
return nullptr;
|
|
}
|
|
fread(unknownBuf, 1, header.Unknown, fileHandle);
|
|
memory::free(unknownBuf);
|
|
}
|
|
|
|
auto groupDataBuf = memory::allocate<datGroupData*>(header.NumberOfGroups);
|
|
datFile->GroupData = groupDataBuf;
|
|
if (!groupDataBuf)
|
|
{
|
|
if (datFile->Description)
|
|
memory::free(datFile->Description);
|
|
memory::free(datFile);
|
|
return nullptr;
|
|
}
|
|
|
|
bool abort = false;
|
|
for (auto groupIndex = 0; !abort && groupIndex < header.NumberOfGroups; ++groupIndex)
|
|
{
|
|
auto entryCount = _lread_char(fileHandle);
|
|
auto groupDataSize = entryCount <= 0 ? 0 : entryCount - 1;
|
|
auto groupData = memory::allocate<datGroupData>(1, sizeof(datEntryData) * groupDataSize);
|
|
datFile->GroupData[groupIndex] = groupData;
|
|
if (!groupData)
|
|
break;
|
|
|
|
groupData->EntryCount = 0;
|
|
for (auto entryIndex = 0; entryIndex < entryCount; ++entryIndex)
|
|
{
|
|
auto entryData = &groupData->Entries[groupData->EntryCount];
|
|
auto entryType = static_cast<datFieldTypes>(_lread_char(fileHandle));
|
|
entryData->EntryType = entryType;
|
|
|
|
int fieldSize = _field_size[static_cast<int>(entryType)];
|
|
if (fieldSize < 0)
|
|
fieldSize = _lread_long(fileHandle);
|
|
|
|
if (entryType == datFieldTypes::Bitmap8bit)
|
|
{
|
|
fread(&bmpHeader, 1, sizeof(dat8BitBmpHeader), fileHandle);
|
|
if (bmpHeader.Resolution != resolution && bmpHeader.Resolution != -1)
|
|
{
|
|
fseek(fileHandle, bmpHeader.Size, SEEK_CUR);
|
|
continue;
|
|
}
|
|
|
|
auto bmp = memory::allocate<gdrv_bitmap8>();
|
|
entryData->Buffer = reinterpret_cast<char*>(bmp);
|
|
if (!bmp)
|
|
{
|
|
abort = true;
|
|
break;
|
|
}
|
|
int bmpRez;
|
|
if (bmpHeader.IsFlagSet(bmp8Flags::Spliced))
|
|
bmpRez = gdrv::create_spliced_bitmap(bmp, bmpHeader.Width, bmpHeader.Height, bmpHeader.Size);
|
|
else if (bmpHeader.IsFlagSet(bmp8Flags::DibBitmap))
|
|
bmpRez = gdrv::create_bitmap(bmp, bmpHeader.Width, bmpHeader.Height);
|
|
else
|
|
bmpRez = gdrv::create_raw_bitmap(bmp, bmpHeader.Width, bmpHeader.Height,
|
|
bmpHeader.IsFlagSet(bmp8Flags::RawBmpUnaligned));
|
|
if (bmpRez)
|
|
{
|
|
abort = true;
|
|
break;
|
|
}
|
|
fread(bmp->BmpBufPtr1, 1, bmpHeader.Size, fileHandle);
|
|
bmp->XPosition = bmpHeader.XPosition;
|
|
bmp->YPosition = bmpHeader.YPosition;
|
|
}
|
|
else if (entryType == datFieldTypes::Bitmap16bit)
|
|
{
|
|
/*Full tilt has extra byte(@0:resolution) in zMap*/
|
|
if (fullTiltMode)
|
|
{
|
|
char zMapResolution = _lread_char(fileHandle);
|
|
fieldSize--;
|
|
if (zMapResolution != resolution && zMapResolution != -1)
|
|
{
|
|
fseek(fileHandle, fieldSize, SEEK_CUR);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
fread(&zMapHeader, 1, sizeof(dat16BitBmpHeader), fileHandle);
|
|
int length = fieldSize - sizeof(dat16BitBmpHeader);
|
|
|
|
auto zmap = memory::allocate<zmap_header_type>(1, length);
|
|
zmap->Width = zMapHeader.Width;
|
|
zmap->Height = zMapHeader.Height;
|
|
zmap->Stride = zMapHeader.Stride;
|
|
fread(zmap->ZBuffer, 1, length, fileHandle);
|
|
entryData->Buffer = reinterpret_cast<char*>(zmap);
|
|
}
|
|
else
|
|
{
|
|
char* entryBuffer = memory::allocate(fieldSize);
|
|
entryData->Buffer = entryBuffer;
|
|
if (!entryBuffer)
|
|
{
|
|
abort = true;
|
|
break;
|
|
}
|
|
fread(entryBuffer, 1, fieldSize, fileHandle);
|
|
}
|
|
|
|
entryData->FieldSize = fieldSize;
|
|
groupData->EntryCount++;
|
|
}
|
|
datFile->NumberOfGroups = groupIndex + 1;
|
|
}
|
|
|
|
fclose(fileHandle);
|
|
if (datFile->NumberOfGroups == header.NumberOfGroups)
|
|
return datFile;
|
|
unload_records(datFile);
|
|
return nullptr;
|
|
}
|
|
|
|
|
|
void partman::unload_records(datFileStruct* datFile)
|
|
{
|
|
for (auto groupIndex = 0; groupIndex < datFile->NumberOfGroups; ++groupIndex)
|
|
{
|
|
auto group = datFile->GroupData[groupIndex];
|
|
if (!group)
|
|
continue;
|
|
|
|
for (auto entryIndex = 0; entryIndex < group->EntryCount; ++entryIndex)
|
|
{
|
|
auto entry = &group->Entries[entryIndex];
|
|
if (entry->Buffer)
|
|
{
|
|
if (entry->EntryType == datFieldTypes::Bitmap8bit)
|
|
gdrv::destroy_bitmap(reinterpret_cast<gdrv_bitmap8*>(entry->Buffer));
|
|
memory::free(entry->Buffer);
|
|
}
|
|
}
|
|
memory::free(group);
|
|
}
|
|
if (datFile->Description)
|
|
memory::free(datFile->Description);
|
|
memory::free(datFile->GroupData);
|
|
memory::free(datFile);
|
|
}
|
|
|
|
char* partman::field(datFileStruct* datFile, int groupIndex, datFieldTypes targetEntryType)
|
|
{
|
|
auto group = datFile->GroupData[groupIndex];
|
|
for (auto entryIndex = 0; entryIndex < group->EntryCount; ++entryIndex)
|
|
{
|
|
auto entry = &group->Entries[entryIndex];
|
|
if (entry->EntryType == targetEntryType)
|
|
return entry->Buffer;
|
|
if (entry->EntryType > targetEntryType)
|
|
break;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
|
|
char* partman::field_nth(datFileStruct* datFile, int groupIndex, datFieldTypes targetEntryType, int skipFirstN)
|
|
{
|
|
auto group = datFile->GroupData[groupIndex];
|
|
for (auto skipCount = 0, entryIndex = 0; entryIndex < group->EntryCount; ++entryIndex)
|
|
{
|
|
auto entry = &group->Entries[entryIndex];
|
|
if (entry->EntryType > targetEntryType)
|
|
break;
|
|
if (entry->EntryType == targetEntryType)
|
|
if (skipCount++ == skipFirstN)
|
|
return entry->Buffer;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
int partman::field_size_nth(datFileStruct* datFile, int groupIndex, datFieldTypes targetEntryType, int skipFirstN)
|
|
{
|
|
auto group = datFile->GroupData[groupIndex];
|
|
for (auto skipCount = 0, entryIndex = 0; entryIndex < group->EntryCount; ++entryIndex)
|
|
{
|
|
auto entry = &group->Entries[entryIndex];
|
|
if (entry->EntryType > targetEntryType)
|
|
return 0;
|
|
if (entry->EntryType == targetEntryType)
|
|
if (skipCount++ == skipFirstN)
|
|
return entry->FieldSize;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int partman::field_size(datFileStruct* datFile, int groupIndex, datFieldTypes targetEntryType)
|
|
{
|
|
return field_size_nth(datFile, groupIndex, targetEntryType, 0);
|
|
}
|
|
|
|
int partman::record_labeled(datFileStruct* datFile, LPCSTR targetGroupName)
|
|
{
|
|
auto targetLength = strlen(targetGroupName);
|
|
for (int groupIndex = datFile->NumberOfGroups - 1; groupIndex >= 0; --groupIndex)
|
|
{
|
|
auto groupName = field(datFile, groupIndex, datFieldTypes::GroupName);
|
|
if (!groupName)
|
|
continue;
|
|
|
|
int index;
|
|
for (index = 0; index < targetLength; index++)
|
|
if (targetGroupName[index] != groupName[index])
|
|
break;
|
|
if (index == targetLength && !targetGroupName[index] && !groupName[index])
|
|
return groupIndex;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
char* partman::field_labeled(datFileStruct* datFile, LPCSTR lpString, datFieldTypes fieldType)
|
|
{
|
|
auto groupIndex = record_labeled(datFile, lpString);
|
|
return groupIndex < 0 ? nullptr : field(datFile, groupIndex, fieldType);
|
|
}
|
|
|
|
char partman::_lread_char(FILE* file)
|
|
{
|
|
char Buffer = 0;
|
|
fread(&Buffer, 1, 1, file);
|
|
return Buffer;
|
|
}
|
|
|
|
int partman::_lread_long(FILE* file)
|
|
{
|
|
int Buffer = 0;
|
|
fread(&Buffer, 1, 4, file);
|
|
return Buffer;
|
|
}
|