mirror of
https://github.com/zeldaret/oot
synced 2026-08-27 00:13:55 -04:00
5de22b5036
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: "???"
59 lines
1.4 KiB
C++
59 lines
1.4 KiB
C++
#include "SetPathways.h"
|
|
#include "BitConverter.h"
|
|
#include "Globals.h"
|
|
#include "StringHelper.h"
|
|
#include "ZFile.h"
|
|
#include "ZRoom/ZRoom.h"
|
|
|
|
SetPathways::SetPathways(ZFile* nParent) : ZRoomCommand(nParent), pathwayList(nParent)
|
|
{
|
|
}
|
|
|
|
void SetPathways::DeclareReferences(const std::string& prefix)
|
|
{
|
|
if (segmentOffset != 0)
|
|
parent->AddDeclarationPlaceholder(segmentOffset);
|
|
}
|
|
|
|
void SetPathways::ParseRawDataLate()
|
|
{
|
|
if (Globals::Instance->game == ZGame::MM_RETAIL)
|
|
{
|
|
auto numPaths = zRoom->GetDeclarationSizeFromNeighbor(segmentOffset) / 8;
|
|
pathwayList.SetNumPaths(numPaths);
|
|
}
|
|
|
|
pathwayList.SetRawDataIndex(segmentOffset);
|
|
pathwayList.ParseRawData();
|
|
}
|
|
|
|
void SetPathways::DeclareReferencesLate(const std::string& prefix)
|
|
{
|
|
pathwayList.SetName(StringHelper::Sprintf("%sPathway_%06X", prefix.c_str(), segmentOffset));
|
|
pathwayList.DeclareReferences(prefix);
|
|
pathwayList.GetSourceOutputCode(prefix);
|
|
}
|
|
|
|
std::string SetPathways::GetBodySourceCode() const
|
|
{
|
|
std::string listName = parent->GetDeclarationPtrName(cmdArg2);
|
|
return StringHelper::Sprintf("SCENE_CMD_PATH_LIST(%s)", listName.c_str());
|
|
}
|
|
|
|
size_t SetPathways::GetRawDataSize() const
|
|
{
|
|
int32_t size = pathwayList.GetRawDataSize();
|
|
|
|
return ZRoomCommand::GetRawDataSize() + size;
|
|
}
|
|
|
|
std::string SetPathways::GetCommandCName() const
|
|
{
|
|
return "SCmdPathList";
|
|
}
|
|
|
|
RoomCommand SetPathways::GetRoomCommand() const
|
|
{
|
|
return RoomCommand::SetPathways;
|
|
}
|