mirror of
https://github.com/zeldaret/oot
synced 2026-07-03 04:53:11 -04:00
515ebdce9d
* git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "769f5702a" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "769f5702a" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Add `libpng` to readme * Remove `-ifp` since it doesn't exists anymore in ZAPD * Remove extra print I added * Add UNK_09 macro and other minor fixes * Simplify PNG rules * simplify gitignore * Update README.md Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> * Update dockerfile * basic instructions for cygwin and mac * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "86160be69" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "86160be69" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Change nanoseconds to seconds in extract_assets.py Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
86 lines
1.6 KiB
C++
86 lines
1.6 KiB
C++
#include "ZVtx.h"
|
|
#include "BitConverter.h"
|
|
#include "StringHelper.h"
|
|
#include "ZFile.h"
|
|
|
|
REGISTER_ZFILENODE(Vtx, ZVtx);
|
|
|
|
ZVtx::ZVtx(ZFile* nParent) : ZResource(nParent)
|
|
{
|
|
x = 0;
|
|
y = 0;
|
|
z = 0;
|
|
flag = 0;
|
|
s = 0;
|
|
t = 0;
|
|
r = 0;
|
|
g = 0;
|
|
b = 0;
|
|
a = 0;
|
|
}
|
|
|
|
void ZVtx::ParseRawData()
|
|
{
|
|
x = BitConverter::ToInt16BE(rawData, rawDataIndex + 0);
|
|
y = BitConverter::ToInt16BE(rawData, rawDataIndex + 2);
|
|
z = BitConverter::ToInt16BE(rawData, rawDataIndex + 4);
|
|
flag = BitConverter::ToInt16BE(rawData, rawDataIndex + 6);
|
|
s = BitConverter::ToInt16BE(rawData, rawDataIndex + 8);
|
|
t = BitConverter::ToInt16BE(rawData, rawDataIndex + 10);
|
|
r = rawData[rawDataIndex + 12];
|
|
g = rawData[rawDataIndex + 13];
|
|
b = rawData[rawDataIndex + 14];
|
|
a = rawData[rawDataIndex + 15];
|
|
}
|
|
|
|
std::string ZVtx::GetBodySourceCode() const
|
|
{
|
|
return StringHelper::Sprintf("VTX(%i, %i, %i, %i, %i, %i, %i, %i, %i)", x, y, z, s, t, r, g, b,
|
|
a);
|
|
}
|
|
|
|
std::string ZVtx::GetSourceOutputCode(const std::string& prefix)
|
|
{
|
|
std::string output = GetBodySourceCode();
|
|
|
|
if (parent != nullptr)
|
|
{
|
|
Declaration* decl =
|
|
parent->AddDeclaration(rawDataIndex, DeclarationAlignment::Align16, GetRawDataSize(),
|
|
GetSourceTypeName(), name, output);
|
|
decl->isExternal = true;
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
size_t ZVtx::GetRawDataSize() const
|
|
{
|
|
return 16;
|
|
}
|
|
|
|
bool ZVtx::DoesSupportArray() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
ZResourceType ZVtx::GetResourceType() const
|
|
{
|
|
return ZResourceType::Vertex;
|
|
}
|
|
|
|
bool ZVtx::IsExternalResource() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
std::string ZVtx::GetSourceTypeName() const
|
|
{
|
|
return "Vtx";
|
|
}
|
|
|
|
std::string ZVtx::GetExternalExtension() const
|
|
{
|
|
return "vtx";
|
|
}
|