2022-03-21 21:54:48 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "ZDisplayList.h"
|
|
|
|
#include "ZFile.h"
|
|
|
|
#include "ZLimb.h"
|
|
|
|
|
|
|
|
enum class ZSkeletonType
|
|
|
|
{
|
|
|
|
Normal,
|
|
|
|
Flex,
|
|
|
|
Curve,
|
|
|
|
};
|
|
|
|
|
|
|
|
class ZLimbTable : public ZResource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ZLimbType limbType = ZLimbType::Standard;
|
|
|
|
size_t count = 0;
|
2023-05-07 19:58:50 -04:00
|
|
|
|
2022-03-21 21:54:48 -04:00
|
|
|
std::vector<segptr_t> limbsAddresses;
|
2023-05-07 19:58:50 -04:00
|
|
|
std::vector<ZLimb*> limbsReferences; // borrowed pointers, do not delete!
|
|
|
|
|
|
|
|
// XML attributes
|
|
|
|
std::string enumName;
|
|
|
|
std::string limbNoneName;
|
|
|
|
std::string limbMaxName;
|
2022-03-21 21:54:48 -04:00
|
|
|
|
|
|
|
ZLimbTable(ZFile* nParent);
|
|
|
|
|
|
|
|
void ExtractFromBinary(uint32_t nRawDataIndex, ZLimbType nLimbType, size_t nCount);
|
|
|
|
|
|
|
|
void ParseXML(tinyxml2::XMLElement* reader) override;
|
|
|
|
void ParseRawData() override;
|
|
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
|
|
|
|
Declaration* DeclareVar(const std::string& prefix, const std::string& bodyStr) override;
|
|
|
|
|
|
|
|
std::string GetBodySourceCode() const override;
|
|
|
|
|
2023-05-07 19:58:50 -04:00
|
|
|
std::string GetSourceOutputHeader([[maybe_unused]] const std::string& prefix);
|
|
|
|
|
2022-03-21 21:54:48 -04:00
|
|
|
std::string GetSourceTypeName() const override;
|
|
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
|
|
|
|
size_t GetRawDataSize() const override;
|
2023-05-07 19:58:50 -04:00
|
|
|
|
|
|
|
std::string GetLimbEnumName(uint8_t limbIndex) const;
|
2022-03-21 21:54:48 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
class ZSkeleton : public ZResource
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ZSkeletonType type = ZSkeletonType::Normal;
|
|
|
|
ZLimbType limbType = ZLimbType::Standard;
|
2023-05-07 19:58:50 -04:00
|
|
|
std::string enumName;
|
|
|
|
std::string limbNoneName;
|
|
|
|
std::string limbMaxName;
|
|
|
|
|
2022-03-21 21:54:48 -04:00
|
|
|
segptr_t limbsArrayAddress;
|
|
|
|
uint8_t limbCount = 0;
|
|
|
|
uint8_t dListCount = 0; // FLEX SKELETON ONLY
|
|
|
|
|
|
|
|
ZSkeleton(ZFile* nParent);
|
|
|
|
|
|
|
|
void ParseXML(tinyxml2::XMLElement* reader) override;
|
|
|
|
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;
|
|
|
|
DeclarationAlignment GetDeclarationAlignment() const override;
|
|
|
|
|
|
|
|
uint8_t GetLimbCount();
|
2023-05-07 19:58:50 -04:00
|
|
|
|
|
|
|
ZLimbTable* limbsTable = nullptr; // borrowed pointer, do not delete!
|
|
|
|
|
2022-03-21 21:54:48 -04:00
|
|
|
};
|