mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-12 09:50:50 +00:00
* 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>
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "ZResource.h"
|
|
#include "ZVector.h"
|
|
|
|
class PathwayEntry : public ZResource
|
|
{
|
|
public:
|
|
PathwayEntry(ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const;
|
|
segptr_t GetListAddress() const;
|
|
|
|
protected:
|
|
int32_t numPoints;
|
|
int8_t unk1; // (MM Only)
|
|
int16_t unk2; // (MM Only)
|
|
segptr_t listSegmentAddress;
|
|
std::vector<ZVector> points;
|
|
};
|
|
|
|
class ZPath : public ZResource
|
|
{
|
|
public:
|
|
ZPath(ZFile* nParent);
|
|
|
|
void ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
|
|
const uint32_t nRawDataIndex);
|
|
|
|
void ParseXML(tinyxml2::XMLElement* reader) override;
|
|
void ParseRawData() override;
|
|
void DeclareReferences(const std::string& prefix) override;
|
|
|
|
std::string GetBodySourceCode() const;
|
|
std::string GetSourceOutputCode(const std::string& prefix) override;
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
void SetNumPaths(uint32_t nNumPaths);
|
|
|
|
protected:
|
|
uint32_t numPaths;
|
|
std::vector<PathwayEntry> pathways;
|
|
};
|