Shipwright/ZAPDTR/ZAPD/ZRoom/Commands/SetTimeSettings.cpp
M4xw 5dda5762ba 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:   "???"
2022-03-22 02:54:48 +01:00

31 lines
722 B
C++

#include "SetTimeSettings.h"
#include "Utils/BitConverter.h"
#include "Utils/StringHelper.h"
SetTimeSettings::SetTimeSettings(ZFile* nParent) : ZRoomCommand(nParent)
{
}
void SetTimeSettings::ParseRawData()
{
ZRoomCommand::ParseRawData();
hour = parent->GetRawData().at(rawDataIndex + 4);
min = parent->GetRawData().at(rawDataIndex + 5);
unk = parent->GetRawData().at(rawDataIndex + 6);
}
std::string SetTimeSettings::GetBodySourceCode() const
{
return StringHelper::Sprintf("SCENE_CMD_TIME_SETTINGS(%i, %i, %i)", hour, min, unk);
}
std::string SetTimeSettings::GetCommandCName() const
{
return "SCmdTimeSettings";
}
RoomCommand SetTimeSettings::GetRoomCommand() const
{
return RoomCommand::SetTimeSettings;
}