mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-20 13:23:45 -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/SetStartPositionList.cpp
Normal file
66
ZAPDTR/ZAPD/ZRoom/Commands/SetStartPositionList.cpp
Normal file
|
@ -0,0 +1,66 @@
|
|||
#include "SetStartPositionList.h"
|
||||
|
||||
#include "Globals.h"
|
||||
#include "Utils/BitConverter.h"
|
||||
#include "Utils/StringHelper.h"
|
||||
#include "ZFile.h"
|
||||
#include "ZRoom/ZNames.h"
|
||||
#include "ZRoom/ZRoom.h"
|
||||
|
||||
SetStartPositionList::SetStartPositionList(ZFile* nParent) : ZRoomCommand(nParent)
|
||||
{
|
||||
}
|
||||
|
||||
void SetStartPositionList::ParseRawData()
|
||||
{
|
||||
ZRoomCommand::ParseRawData();
|
||||
uint8_t numActors = cmdArg1;
|
||||
|
||||
uint32_t currentPtr = segmentOffset;
|
||||
|
||||
for (int32_t i = 0; i < numActors; i++)
|
||||
{
|
||||
actors.push_back(ActorSpawnEntry(parent->GetRawData(), currentPtr));
|
||||
currentPtr += 16;
|
||||
}
|
||||
}
|
||||
|
||||
void SetStartPositionList::DeclareReferences(const std::string& prefix)
|
||||
{
|
||||
if (!actors.empty())
|
||||
{
|
||||
std::string declaration;
|
||||
|
||||
size_t index = 0;
|
||||
for (const auto& entry : actors)
|
||||
{
|
||||
declaration += StringHelper::Sprintf(" { %s },", entry.GetBodySourceCode().c_str());
|
||||
if (index + 1 < actors.size())
|
||||
declaration += "\n";
|
||||
|
||||
index++;
|
||||
}
|
||||
|
||||
parent->AddDeclarationArray(
|
||||
segmentOffset, DeclarationAlignment::Align4, actors.size() * 16, "ActorEntry",
|
||||
StringHelper::Sprintf("%sStartPositionList0x%06X", prefix.c_str(), segmentOffset),
|
||||
actors.size(), declaration);
|
||||
}
|
||||
}
|
||||
|
||||
std::string SetStartPositionList::GetBodySourceCode() const
|
||||
{
|
||||
std::string listName;
|
||||
Globals::Instance->GetSegmentedPtrName(cmdArg2, parent, "ActorEntry", listName);
|
||||
return StringHelper::Sprintf("SCENE_CMD_SPAWN_LIST(%i, %s)", actors.size(), listName.c_str());
|
||||
}
|
||||
|
||||
std::string SetStartPositionList::GetCommandCName() const
|
||||
{
|
||||
return "SCmdSpawnList";
|
||||
}
|
||||
|
||||
RoomCommand SetStartPositionList::GetRoomCommand() const
|
||||
{
|
||||
return RoomCommand::SetStartPositionList;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue