2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Plugin.h"
|
|
|
|
#include "WebPlugin.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct lua_State lua_State;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-22 10:22:21 -04:00
|
|
|
class cPlugin_NewLua : public cPlugin, public cWebPlugin //tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
{ //tolua_export
|
|
|
|
public: //tolua_export
|
|
|
|
cPlugin_NewLua( const char* a_PluginName );
|
|
|
|
~cPlugin_NewLua();
|
|
|
|
|
|
|
|
virtual void OnDisable(); //tolua_export
|
|
|
|
virtual bool Initialize(); //tolua_export
|
|
|
|
|
|
|
|
virtual void Tick(float a_Dt); //tolua_export
|
|
|
|
|
2012-08-18 06:38:15 -04:00
|
|
|
virtual bool OnBlockDig (cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, char a_Status, BLOCKTYPE a_OldBlock, NIBBLETYPE a_OldMeta) override;
|
|
|
|
virtual bool OnBlockPlace (cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, const cItem & a_HeldItem) override;
|
|
|
|
virtual bool OnBlockToPickup (BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, const cPlayer * a_Player, const cItem & a_EquippedItem, cItems & a_Pickups);
|
|
|
|
virtual bool OnChat (cPlayer * a_Player, const AString & a_Message) override;
|
|
|
|
virtual void OnChunkGenerated (cWorld * a_World, int a_ChunkX, int a_ChunkZ) override;
|
|
|
|
virtual bool OnChunkGenerating (cWorld * a_World, int a_ChunkX, int a_ChunkZ, cLuaChunk * a_pLuaChunk ) override;
|
2012-08-24 05:49:00 -04:00
|
|
|
virtual bool OnCollectPickup (cPlayer * a_Player, cPickup * a_Pickup) override;
|
2012-08-18 06:38:15 -04:00
|
|
|
virtual bool OnCraftingNoRecipe(const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe) override;
|
2012-08-19 15:42:32 -04:00
|
|
|
virtual bool OnDisconnect (cPlayer * a_Player, const AString & a_Reason) override;
|
2012-09-05 16:30:27 -04:00
|
|
|
virtual bool OnKilled (cPawn * a_Killed, cEntity* a_Killer ) override;
|
2012-08-18 05:56:28 -04:00
|
|
|
virtual bool OnLogin (cClientHandle * a_Client, int a_ProtocolVersion, const AString & a_Username) override;
|
2012-09-05 16:30:27 -04:00
|
|
|
virtual bool OnPlayerJoin (cPlayer * a_Player ) override;
|
|
|
|
virtual void OnPlayerMove (cPlayer * a_Player ) override;
|
|
|
|
virtual void OnPlayerSpawn (cPlayer * a_Player ) override;
|
2012-06-14 09:06:06 -04:00
|
|
|
virtual bool OnPostCrafting (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe) override;
|
2012-08-18 06:38:15 -04:00
|
|
|
virtual bool OnPreCrafting (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe) override;
|
2012-09-05 16:30:27 -04:00
|
|
|
virtual void OnTakeDamage (cPawn * a_Pawn, TakeDamageInfo * a_TakeDamageInfo ) override;
|
2012-09-01 17:31:20 -04:00
|
|
|
virtual bool OnUpdatedSign (cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ, const AString & a_Line1, const AString & a_Line2, const AString & a_Line3, const AString & a_Line4, cPlayer * a_Player) override;
|
|
|
|
virtual bool OnUpdatingSign (cWorld * a_World, int a_BlockX, int a_BlockY, int a_BlockZ, AString & a_Line1, AString & a_Line2, AString & a_Line3, AString & a_Line4, cPlayer * a_Player) override;
|
2012-08-18 06:38:15 -04:00
|
|
|
virtual bool OnWeatherChanged (cWorld * a_World) override;
|
2012-09-05 16:30:27 -04:00
|
|
|
virtual bool OnHandshake (cClientHandle * a_Client, const AString & a_Username) override;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2012-08-23 16:49:21 -04:00
|
|
|
const AString & GetDirectory(void) const {return m_Directory; }
|
2012-09-08 16:49:29 -04:00
|
|
|
AString GetLocalDirectory(void) const; //tolua_export
|
2012-08-23 16:49:21 -04:00
|
|
|
|
|
|
|
virtual void SetName( const AString & a_Name ) override { cPlugin::SetName(a_Name); }
|
|
|
|
|
|
|
|
// cWebPlugin override
|
|
|
|
virtual const AString & GetName(void) const {return cPlugin::GetName(); }
|
2012-08-22 10:22:21 -04:00
|
|
|
|
|
|
|
// cWebPlugin and WebAdmin stuff
|
|
|
|
virtual AString HandleWebRequest( HTTPRequest * a_Request ) override;
|
|
|
|
bool AddWebTab( const AString & a_Title, lua_State * a_LuaState, int a_FunctionReference ); // >> EXPORTED IN MANUALBINDINGS <<
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
lua_State* GetLuaState() { return m_LuaState; }
|
|
|
|
|
2012-08-23 16:49:21 -04:00
|
|
|
OBSOLETE cPlugin_NewLua * CreateWebPlugin(lua_State * a_LuaState); //tolua_export
|
2012-08-22 08:24:29 -04:00
|
|
|
|
|
|
|
cCriticalSection & GetCriticalSection() { return m_CriticalSection; }
|
2012-08-23 16:49:21 -04:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
private:
|
|
|
|
bool PushFunction( const char* a_FunctionName, bool a_bLogError = true );
|
|
|
|
bool CallFunction( int a_NumArgs, int a_NumResults, const char* a_FunctionName ); // a_FunctionName is only used for error messages, nothing else
|
|
|
|
|
|
|
|
cCriticalSection m_CriticalSection;
|
|
|
|
|
|
|
|
std::string m_Directory;
|
2012-08-23 16:49:21 -04:00
|
|
|
lua_State * m_LuaState;
|
2012-01-26 15:39:46 -05:00
|
|
|
};//tolua_export
|