mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-03 01:54:37 +00:00
588de66d06
subrepo: subdir: "tools/ZAPD" merged: "2e1174063" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "2e1174063" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
293 lines
11 KiB
C++
293 lines
11 KiB
C++
#include "ZCollision.h"
|
|
#include "BitConverter.h"
|
|
#include "StringHelper.h"
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
ZCollisionHeader::ZCollisionHeader()
|
|
{
|
|
|
|
}
|
|
|
|
ZCollisionHeader::ZCollisionHeader(ZFile* parent, const std::string& prefix, const std::vector<uint8_t>& rawData, int rawDataIndex)
|
|
{
|
|
const uint8_t* data = rawData.data();
|
|
|
|
absMinX = BitConverter::ToInt16BE(data, rawDataIndex + 0);
|
|
absMinY = BitConverter::ToInt16BE(data, rawDataIndex + 2);
|
|
absMinZ = BitConverter::ToInt16BE(data, rawDataIndex + 4);
|
|
|
|
absMaxX = BitConverter::ToInt16BE(data, rawDataIndex + 6);
|
|
absMaxY = BitConverter::ToInt16BE(data, rawDataIndex + 8);
|
|
absMaxZ = BitConverter::ToInt16BE(data, rawDataIndex + 10);
|
|
|
|
numVerts = BitConverter::ToInt16BE(data, rawDataIndex + 12);
|
|
vtxSegmentOffset = BitConverter::ToInt32BE(data, rawDataIndex + 16);
|
|
|
|
numPolygons = BitConverter::ToInt16BE(data, rawDataIndex + 20);
|
|
polySegmentOffset = BitConverter::ToInt32BE(data, rawDataIndex + 24);
|
|
polyTypeDefSegmentOffset = BitConverter::ToInt32BE(data, rawDataIndex + 28);
|
|
camDataSegmentOffset = BitConverter::ToInt32BE(data, rawDataIndex + 32);
|
|
|
|
numWaterBoxes = BitConverter::ToInt16BE(data, rawDataIndex + 36);
|
|
waterBoxSegmentOffset = BitConverter::ToInt32BE(data, rawDataIndex + 40) & 0x00FFFFFF;
|
|
|
|
// HOTSPOT
|
|
for (int i = 0; i < numVerts; i++)
|
|
vertices.push_back(new VertexEntry(rawData, SEG2FILESPACE(vtxSegmentOffset) + (i * 6)));
|
|
|
|
// HOTSPOT
|
|
for (int i = 0; i < numPolygons; i++)
|
|
polygons.push_back(new PolygonEntry(rawData, SEG2FILESPACE(polySegmentOffset) + (i * 16)));
|
|
|
|
int highestPolyType = 0;
|
|
|
|
for (PolygonEntry* poly : polygons)
|
|
{
|
|
if (poly->type > highestPolyType)
|
|
highestPolyType = poly->type;
|
|
}
|
|
|
|
//if (highestPolyType > 0)
|
|
{
|
|
for (int i = 0; i < highestPolyType + 1; i++)
|
|
polygonTypes.push_back(BitConverter::ToUInt64BE(data, SEG2FILESPACE(polyTypeDefSegmentOffset) + (i * 8)));
|
|
}
|
|
//else
|
|
//{
|
|
//int polyTypesSize = abs(polyTypeDefSegmentOffset - camDataSegmentOffset) / 8;
|
|
|
|
//for (int i = 0; i < polyTypesSize; i++)
|
|
//polygonTypes.push_back(BitConverter::ToUInt64BE(data, polyTypeDefSegmentOffset + (i * 8)));
|
|
//}
|
|
|
|
if (camDataSegmentOffset != 0)
|
|
camData = new CameraDataList(parent, prefix, rawData, SEG2FILESPACE(camDataSegmentOffset), SEG2FILESPACE(polyTypeDefSegmentOffset), polygonTypes.size());
|
|
|
|
for (int i = 0; i < numWaterBoxes; i++)
|
|
waterBoxes.push_back(new WaterBoxHeader(rawData, waterBoxSegmentOffset + (i * 16)));
|
|
|
|
string declaration = "";
|
|
char line[2048];
|
|
|
|
if (waterBoxes.size() > 0)
|
|
{
|
|
for (int i = 0; i < waterBoxes.size(); i++)
|
|
{
|
|
sprintf(line, " { %i, %i, %i, %i, %i, 0x%08X },\n", waterBoxes[i]->xMin, waterBoxes[i]->ySurface, waterBoxes[i]->zMin, waterBoxes[i]->xLength, waterBoxes[i]->zLength, waterBoxes[i]->properties);
|
|
declaration += line;
|
|
}
|
|
}
|
|
|
|
if (waterBoxSegmentOffset != 0)
|
|
parent->AddDeclarationArray(waterBoxSegmentOffset, DeclarationAlignment::None, 16 * waterBoxes.size(), "WaterBox",
|
|
StringHelper::Sprintf("%s_waterBoxes_%08X", prefix.c_str(), waterBoxSegmentOffset), 0, declaration);
|
|
|
|
if (polygons.size() > 0)
|
|
{
|
|
declaration = "";
|
|
|
|
for (int i = 0; i < polygons.size(); i++)
|
|
{
|
|
sprintf(line, " { 0x%04X, 0x%04X, 0x%04X, 0x%04X, 0x%04X, 0x%04X, 0x%04X, 0x%04X }, // 0x%08X\n",
|
|
(uint16_t)polygons[i]->type, (uint16_t)polygons[i]->vtxA, (uint16_t)polygons[i]->vtxB, (uint16_t)polygons[i]->vtxC,
|
|
(uint16_t)polygons[i]->a, (uint16_t)polygons[i]->b, (uint16_t)polygons[i]->c, (uint16_t)polygons[i]->d, SEG2FILESPACE(polySegmentOffset) + (i * 16));
|
|
declaration += line;
|
|
}
|
|
|
|
if (polySegmentOffset != 0) {
|
|
parent->AddDeclarationArray(SEG2FILESPACE(polySegmentOffset), DeclarationAlignment::None, polygons.size() * 16, "CollisionPoly", StringHelper::Sprintf("%s_polygons_%08X", prefix.c_str(), SEG2FILESPACE(polySegmentOffset)), 0, declaration);
|
|
}
|
|
}
|
|
|
|
declaration = "";
|
|
for (int i = 0; i < polygonTypes.size(); i++)
|
|
{
|
|
declaration += StringHelper::Sprintf(" 0x%08lX, 0x%08lX,", polygonTypes[i] >> 32, polygonTypes[i] & 0xFFFFFFFF);
|
|
|
|
if (i < polygonTypes.size() - 1)
|
|
declaration += "\n";
|
|
}
|
|
|
|
if (polyTypeDefSegmentOffset != 0)
|
|
parent->AddDeclarationArray(SEG2FILESPACE(polyTypeDefSegmentOffset), DeclarationAlignment::None, polygonTypes.size() * 8,
|
|
"u32", StringHelper::Sprintf("%s_polygonTypes_%08X", prefix.c_str(), SEG2FILESPACE(polyTypeDefSegmentOffset)), 0, declaration);
|
|
|
|
declaration = "";
|
|
|
|
if (vertices.size() > 0)
|
|
{
|
|
declaration = "";
|
|
|
|
for (int i = 0; i < vertices.size(); i++)
|
|
{
|
|
declaration += StringHelper::Sprintf(" { %i, %i, %i }, // 0x%08X", vertices[i]->x, vertices[i]->y, vertices[i]->z, SEG2FILESPACE(vtxSegmentOffset) + (i * 6));
|
|
|
|
if (i < vertices.size() - 1)
|
|
declaration += "\n";
|
|
}
|
|
|
|
if (vtxSegmentOffset != 0)
|
|
parent->AddDeclarationArray(SEG2FILESPACE(vtxSegmentOffset), DeclarationAlignment::None, vertices.size() * 6,
|
|
"Vec3s", StringHelper::Sprintf("%s_vtx_%08X", prefix.c_str(), SEG2FILESPACE(vtxSegmentOffset)), 0, declaration);
|
|
|
|
declaration = "";
|
|
}
|
|
|
|
declaration = "";
|
|
char waterBoxStr[2048];
|
|
|
|
if (waterBoxSegmentOffset != 0)
|
|
sprintf(waterBoxStr, "%s_waterBoxes_%08X", prefix.c_str(), waterBoxSegmentOffset);
|
|
else
|
|
sprintf(waterBoxStr, "0");
|
|
|
|
declaration += StringHelper::Sprintf("%i, %i, %i, %i, %i, %i, %i, %s_vtx_%08X, %i, %s_polygons_%08X, %s_polygonTypes_%08X, &%s_camDataList_%08X, %i, %s",
|
|
absMinX, absMinY, absMinZ,
|
|
absMaxX, absMaxY, absMaxZ,
|
|
numVerts, prefix.c_str(), SEG2FILESPACE(vtxSegmentOffset), numPolygons,
|
|
prefix.c_str(), SEG2FILESPACE(polySegmentOffset), prefix.c_str(), SEG2FILESPACE(polyTypeDefSegmentOffset),
|
|
prefix.c_str(), SEG2FILESPACE(camDataSegmentOffset), numWaterBoxes, waterBoxStr);
|
|
|
|
parent->AddDeclaration(rawDataIndex, DeclarationAlignment::None, DeclarationPadding::Pad16, 44, "CollisionHeader",
|
|
StringHelper::Sprintf("%s", prefix.c_str(), rawDataIndex), declaration);
|
|
}
|
|
|
|
ZCollisionHeader::~ZCollisionHeader()
|
|
{
|
|
for (VertexEntry* vtx : vertices)
|
|
delete vtx;
|
|
|
|
for (PolygonEntry* poly : polygons)
|
|
delete poly;
|
|
|
|
for (WaterBoxHeader* waterBox : waterBoxes)
|
|
delete waterBox;
|
|
}
|
|
|
|
ZResourceType ZCollisionHeader::GetResourceType()
|
|
{
|
|
return ZResourceType::CollisionHeader;
|
|
}
|
|
|
|
ZCollisionHeader* ZCollisionHeader::ExtractFromXML(tinyxml2::XMLElement* reader, vector<uint8_t> nRawData, int rawDataIndex)
|
|
{
|
|
ZCollisionHeader* col = new ZCollisionHeader();
|
|
|
|
|
|
|
|
return col;
|
|
}
|
|
|
|
PolygonEntry::PolygonEntry(const std::vector<uint8_t>& rawData, int rawDataIndex)
|
|
{
|
|
const uint8_t* data = rawData.data();
|
|
|
|
type = BitConverter::ToInt16BE(data, rawDataIndex + 0);
|
|
vtxA = BitConverter::ToInt16BE(data, rawDataIndex + 2);
|
|
vtxB = BitConverter::ToInt16BE(data, rawDataIndex + 4);
|
|
vtxC = BitConverter::ToInt16BE(data, rawDataIndex + 6);
|
|
a = BitConverter::ToInt16BE(data, rawDataIndex + 8);
|
|
b = BitConverter::ToInt16BE(data, rawDataIndex + 10);
|
|
c = BitConverter::ToInt16BE(data, rawDataIndex + 12);
|
|
d = BitConverter::ToInt16BE(data, rawDataIndex + 14);
|
|
}
|
|
|
|
VertexEntry::VertexEntry(const std::vector<uint8_t>& rawData, int rawDataIndex)
|
|
{
|
|
const uint8_t* data = rawData.data();
|
|
|
|
x = BitConverter::ToInt16BE(data, rawDataIndex + 0);
|
|
y = BitConverter::ToInt16BE(data, rawDataIndex + 2);
|
|
z = BitConverter::ToInt16BE(data, rawDataIndex + 4);
|
|
}
|
|
|
|
WaterBoxHeader::WaterBoxHeader(const std::vector<uint8_t>& rawData, int rawDataIndex)
|
|
{
|
|
const uint8_t* data = rawData.data();
|
|
|
|
xMin = BitConverter::ToInt16BE(data, rawDataIndex + 0);
|
|
ySurface = BitConverter::ToInt16BE(data, rawDataIndex + 2);
|
|
zMin = BitConverter::ToInt16BE(data, rawDataIndex + 4);
|
|
xLength = BitConverter::ToInt16BE(data, rawDataIndex + 6);
|
|
zLength = BitConverter::ToInt16BE(data, rawDataIndex + 8);
|
|
properties = BitConverter::ToInt32BE(data, rawDataIndex + 12);
|
|
}
|
|
|
|
CameraDataList::CameraDataList(ZFile* parent, const std::string& prefix, const std::vector<uint8_t>& rawData, int rawDataIndex, int polyTypeDefSegmentOffset, int polygonTypesCnt)
|
|
{
|
|
string declaration = "";
|
|
|
|
// Parse CameraDataEntries
|
|
int numElements = abs(polyTypeDefSegmentOffset - (rawDataIndex)) / 8;
|
|
//int numElements = polygonTypesCnt;
|
|
uint32_t cameraPosDataSeg = rawDataIndex;
|
|
for (int i = 0; i < numElements; i++)
|
|
{
|
|
CameraDataEntry* entry = new CameraDataEntry();
|
|
|
|
entry->cameraSType = BitConverter::ToInt16BE(rawData, rawDataIndex + (entries.size() * 8) + 0);
|
|
entry->numData = BitConverter::ToInt16BE(rawData, rawDataIndex + (entries.size() * 8) + 2);
|
|
entry->cameraPosDataSeg = BitConverter::ToInt32BE(rawData, rawDataIndex + (entries.size() * 8) + 4);
|
|
|
|
if (entry->cameraPosDataSeg != 0 && GETSEGNUM(entry->cameraPosDataSeg) != 2)
|
|
{
|
|
cameraPosDataSeg = rawDataIndex + (entries.size() * 8);
|
|
break;
|
|
}
|
|
|
|
if (entry->cameraPosDataSeg != 0 && cameraPosDataSeg > (entry->cameraPosDataSeg & 0xFFFFFF))
|
|
cameraPosDataSeg = (entry->cameraPosDataSeg & 0xFFFFFF);
|
|
|
|
entries.push_back(entry);
|
|
}
|
|
|
|
//setting cameraPosDataAddr to rawDataIndex give a pos list length of 0
|
|
uint32_t cameraPosDataOffset = cameraPosDataSeg & 0xFFFFFF;
|
|
for (int i = 0; i < entries.size(); i++)
|
|
{
|
|
char camSegLine[2048];
|
|
|
|
if (entries[i]->cameraPosDataSeg != 0)
|
|
{
|
|
int index = ((entries[i]->cameraPosDataSeg & 0x00FFFFFF) - cameraPosDataOffset) / 0x6;
|
|
sprintf(camSegLine, "&%s_camPosData_%08X[%i]", prefix.c_str(), cameraPosDataOffset, index);
|
|
}
|
|
else
|
|
sprintf(camSegLine, "0x%08X", entries[i]->cameraPosDataSeg);
|
|
|
|
declaration += StringHelper::Sprintf("\t{ 0x%04X, %i, %s },", entries[i]->cameraSType, entries[i]->numData, camSegLine, rawDataIndex + (i * 8));
|
|
|
|
if (i < entries.size() - 1)
|
|
declaration += "\n";
|
|
}
|
|
|
|
parent->AddDeclarationArray(rawDataIndex, DeclarationAlignment::None, entries.size() * 8, "CamData", StringHelper::Sprintf("%s_camDataList_%08X", prefix.c_str(), rawDataIndex), entries.size(), declaration);
|
|
|
|
int numDataTotal = abs(rawDataIndex - (int)cameraPosDataOffset) / 0x6;
|
|
|
|
if (numDataTotal > 0)
|
|
{
|
|
declaration = "";
|
|
for (int i = 0; i < numDataTotal; i++)
|
|
{
|
|
CameraPositionData* data = new CameraPositionData(rawData, cameraPosDataOffset + (i * 6));
|
|
cameraPositionData.push_back(data);
|
|
|
|
declaration += StringHelper::Sprintf("\t{ %6i, %6i, %6i }, // 0x%08X\n", data->x, data->y, data->z, cameraPosDataSeg + (i * 0x6));;
|
|
}
|
|
|
|
int cameraPosDataIndex = cameraPosDataSeg & 0x00FFFFFF;
|
|
int entrySize = numDataTotal * 0x6;
|
|
parent->AddDeclarationArray(cameraPosDataIndex, DeclarationAlignment::None, entrySize, "Vec3s", StringHelper::Sprintf("%s_camPosData_%08X", prefix.c_str(), cameraPosDataIndex), numDataTotal, declaration);
|
|
}
|
|
}
|
|
|
|
CameraPositionData::CameraPositionData(const std::vector<uint8_t>& rawData, int rawDataIndex)
|
|
{
|
|
x = BitConverter::ToInt16BE(rawData, rawDataIndex + 0);
|
|
y = BitConverter::ToInt16BE(rawData, rawDataIndex + 2);
|
|
z = BitConverter::ToInt16BE(rawData, rawDataIndex + 4);
|
|
}
|