diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-13 16:44:29 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-13 16:44:29 +0200 |
commit | 0ac24a98e4055f791f7dccee89997a7852c865b7 (patch) | |
tree | f1c361afa8142dcc1a169404b4f8deccb7dcf6b9 /source/PluginLua.cpp | |
parent | Removed comments (diff) | |
parent | Merge pull request #84 from tonibm19/patch-2 (diff) | |
download | cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.tar cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.tar.gz cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.tar.bz2 cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.tar.lz cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.tar.xz cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.tar.zst cuberite-0ac24a98e4055f791f7dccee89997a7852c865b7.zip |
Diffstat (limited to 'source/PluginLua.cpp')
-rw-r--r-- | source/PluginLua.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/source/PluginLua.cpp b/source/PluginLua.cpp index 5ee4fe9f2..62911a31c 100644 --- a/source/PluginLua.cpp +++ b/source/PluginLua.cpp @@ -326,6 +326,30 @@ bool cPlugin_NewLua::OnHandshake(cClientHandle * a_Client, const AString & a_Use +bool cPlugin_NewLua::OnHopperPullingItem(cWorld & a_World, cHopperEntity & a_Hopper, int a_DstSlotNum, cBlockEntityWithItems & a_SrcEntity, int a_SrcSlotNum) +{ + cCSLock Lock(m_CriticalSection); + bool res = false; + m_LuaState.Call(GetHookFnName(cPluginManager::HOOK_HOPPER_PULLING_ITEM), &a_World, &a_Hopper, a_DstSlotNum, &a_SrcEntity, a_SrcSlotNum, cLuaState::Return, res); + return res; +} + + + + + +bool cPlugin_NewLua::OnHopperPushingItem(cWorld & a_World, cHopperEntity & a_Hopper, int a_SrcSlotNum, cBlockEntityWithItems & a_DstEntity, int a_DstSlotNum) +{ + cCSLock Lock(m_CriticalSection); + bool res = false; + m_LuaState.Call(GetHookFnName(cPluginManager::HOOK_HOPPER_PUSHING_ITEM), &a_World, &a_Hopper, a_SrcSlotNum, &a_DstEntity, a_DstSlotNum, cLuaState::Return, res); + return res; +} + + + + + bool cPlugin_NewLua::OnKilling(cEntity & a_Victim, cEntity * a_Killer) { cCSLock Lock(m_CriticalSection); |