mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-20 05:13:39 -07:00
git subrepo clone https://github.com/HarbourMasters/ZAPDTR.git
subrepo: subdir: "ZAPDTR" merged: "a53a53ea4" upstream: origin: "https://github.com/HarbourMasters/ZAPDTR.git" branch: "master" commit: "a53a53ea4" git-subrepo: version: "0.4.1" origin: "???" commit: "???"
This commit is contained in:
parent
f52a2a6406
commit
5dda5762ba
217 changed files with 47152 additions and 0 deletions
66
ZAPDTR/ZAPD/ZRoom/Commands/SetObjectList.cpp
Normal file
66
ZAPDTR/ZAPD/ZRoom/Commands/SetObjectList.cpp
Normal file
|
@ -0,0 +1,66 @@
|
|||
#include "SetObjectList.h"
|
||||
|
||||
#include "Globals.h"
|
||||
#include "Utils/BitConverter.h"
|
||||
#include "Utils/StringHelper.h"
|
||||
#include "ZFile.h"
|
||||
#include "ZRoom/ZNames.h"
|
||||
#include "ZRoom/ZRoom.h"
|
||||
|
||||
SetObjectList::SetObjectList(ZFile* nParent) : ZRoomCommand(nParent)
|
||||
{
|
||||
}
|
||||
|
||||
void SetObjectList::ParseRawData()
|
||||
{
|
||||
ZRoomCommand::ParseRawData();
|
||||
uint8_t objectCnt = parent->GetRawData().at(rawDataIndex + 1);
|
||||
uint32_t currentPtr = segmentOffset;
|
||||
|
||||
for (uint8_t i = 0; i < objectCnt; i++)
|
||||
{
|
||||
uint16_t objectIndex = BitConverter::ToInt16BE(parent->GetRawData(), currentPtr);
|
||||
objects.push_back(objectIndex);
|
||||
currentPtr += 2;
|
||||
}
|
||||
}
|
||||
|
||||
void SetObjectList::DeclareReferences(const std::string& prefix)
|
||||
{
|
||||
if (!objects.empty())
|
||||
{
|
||||
std::string declaration;
|
||||
|
||||
for (size_t i = 0; i < objects.size(); i++)
|
||||
{
|
||||
uint16_t objectIndex = objects[i];
|
||||
declaration +=
|
||||
StringHelper::Sprintf(" %s,", ZNames::GetObjectName(objectIndex).c_str());
|
||||
|
||||
if (i < objects.size() - 1)
|
||||
declaration += "\n";
|
||||
}
|
||||
|
||||
parent->AddDeclarationArray(
|
||||
segmentOffset, DeclarationAlignment::Align4, objects.size() * 2, "s16",
|
||||
StringHelper::Sprintf("%sObjectList_%06X", prefix.c_str(), segmentOffset),
|
||||
objects.size(), declaration);
|
||||
}
|
||||
}
|
||||
|
||||
std::string SetObjectList::GetBodySourceCode() const
|
||||
{
|
||||
std::string listName;
|
||||
Globals::Instance->GetSegmentedPtrName(cmdArg2, parent, "s16", listName);
|
||||
return StringHelper::Sprintf("SCENE_CMD_OBJECT_LIST(%i, %s)", objects.size(), listName.c_str());
|
||||
}
|
||||
|
||||
std::string SetObjectList::GetCommandCName() const
|
||||
{
|
||||
return "SCmdObjectList";
|
||||
}
|
||||
|
||||
RoomCommand SetObjectList::GetRoomCommand() const
|
||||
{
|
||||
return RoomCommand::SetObjectList;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue