mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-13 18:30:35 +00:00
* remove fake match * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "3e9ed72e2" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "3e9ed72e2" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * new extraction script and a hack to make clear tag work * fix clear tag again * remove static from clear tag DLists * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "e7a8a48cf" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "e7a8a48cf" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "e243634e5" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "e243634e5" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "d0cd6b397" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "d0cd6b397" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * Update ovl_En_Clear_Tag.xml
113 lines
2.4 KiB
C++
113 lines
2.4 KiB
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "ZResource.h"
|
|
|
|
// TODO: check if more types exists
|
|
enum class ZLimbSkinType
|
|
{
|
|
SkinType_0, // Segment = 0
|
|
SkinType_4 = 4, // Segment = segmented address // Struct_800A5E28
|
|
SkinType_5 = 5, // Segment = 0
|
|
SkinType_DList = 11, // Segment = DList address
|
|
};
|
|
|
|
class Struct_800A57C0 : public ZResource
|
|
{
|
|
public:
|
|
Struct_800A57C0(ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
protected:
|
|
uint16_t unk_0;
|
|
int16_t unk_2;
|
|
int16_t unk_4;
|
|
int8_t unk_6;
|
|
int8_t unk_7;
|
|
int8_t unk_8;
|
|
uint8_t unk_9;
|
|
};
|
|
|
|
class Struct_800A598C_2 : public ZResource
|
|
{
|
|
public:
|
|
Struct_800A598C_2(ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
protected:
|
|
uint8_t unk_0;
|
|
int16_t x;
|
|
int16_t y;
|
|
int16_t z;
|
|
uint8_t unk_8;
|
|
};
|
|
|
|
class Struct_800A598C : public ZResource
|
|
{
|
|
public:
|
|
Struct_800A598C(ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
protected:
|
|
uint16_t unk_0; // Length of unk_8
|
|
uint16_t unk_2; // Length of unk_C
|
|
uint16_t unk_4; // 0 or 1 // Used as an index for unk_C
|
|
segptr_t unk_8; // Struct_800A57C0*
|
|
segptr_t unk_C; // Struct_800A598C_2*
|
|
|
|
std::vector<Struct_800A57C0> unk_8_arr;
|
|
std::vector<Struct_800A598C_2> unk_C_arr;
|
|
};
|
|
|
|
class Struct_800A5E28 : public ZResource
|
|
{
|
|
public:
|
|
Struct_800A5E28(ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
protected:
|
|
uint16_t unk_0; // Vtx count
|
|
uint16_t unk_2; // Length of unk_4
|
|
segptr_t unk_4; // Struct_800A598C*
|
|
segptr_t unk_8; // Gfx*
|
|
|
|
std::vector<Struct_800A598C> unk_4_arr;
|
|
// ZDisplayList* unk_8_dlist = nullptr;
|
|
};
|