From 7c4576a02591d8ebe41656c5cefb1eb25a086a10 Mon Sep 17 00:00:00 2001 From: Lukas Pioch Date: Tue, 9 May 2017 14:24:41 +0200 Subject: Exported cFallingBlock and cExpOrb (#3700) --- src/Entities/ExpOrb.h | 12 ++++++++---- src/Entities/FallingBlock.h | 9 ++++++++- 2 files changed, 16 insertions(+), 5 deletions(-) (limited to 'src/Entities') diff --git a/src/Entities/ExpOrb.h b/src/Entities/ExpOrb.h index bb4c79c8e..83672ea02 100644 --- a/src/Entities/ExpOrb.h +++ b/src/Entities/ExpOrb.h @@ -25,17 +25,21 @@ public: virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; virtual void SpawnOn(cClientHandle & a_Client) override; + // tolua_begin + /** Returns the number of ticks that this entity has existed */ - int GetAge(void) const { return std::chrono::duration_cast(m_Timer).count(); } // tolua_export + int GetAge(void) const { return std::chrono::duration_cast(m_Timer).count(); } /** Set the number of ticks that this entity has existed */ - void SetAge(int a_Age) { m_Timer = cTickTime(a_Age); } // tolua_export + void SetAge(int a_Age) { m_Timer = cTickTime(a_Age); } /** Get the exp amount */ - int GetReward(void) const { return m_Reward; } // tolua_export + int GetReward(void) const { return m_Reward; } /** Set the exp amount */ - void SetReward(int a_Reward) { m_Reward = a_Reward; } // tolua_export + void SetReward(int a_Reward) { m_Reward = a_Reward; } + + // tolua_end protected: int m_Reward; diff --git a/src/Entities/FallingBlock.h b/src/Entities/FallingBlock.h index 3e80564e5..8bdf46ca0 100644 --- a/src/Entities/FallingBlock.h +++ b/src/Entities/FallingBlock.h @@ -13,6 +13,7 @@ class cItem; +// tolua_begin class cFallingBlock : public cEntity @@ -20,14 +21,20 @@ class cFallingBlock : typedef cEntity super; public: + // tolua_end + CLASS_PROTODEF(cFallingBlock) /** Creates a new falling block. a_BlockPosition is expected in world coords */ cFallingBlock(const Vector3i & a_BlockPosition, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta); + // tolua_begin + BLOCKTYPE GetBlockType(void) const { return m_BlockType; } NIBBLETYPE GetBlockMeta(void) const { return m_BlockMeta; } + // tolua_end + // cEntity overrides: virtual void SpawnOn(cClientHandle & a_ClientHandle) override; virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; @@ -36,7 +43,7 @@ private: BLOCKTYPE m_BlockType; NIBBLETYPE m_BlockMeta; Vector3i m_OriginalPosition; // Position where the falling block has started, in world coords -} ; +} ; // tolua_export -- cgit v1.2.3