mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-11 17:30:25 +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>
31 lines
897 B
C++
31 lines
897 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include "ZResource.h"
|
|
|
|
class ZMtx : public ZResource
|
|
{
|
|
public:
|
|
ZMtx(ZFile* nParent);
|
|
ZMtx(const std::string& prefix, const std::vector<uint8_t>& nRawData, uint32_t nRawDataIndex,
|
|
ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
void ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
|
|
uint32_t nRawDataIndex) override;
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
void DeclareVar(const std::string& prefix, const std::string& bodyStr) const;
|
|
|
|
std::string GetBodySourceCode();
|
|
std::string GetSourceOutputCode(const std::string& prefix) override;
|
|
static std::string GetDefaultName(const std::string& prefix, uint32_t address);
|
|
|
|
std::string GetSourceTypeName() const override;
|
|
ZResourceType GetResourceType() const override;
|
|
|
|
protected:
|
|
std::array<std::array<int32_t, 4>, 4> mtx;
|
|
};
|