mirror of
https://github.com/zeldaret/mm.git
synced 2026-08-31 09:11:00 -04:00
b6904aa2cc
* remove ZAPD submodule * git subrepo clone https://github.com/zeldaret/ZAPD.git tools/ZAPD subrepo: subdir: "tools/ZAPD" merged: "ca229f19" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "ca229f19" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * git subrepo clone https://github.com/simonlindholm/decomp-permuter.git tools/decomp-permuter subrepo: subdir: "tools/decomp-permuter" merged: "1e4b85a7" upstream: origin: "https://github.com/simonlindholm/decomp-permuter.git" branch: "main" commit: "1e4b85a7" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * Remove asm-differ * git subrepo clone https://github.com/simonlindholm/asm-differ.git tools/asm-differ subrepo: subdir: "tools/asm-differ" merged: "eaf72269" upstream: origin: "https://github.com/simonlindholm/asm-differ.git" branch: "master" commit: "eaf72269" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * remove asm-processor * git subrepo clone https://github.com/simonlindholm/asm-processor.git tools/asm-processor subrepo: subdir: "tools/asm-processor" merged: "85288fcd" upstream: origin: "https://github.com/simonlindholm/asm-processor.git" branch: "master" commit: "85288fcd" git-subrepo: version: "0.4.3" origin: "???" commit: "???" * remove .gitmodules file * Update REAMDE * Update warnings
93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
#include "ZCutsceneMM.h"
|
|
#include "BitConverter.h"
|
|
#include "StringHelper.h"
|
|
|
|
ZCutsceneMM::ZCutsceneMM(ZFile* nParent) : ZCutsceneBase(nParent)
|
|
{
|
|
}
|
|
|
|
ZCutsceneMM::~ZCutsceneMM()
|
|
{
|
|
for (CutsceneCommand* cmd : commands)
|
|
delete cmd;
|
|
}
|
|
|
|
std::string ZCutsceneMM::GetBodySourceCode()
|
|
{
|
|
std::string output = "";
|
|
|
|
output += StringHelper::Sprintf(" CS_BEGIN_CUTSCENE(%i, %i),", numCommands, endFrame);
|
|
|
|
for (size_t i = 0; i < data.size(); i++)
|
|
{
|
|
if ((i % 4) == 0)
|
|
output += "\n ";
|
|
output += StringHelper::Sprintf("0x%08X,", data[i]);
|
|
}
|
|
|
|
return output;
|
|
}
|
|
|
|
std::string ZCutsceneMM::GetSourceOutputCode(const std::string& prefix)
|
|
{
|
|
std::string bodyStr = GetBodySourceCode();
|
|
|
|
Declaration* decl = parent->GetDeclaration(rawDataIndex);
|
|
|
|
if (decl == nullptr)
|
|
DeclareVar(prefix, bodyStr);
|
|
else
|
|
decl->text = bodyStr;
|
|
|
|
return "";
|
|
}
|
|
|
|
void ZCutsceneMM::DeclareVar(const std::string& prefix, const std::string& bodyStr) const
|
|
{
|
|
std::string auxName = name;
|
|
|
|
if (auxName == "")
|
|
auxName = StringHelper::Sprintf("%sCutsceneData0x%06X", prefix.c_str(), rawDataIndex);
|
|
|
|
parent->AddDeclarationArray(getSegmentOffset(), DeclarationAlignment::Align4, GetRawDataSize(),
|
|
"s32", auxName, 0, bodyStr);
|
|
}
|
|
|
|
size_t ZCutsceneMM::GetRawDataSize() const
|
|
{
|
|
return 8 + data.size() * 4;
|
|
}
|
|
|
|
void ZCutsceneMM::ExtractFromXML(tinyxml2::XMLElement* reader, const std::vector<uint8_t>& nRawData,
|
|
const uint32_t nRawDataIndex)
|
|
{
|
|
ZResource::ExtractFromXML(reader, nRawData, nRawDataIndex);
|
|
DeclareVar(parent->GetName(), "");
|
|
}
|
|
|
|
void ZCutsceneMM::ParseRawData()
|
|
{
|
|
segmentOffset = rawDataIndex;
|
|
|
|
numCommands = BitConverter::ToInt32BE(rawData, rawDataIndex + 0);
|
|
commands = std::vector<CutsceneCommand*>();
|
|
|
|
endFrame = BitConverter::ToInt32BE(rawData, rawDataIndex + 4);
|
|
uint32_t currentPtr = rawDataIndex + 8;
|
|
uint32_t lastData = 0;
|
|
|
|
// TODO currently cutscenes aren't being parsed, so just consume words until we see an end
|
|
// marker.
|
|
do
|
|
{
|
|
lastData = BitConverter::ToInt32BE(rawData, currentPtr);
|
|
data.push_back(lastData);
|
|
currentPtr += 4;
|
|
} while (lastData != 0xFFFFFFFF);
|
|
}
|
|
|
|
ZResourceType ZCutsceneMM::GetResourceType() const
|
|
{
|
|
return ZResourceType::Cutscene;
|
|
}
|