1
0
Fork 0
cuberite-2a/src/BlockEntities/CommandBlockEntity.cpp

198 lines
2.7 KiB
C++
Raw Normal View History

2014-01-18 13:16:47 +00:00
// CommandBlockEntity.cpp
// Implements the cCommandBlockEntity class representing a single command block in the world
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "json/json.h"
#include "CommandBlockEntity.h"
#include "../Entities/Player.h"
2014-01-18 14:59:33 +00:00
#include "CommandOutput.h"
#include "Root.h"
#include "Server.h" // ExecuteConsoleCommand()
2014-01-18 13:16:47 +00:00
cCommandBlockEntity::cCommandBlockEntity(int a_X, int a_Y, int a_Z, cWorld * a_World) :
super(E_BLOCK_COMMAND_BLOCK, a_X, a_Y, a_Z, a_World),
m_ShouldExecute(false),
m_IsPowered(false)
2014-01-18 19:27:54 +00:00
{}
2014-01-18 13:16:47 +00:00
void cCommandBlockEntity::UsedBy(cPlayer * a_Player)
{
2014-01-18 19:27:54 +00:00
// Nothing to do
UNUSED(a_Player);
2014-01-18 13:16:47 +00:00
}
void cCommandBlockEntity::SetCommand(const AString & a_Cmd)
{
2014-01-18 14:59:33 +00:00
m_Command = a_Cmd;
2014-01-18 13:16:47 +00:00
}
2014-01-18 13:40:47 +00:00
void cCommandBlockEntity::SetLastOutput(const AString & a_LastOut)
{
m_LastOutput = a_LastOut;
}
void cCommandBlockEntity::SetResult(const NIBBLETYPE a_Result)
{
m_Result = a_Result;
}
2014-01-18 13:16:47 +00:00
const AString & cCommandBlockEntity::GetCommand(void) const
{
return m_Command;
}
const AString & cCommandBlockEntity::GetLastOutput(void) const
{
return m_LastOutput;
}
2014-01-18 13:40:47 +00:00
NIBBLETYPE cCommandBlockEntity::GetResult(void) const
{
return m_Result;
}
2014-01-18 13:16:47 +00:00
void cCommandBlockEntity::Activate(void)
{
m_ShouldExecute = true;
}
void cCommandBlockEntity::SetRedstonePower(bool a_IsPowered)
{
if (a_IsPowered && !m_IsPowered)
{
Activate();
}
m_IsPowered = a_IsPowered;
}
bool cCommandBlockEntity::Tick(float a_Dt, cChunk & a_Chunk)
{
if (!m_ShouldExecute)
{
return false;
}
m_ShouldExecute = false;
Execute();
return true;
}
void cCommandBlockEntity::SendTo(cClientHandle & a_Client)
{
// Nothing needs to be sent
UNUSED(a_Client);
}
bool cCommandBlockEntity::LoadFromJson(const Json::Value & a_Value)
{
m_Command = a_Value.get("Command", "").asString();
m_LastOutput = a_Value.get("LastOutput", "").asString();
return true;
}
void cCommandBlockEntity::SaveToJson(Json::Value & a_Value)
{
a_Value["Command"] = m_Command;
a_Value["LastOutput"] = m_LastOutput;
}
void cCommandBlockEntity::Execute()
{
2014-01-18 14:59:33 +00:00
class CommandBlockOutCb :
public cCommandOutputCallback
{
cCommandBlockEntity* m_CmdBlock;
public:
CommandBlockOutCb(cCommandBlockEntity* a_CmdBlock) : m_CmdBlock(a_CmdBlock) {}
virtual void Out(const AString & a_Text)
{
ASSERT(m_CmdBlock != NULL);
// Overwrite field
m_CmdBlock->SetLastOutput(a_Text);
}
} CmdBlockOutCb(this);
2014-01-18 17:58:46 +00:00
LOGD("cCommandBlockEntity: Executing command %s", m_Command.c_str());
2014-01-18 14:59:33 +00:00
cServer* Server = cRoot::Get()->GetServer();
2014-01-18 13:40:47 +00:00
2014-01-18 14:59:33 +00:00
Server->ExecuteConsoleCommand(m_Command, CmdBlockOutCb);
2014-01-18 13:40:47 +00:00
2014-01-18 14:59:33 +00:00
// TODO 2014-01-18 xdot: Update the signal strength.
2014-01-18 13:40:47 +00:00
m_Result = 0;
2014-01-18 13:16:47 +00:00
}