mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-23 23:41:24 +00:00
ZAPD update (#612)
* remove roompoly * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "fd4d53a26" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "fd4d53a26" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
parent
5c6335f9fb
commit
1ff2f0f849
171 changed files with 1567 additions and 826 deletions
|
@ -20,14 +20,14 @@ class ZAnimation : public ZResource
|
|||
public:
|
||||
|
||||
int16_t frameCount;
|
||||
|
||||
|
||||
ZAnimation();
|
||||
|
||||
std::string GetSourceOutputCode(std::string prefix);
|
||||
std::string GetSourceOutputCode(const std::string& prefix);
|
||||
protected:
|
||||
|
||||
virtual void ParseRawData();
|
||||
void Save(std::string outFolder);
|
||||
void Save(const std::string& outFolder);
|
||||
void ParseXML(tinyxml2::XMLElement* reader);
|
||||
};
|
||||
|
||||
|
@ -39,13 +39,13 @@ public:
|
|||
uint32_t rotationValuesSeg;
|
||||
uint32_t rotationIndicesSeg;
|
||||
int16_t limit;
|
||||
|
||||
|
||||
ZNormalAnimation();
|
||||
|
||||
std::string GetSourceOutputCode(std::string prefix);
|
||||
std::string GetSourceOutputCode(const std::string& prefix);
|
||||
virtual int GetRawDataSize();
|
||||
|
||||
static ZNormalAnimation* ExtractFromXML(tinyxml2::XMLElement* reader, std::vector<uint8_t> nRawData, int rawDataIndex, std::string nRelPath);
|
||||
static ZNormalAnimation* ExtractFromXML(tinyxml2::XMLElement* reader, std::vector<uint8_t> nRawData, int rawDataIndex, const std::string& nRelPath);
|
||||
|
||||
protected:
|
||||
virtual void ParseRawData();
|
||||
|
@ -58,11 +58,11 @@ public:
|
|||
|
||||
ZLinkAnimation();
|
||||
|
||||
std::string GetSourceOutputCode(std::string prefix);
|
||||
std::string GetSourceOutputCode(const std::string& prefix);
|
||||
virtual int GetRawDataSize();
|
||||
|
||||
static ZLinkAnimation* ExtractFromXML(tinyxml2::XMLElement* reader, std::vector<uint8_t> nRawData, int rawDataIndex, std::string nRelPath);
|
||||
static ZLinkAnimation* ExtractFromXML(tinyxml2::XMLElement* reader, std::vector<uint8_t> nRawData, int rawDataIndex, const std::string& nRelPath);
|
||||
|
||||
protected:
|
||||
virtual void ParseRawData();
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue