summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/CommandBlockEntity.h
blob: 0f93ff916529304d3ce8e0c7a6d5fdd0a1eb2945 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83

// CommandBlockEntity.h

// Declares the cCommandBlockEntity class representing a single command block in the world





#pragma once

#include "BlockEntity.h"
#include "RedstonePoweredEntity.h"





// tolua_begin

class cCommandBlockEntity :
	public cBlockEntity,
	public cRedstonePoweredEntity
{
	typedef cBlockEntity super;
	
public:

	// tolua_end
	
	BLOCKENTITY_PROTODEF(cCommandBlockEntity)
	
	/** Creates a new empty command block entity */
	cCommandBlockEntity(int a_X, int a_Y, int a_Z, cWorld * a_World);

	virtual bool Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
	virtual void SendTo(cClientHandle & a_Client) override;
	virtual bool UsedBy(cPlayer * a_Player) override;

	void SetLastOutput(const AString & a_LastOut);

	void SetResult(const NIBBLETYPE a_Result);

	// tolua_begin

	/** Sets the internal redstone power flag to "on" or "off", depending on the parameter. Calls Activate() if appropriate */
	virtual void SetRedstonePower(bool a_IsPowered) override;

	/** Sets the command block to execute a command in the next tick */
	void Activate(void);
	
	/** Sets the command */
	void SetCommand(const AString & a_Cmd);

	/** Retrieves stored command */
	const AString & GetCommand(void) const;

	/** Retrieves the last line of output generated by the command block */
	const AString & GetLastOutput(void) const;

	/** Retrieves the result (signal strength) of the last operation */
	NIBBLETYPE GetResult(void) const;
	
	// tolua_end
	
private:

	/** Executes the associated command */
	void Execute();

	bool m_ShouldExecute;
	bool m_IsPowered;

	AString m_Command;

	AString m_LastOutput;

	NIBBLETYPE m_Result;
} ;  // tolua_export