1
0
Fork 0
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:
fig02 2021-01-08 19:38:28 -05:00 committed by GitHub
parent 5c6335f9fb
commit 1ff2f0f849
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
171 changed files with 1567 additions and 826 deletions

View file

@ -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();
};
};