mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-23 23:41:24 +00:00
* Updated config file * Added missing files * Temporarily removed asm_processor changes. * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "96ffc1e62" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "96ffc1e62" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "179af7d11" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "179af7d11" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Cleanup and fixes. * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "50ad2fe78" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "50ad2fe78" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Makefile fix * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "b9120803e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "b9120803e" git-subrepo: version: "0.4.3" origin: "???" commit: "???" Co-authored-by: Jack Walker <7463599+Jack-Walker@users.noreply.github.com>
27 lines
1,018 B
C++
27 lines
1,018 B
C++
#pragma once
|
|
|
|
#include "ZResource.h"
|
|
#include "tinyxml2.h"
|
|
|
|
class ZBlob : public ZResource
|
|
{
|
|
public:
|
|
ZBlob(ZFile* nParent);
|
|
ZBlob(const std::vector<uint8_t>& nRawData, uint32_t rawDataIndex, size_t size,
|
|
std::string nName, ZFile* nParent);
|
|
|
|
void ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
|
|
const uint32_t nRawDataIndex,
|
|
const std::string& nRelPath) override; // Extract Mode
|
|
|
|
static ZBlob* BuildFromXML(tinyxml2::XMLElement* reader, const std::string& inFolder,
|
|
bool readFile);
|
|
static ZBlob* FromFile(const std::string& filePath);
|
|
std::string GetSourceOutputCode(const std::string& prefix) override;
|
|
std::string GetSourceOutputHeader(const std::string& prefix) override;
|
|
void Save(const std::string& outFolder) override;
|
|
bool IsExternalResource() override;
|
|
std::string GetExternalExtension() override;
|
|
std::string GetSourceTypeName() override;
|
|
ZResourceType GetResourceType() override;
|
|
};
|