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: "???"
31 lines
710 B
C++
31 lines
710 B
C++
#include "SetTimeSettings.h"
|
|
#include "BitConverter.h"
|
|
#include "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;
|
|
}
|