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

239 lines
4.3 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"
#include "../WorldStorage/FastNBT.h"
2014-01-18 13:16:47 +00:00
#include "../CommandOutput.h"
#include "../Root.h"
#include "../Server.h" // ExecuteConsoleCommand()
#include "../Chunk.h"
2014-08-29 12:41:50 +00:00
#include "../ChatColor.h"
2014-01-18 14:59:33 +00:00
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),
m_Result(0)
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;
/*
Vanilla requires that the server send a Block Entity Update after a command has been set
Therefore, command blocks don't support on-the-fly (when window is open) updating of a command and therefore...
...the following code can't be put in UsedBy just before the window opens
Just documenting my experience in getting this to work :P
*/
m_World->BroadcastBlockEntity(GetPosX(), GetPosY(), GetPosZ());
2014-01-18 13:16:47 +00:00
}
2014-01-18 13:40:47 +00:00
void cCommandBlockEntity::SetLastOutput(const AString & a_LastOut)
{
m_World->BroadcastBlockEntity(GetPosX(), GetPosY(), GetPosZ());
2014-01-18 13:40:47 +00:00
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)
{
2014-02-24 19:29:59 +00:00
UNUSED(a_Dt);
UNUSED(a_Chunk);
2014-01-18 13:16:47 +00:00
if (!m_ShouldExecute)
{
return false;
}
m_ShouldExecute = false;
Execute();
return true;
}
void cCommandBlockEntity::SendTo(cClientHandle & a_Client)
{
2014-01-19 19:42:25 +00:00
a_Client.SendUpdateBlockEntity(*this);
2014-01-18 13:16:47 +00:00
}
bool cCommandBlockEntity::LoadFromJson(const Json::Value & a_Value)
{
2014-01-23 12:57:04 +00:00
m_PosX = a_Value.get("x", 0).asInt();
m_PosY = a_Value.get("y", 0).asInt();
m_PosZ = a_Value.get("z", 0).asInt();
2014-01-18 13:16:47 +00:00
2014-01-23 12:57:04 +00:00
m_Command = a_Value.get("Command", "").asString();
m_LastOutput = a_Value.get("LastOutput", "").asString();
2014-04-03 07:27:17 +00:00
m_Result = (NIBBLETYPE)a_Value.get("SuccessCount", 0).asInt();
2014-01-18 13:16:47 +00:00
return true;
}
void cCommandBlockEntity::SaveToJson(Json::Value & a_Value)
{
2014-01-23 12:57:04 +00:00
a_Value["x"] = m_PosX;
a_Value["y"] = m_PosY;
a_Value["z"] = m_PosZ;
2014-01-18 13:16:47 +00:00
2014-01-23 12:57:04 +00:00
a_Value["Command"] = m_Command;
a_Value["LastOutput"] = m_LastOutput;
a_Value["SuccessCount"] = m_Result;
2014-01-18 13:16:47 +00:00
}
void cCommandBlockEntity::Execute()
{
if (m_World != NULL)
2014-01-23 12:57:04 +00:00
{
if (!m_World->AreCommandBlocksEnabled())
{
return;
}
}
2014-01-18 14:59:33 +00:00
class CommandBlockOutCb :
public cCommandOutputCallback
{
cCommandBlockEntity * m_CmdBlock;
2014-01-18 14:59:33 +00:00
public:
CommandBlockOutCb(cCommandBlockEntity * a_CmdBlock) : m_CmdBlock(a_CmdBlock) {}
2014-01-18 14:59:33 +00:00
virtual void Out(const AString & a_Text)
{
// Overwrite field
2014-08-29 12:41:50 +00:00
m_CmdBlock->SetLastOutput(cClientHandle::FormatChatPrefix(m_CmdBlock->GetWorld()->ShouldUseChatPrefixes(), "SUCCESS", cChatColor::Green, cChatColor::White) + a_Text);
2014-01-18 14:59:33 +00:00
}
} CmdBlockOutCb(this);
2014-08-29 12:41:50 +00:00
if ( // Administrator commands are not executable by command blocks
(m_Command != "stop") &&
(m_Command != "restart") &&
(m_Command != "kick") &&
(m_Command != "ban") &&
(m_Command != "ipban")
)
{
cServer * Server = cRoot::Get()->GetServer();
LOGD("cCommandBlockEntity: Executing command %s", m_Command.c_str());
Server->ExecuteConsoleCommand(m_Command, CmdBlockOutCb);
}
else
{
SetLastOutput(cClientHandle::FormatChatPrefix(GetWorld()->ShouldUseChatPrefixes(), "FAILURE", cChatColor::Rose, cChatColor::White) + "Adminstration commands can not be executed");
LOGD("cCommandBlockEntity: Prevented execution of administration command %s", m_Command.c_str());
}
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
}