summaryrefslogblamecommitdiffstats
path: root/src/BlockEntities/CommandBlockEntity.h
blob: 55f34a000c4da3c0482aa3c14bf92eba5b5b5b33 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                                          
                        



 


              
                           
                           
 
                                   
 


                    
 
                                                 
 
                                                       
                                                                                                                                       
 

                                                                   
                                                                                     
                                                               
                                                         
 



                                                      

                      
                                                                           
                            
 
                               

                                               
                                       

                                               
                                                                               
                                                  
 
                                                                           
                                         
 
                    
 

        
                                              


                             
 


                             
 
                            




                    

// CommandBlockEntity.h

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





#pragma once

#include "BlockEntity.h"





// tolua_begin

class cCommandBlockEntity :
	public cBlockEntity
{
	typedef cBlockEntity Super;

public:

	// tolua_end

	BLOCKENTITY_PROTODEF(cCommandBlockEntity)

	/** Creates a new empty command block entity */
	cCommandBlockEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, int a_BlockX, int a_BlockY, int a_BlockZ, cWorld * a_World);

	// cBlockEntity overrides:
	virtual void CopyFrom(const cBlockEntity & a_Src) override;
	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 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;

	AString m_Command;

	AString m_LastOutput;

	NIBBLETYPE m_Result;
} ;  // tolua_export