mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-11 09:20:17 +00:00
* copy over the xml * Rename anims * A bunch of renames * minor extract_assets fixes * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "820678b4e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "820678b4e" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Change rgb5a1 to rgba16 * eye and eyebrows * some dlists * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "6be9af65d" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "6be9af65d" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
35 lines
1 KiB
C++
35 lines
1 KiB
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
#include "ZResource.h"
|
|
|
|
class ZBackground : public ZResource
|
|
{
|
|
protected:
|
|
std::vector<uint8_t> data;
|
|
|
|
public:
|
|
ZBackground(ZFile* nParent);
|
|
ZBackground(const std::string& prefix, uint32_t nRawDataIndex, ZFile* nParent);
|
|
|
|
void ParseRawData() override;
|
|
void ParseBinaryFile(const std::string& inFolder, bool appendOutName);
|
|
void ExtractFromXML(tinyxml2::XMLElement* reader, uint32_t nRawDataIndex) override;
|
|
|
|
void CheckValidJpeg(const std::string& filepath);
|
|
|
|
size_t GetRawDataSize() const override;
|
|
|
|
void DeclareVar(const std::string& prefix, const std::string& bodyStr) const;
|
|
|
|
bool IsExternalResource() const override;
|
|
std::string GetExternalExtension() const override;
|
|
void Save(const fs::path& outFolder) override;
|
|
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;
|
|
};
|