mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-13 13:05:06 -05:00
35 lines
832 B
C++
35 lines
832 B
C++
|
#include "SetSpecialObjects.h"
|
||
|
|
||
|
#include "Utils/BitConverter.h"
|
||
|
#include "Utils/StringHelper.h"
|
||
|
#include "ZRoom/ZNames.h"
|
||
|
|
||
|
SetSpecialObjects::SetSpecialObjects(ZFile* nParent) : ZRoomCommand(nParent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SetSpecialObjects::ParseRawData()
|
||
|
{
|
||
|
ZRoomCommand::ParseRawData();
|
||
|
elfMessage = cmdArg1;
|
||
|
globalObject = BitConverter::ToUInt16BE(parent->GetRawData(), rawDataIndex + 0x06);
|
||
|
}
|
||
|
|
||
|
std::string SetSpecialObjects::GetBodySourceCode() const
|
||
|
{
|
||
|
std::string objectName = ZNames::GetObjectName(globalObject);
|
||
|
|
||
|
return StringHelper::Sprintf("SCENE_CMD_SPECIAL_FILES(0x%02X, %s)", elfMessage,
|
||
|
objectName.c_str());
|
||
|
}
|
||
|
|
||
|
std::string SetSpecialObjects::GetCommandCName() const
|
||
|
{
|
||
|
return "SCmdSpecialFiles";
|
||
|
}
|
||
|
|
||
|
RoomCommand SetSpecialObjects::GetRoomCommand() const
|
||
|
{
|
||
|
return RoomCommand::SetSpecialObjects;
|
||
|
}
|