mirror of
https://github.com/zeldaret/mm.git
synced 2026-06-30 02:48:57 -04:00
b2747aa8b4
* git subrepo pull tools/asm-differ --force subrepo: subdir: "tools/asm-differ" merged: "d218cdf0" upstream: origin: "https://github.com/simonlindholm/asm-differ.git" branch: "main" commit: "d218cdf0" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/graphovl --force subrepo: subdir: "tools/graphovl" merged: "f5fe93d7" upstream: origin: "https://github.com/AngheloAlf/graphovl.git" branch: "master" commit: "f5fe93d7" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/ZAPD --force subrepo: subdir: "tools/ZAPD" merged: "e7a8a48c" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "e7a8a48c" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/graphovl --force subrepo: subdir: "tools/graphovl" merged: "d14ea084" upstream: origin: "https://github.com/AngheloAlf/graphovl.git" branch: "master" commit: "d14ea084" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/ZAPD --force subrepo: subdir: "tools/ZAPD" merged: "e243634e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "e243634e" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/decomp-permuter --force subrepo: subdir: "tools/decomp-permuter" merged: "d1294dfa0" upstream: origin: "https://github.com/simonlindholm/decomp-permuter.git" branch: "main" commit: "d1294dfa0" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/graphovl --force subrepo: subdir: "tools/graphovl" merged: "f5fe93d75" upstream: origin: "https://github.com/AngheloAlf/graphovl.git" branch: "master" commit: "f5fe93d75" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull tools/ZAPD --force subrepo: subdir: "tools/ZAPD" merged: "d0cd6b397" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "d0cd6b397" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * add ExternalXMLFolder config * git subrepo pull --force tools/decomp-permuter subrepo: subdir: "tools/decomp-permuter" merged: "a20bac942" upstream: origin: "https://github.com/simonlindholm/decomp-permuter.git" branch: "main" commit: "a20bac942" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull --force tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "4f7b8393e" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "4f7b8393e" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * git subrepo pull --force tools/asm-differ subrepo: subdir: "tools/asm-differ" merged: "f30d43ace" upstream: origin: "https://github.com/simonlindholm/asm-differ.git" branch: "main" commit: "f30d43ace" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596" * Remove Segment="128"
120 lines
2.7 KiB
C++
120 lines
2.7 KiB
C++
#include "ZBlob.h"
|
|
|
|
#include "Globals.h"
|
|
#include "Utils/BitConverter.h"
|
|
#include "Utils/File.h"
|
|
#include "Utils/Path.h"
|
|
#include "Utils/StringHelper.h"
|
|
#include "ZFile.h"
|
|
|
|
REGISTER_ZFILENODE(Blob, ZBlob);
|
|
|
|
ZBlob::ZBlob(ZFile* nParent) : ZResource(nParent)
|
|
{
|
|
RegisterRequiredAttribute("Size");
|
|
}
|
|
|
|
ZBlob* ZBlob::FromFile(const std::string& filePath)
|
|
{
|
|
ZBlob* blob = new ZBlob(nullptr);
|
|
blob->name = StringHelper::Split(Path::GetFileNameWithoutExtension(filePath), ".")[0];
|
|
blob->blobData = File::ReadAllBytes(filePath);
|
|
|
|
return blob;
|
|
}
|
|
|
|
void ZBlob::ParseXML(tinyxml2::XMLElement* reader)
|
|
{
|
|
ZResource::ParseXML(reader);
|
|
|
|
blobSize = StringHelper::StrToL(registeredAttributes.at("Size").value, 16);
|
|
}
|
|
|
|
void ZBlob::ParseRawData()
|
|
{
|
|
blobData.assign(parent->GetRawData().begin() + rawDataIndex,
|
|
parent->GetRawData().begin() + rawDataIndex + blobSize);
|
|
}
|
|
|
|
Declaration* ZBlob::DeclareVar(const std::string& prefix,
|
|
[[maybe_unused]] const std::string& bodyStr)
|
|
{
|
|
std::string auxName = name;
|
|
std::string auxOutName = outName;
|
|
|
|
if (auxName == "")
|
|
auxName = GetDefaultName(prefix);
|
|
|
|
if (auxOutName == "")
|
|
auxOutName = GetDefaultName(prefix);
|
|
|
|
std::string path = Path::GetFileNameWithoutExtension(auxOutName);
|
|
|
|
std::string assetOutDir =
|
|
(Globals::Instance->outputPath / Path::GetFileNameWithoutExtension(GetOutName())).string();
|
|
|
|
std::string incStr =
|
|
StringHelper::Sprintf("%s.%s.inc.c", assetOutDir.c_str(), GetExternalExtension().c_str());
|
|
|
|
return parent->AddDeclarationIncludeArray(rawDataIndex, incStr, GetRawDataSize(),
|
|
GetSourceTypeName(), auxName, blobData.size());
|
|
}
|
|
|
|
std::string ZBlob::GetBodySourceCode() const
|
|
{
|
|
std::string sourceOutput;
|
|
|
|
for (size_t i = 0; i < blobData.size(); i += 1)
|
|
{
|
|
if (i % 16 == 0)
|
|
sourceOutput += "\t";
|
|
|
|
sourceOutput += StringHelper::Sprintf("0x%02X, ", blobData[i]);
|
|
|
|
if (i % 16 == 15)
|
|
sourceOutput += "\n";
|
|
}
|
|
|
|
// Ensure there's always a trailing line feed to prevent dumb warnings.
|
|
// Please don't remove this line, unless you somehow made a way to prevent
|
|
// that warning when building the OoT repo.
|
|
sourceOutput += "\n";
|
|
|
|
return sourceOutput;
|
|
}
|
|
|
|
std::string ZBlob::GetSourceOutputHeader([[maybe_unused]] const std::string& prefix)
|
|
{
|
|
return StringHelper::Sprintf("extern u8 %s[];\n", name.c_str());
|
|
}
|
|
|
|
void ZBlob::Save(const fs::path& outFolder)
|
|
{
|
|
File::WriteAllBytes((outFolder / (name + ".bin")).string(), blobData);
|
|
}
|
|
|
|
bool ZBlob::IsExternalResource() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
std::string ZBlob::GetExternalExtension() const
|
|
{
|
|
return "bin";
|
|
}
|
|
|
|
std::string ZBlob::GetSourceTypeName() const
|
|
{
|
|
return "u8";
|
|
}
|
|
|
|
ZResourceType ZBlob::GetResourceType() const
|
|
{
|
|
return ZResourceType::Blob;
|
|
}
|
|
|
|
size_t ZBlob::GetRawDataSize() const
|
|
{
|
|
return blobSize;
|
|
}
|