From 1c60680fbac2f06823dba123241adc607363a25b Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Wed, 13 Jun 2012 17:37:23 +0000 Subject: Added a BlockToPickup hook for modifying pickups when a player breaks a block. git-svn-id: http://mc-server.googlecode.com/svn/trunk@602 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/LuaItems.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 source/LuaItems.h (limited to 'source/LuaItems.h') diff --git a/source/LuaItems.h b/source/LuaItems.h new file mode 100644 index 000000000..28ceb0d24 --- /dev/null +++ b/source/LuaItems.h @@ -0,0 +1,52 @@ + +// LuaItems.h + +// Interfaces to the cLuaItems class representing a wrapper class that allows Lua to access and manipulate cItems + + + + + +#pragma once + +#include "cItem.h" + + + + + +// tolua_begin +class cLuaItems +{ +public: + // tolua_end + // The constructor is not to be Lua-exported, Lua cannot make use of this object + cLuaItems(cItems & a_Items) : + m_Items(a_Items) + { + } + + // tolua_begin + cItem & Get (int a_Idx) {return m_Items[a_Idx]; } + void Set (int a_Idx, const cItem & a_Item) {m_Items[a_Idx] = a_Item; } + void Add (const cItem & a_Item) {m_Items.push_back(a_Item); } + void Delete(int a_Idx) {m_Items.erase(m_Items.begin() + a_Idx); } + void Clear (void) {m_Items.clear(); } + int Size (void) {return m_Items.size(); } + + void Add (ENUM_ITEM_ID a_ItemType, char a_ItemCount, short a_ItemHealth) + { + m_Items.push_back(cItem(a_ItemType, a_ItemCount, a_ItemHealth)); + } + + void Set (int a_Idx, ENUM_ITEM_ID a_ItemType, char a_ItemCount, short a_ItemHealth) + { + m_Items[a_Idx] = cItem(a_ItemType, a_ItemCount, a_ItemHealth); + } +protected: + cItems & m_Items; +} ; +// tolua_end + + + -- cgit v1.2.3