2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Item.h"
|
2013-01-11 23:46:01 -05:00
|
|
|
#include "PluginManager.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
class cClientHandle;
|
|
|
|
class cPlayer;
|
|
|
|
class cPickup;
|
|
|
|
class cItem;
|
|
|
|
class cEntity;
|
|
|
|
class cPawn;
|
|
|
|
class cWorld;
|
|
|
|
class cLuaChunk;
|
|
|
|
struct TakeDamageInfo;
|
|
|
|
|
|
|
|
// fwd: cPlayer.h
|
|
|
|
class cPlayer;
|
|
|
|
|
|
|
|
// fwd: CraftingRecipes.h
|
|
|
|
class cCraftingGrid;
|
|
|
|
class cCraftingRecipe;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// tolua_begin
|
|
|
|
class cPlugin
|
|
|
|
{
|
|
|
|
public:
|
2013-01-11 23:46:01 -05:00
|
|
|
// tolua_end
|
|
|
|
|
2012-10-13 19:34:47 -04:00
|
|
|
cPlugin( const AString & a_PluginDirectory );
|
2012-06-14 09:06:06 -04:00
|
|
|
virtual ~cPlugin();
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
virtual void OnDisable(void) {}
|
|
|
|
virtual bool Initialize(void) = 0;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Called each tick
|
|
|
|
virtual void Tick(float a_Dt);
|
|
|
|
|
|
|
|
/**
|
2013-01-11 23:46:01 -05:00
|
|
|
* On all these functions, return true if you want to override default behavior and not call other plugins on that callback.
|
2012-08-18 05:56:28 -04:00
|
|
|
* You can also return false, so default behavior is used.
|
2012-06-14 09:06:06 -04:00
|
|
|
**/
|
2013-01-11 23:46:01 -05:00
|
|
|
// TODO: 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);
|
|
|
|
virtual bool OnChunkGenerated (cWorld * a_World, int a_ChunkX, int a_ChunkZ);
|
|
|
|
virtual bool OnChunkGenerating (cWorld * a_World, int a_ChunkX, int a_ChunkZ, cLuaChunk * a_pLuaChunk);
|
|
|
|
virtual bool OnCollectPickup (cPlayer * a_Player, cPickup * a_Pickup);
|
|
|
|
virtual bool OnCraftingNoRecipe (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe);
|
|
|
|
virtual bool OnDisconnect (cPlayer * a_Player, const AString & a_Reason);
|
|
|
|
virtual bool OnHandshake (cClientHandle * a_Client, const AString & a_Username);
|
|
|
|
virtual bool OnKilled (cPawn & a_Killed, cEntity * a_Killer);
|
|
|
|
virtual bool OnLogin (cClientHandle * a_Client, int a_ProtocolVersion, const AString & a_Username);
|
|
|
|
virtual bool OnPlayerBreakingBlock(cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
|
|
|
virtual bool OnPlayerBrokenBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
|
|
|
virtual bool OnPlayerEating (cPlayer & a_Player);
|
|
|
|
virtual bool OnPlayerJoined (cPlayer & a_Player);
|
|
|
|
virtual bool OnPlayerLeftClick (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, char a_Status);
|
|
|
|
virtual bool OnPlayerMoved (cPlayer & a_Player);
|
|
|
|
virtual bool OnPlayerPlacedBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
|
|
|
virtual bool OnPlayerPlacingBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
|
|
|
virtual bool OnPlayerRightClick (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ);
|
|
|
|
virtual bool OnPlayerShooting (cPlayer & a_Player);
|
|
|
|
virtual bool OnPlayerSpawned (cPlayer & a_Player);
|
|
|
|
virtual bool OnPlayerTossingItem (cPlayer & a_Player);
|
|
|
|
virtual bool OnPlayerUsedBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
|
|
|
virtual bool OnPlayerUsedItem (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ);
|
|
|
|
virtual bool OnPlayerUsingBlock (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta);
|
|
|
|
virtual bool OnPlayerUsingItem (cPlayer & a_Player, int a_BlockX, int a_BlockY, int a_BlockZ, char a_BlockFace, int a_CursorX, int a_CursorY, int a_CursorZ);
|
|
|
|
virtual bool OnPostCrafting (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe);
|
|
|
|
virtual bool OnPreCrafting (const cPlayer * a_Player, const cCraftingGrid * a_Grid, cCraftingRecipe * a_Recipe);
|
|
|
|
virtual bool OnTakeDamage (cPawn & a_Receiver, TakeDamageInfo & a_TakeDamageInfo);
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
virtual bool OnWeatherChanged (cWorld * a_World);
|
|
|
|
|
|
|
|
/** Called from cPluginManager::AddHook() to check if the hook can be added.
|
|
|
|
Plugin API providers may check if the plugin is written correctly (has the hook handler function)
|
|
|
|
Returns true if the hook can be added (handler exists)
|
|
|
|
Descendants should also log the specific error message as a warning if they return false.
|
|
|
|
*/
|
|
|
|
virtual bool CanAddHook(cPluginManager::PluginHook a_Hook) { return false; }
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-01-14 03:21:13 -05:00
|
|
|
// tolua_begin
|
2012-06-14 09:06:06 -04:00
|
|
|
struct CommandStruct
|
|
|
|
{
|
2012-10-13 19:34:47 -04:00
|
|
|
AString Command;
|
|
|
|
AString Description;
|
|
|
|
AString Permission;
|
2012-06-14 09:06:06 -04:00
|
|
|
};
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
const AString & GetName(void) const { return m_Name; }
|
|
|
|
void SetName(const AString & a_Name) { m_Name = a_Name; }
|
|
|
|
|
|
|
|
int GetVersion(void) const { return m_Version; }
|
|
|
|
void SetVersion(int a_Version) { m_Version = a_Version; }
|
|
|
|
|
|
|
|
const AString & GetDirectory(void) const {return m_Directory; }
|
|
|
|
AString GetLocalDirectory(void) const;
|
|
|
|
|
2012-08-03 07:53:11 -04:00
|
|
|
void AddCommand(const AString & a_Command, const AString & a_Description, const AString & a_Permission);
|
2012-06-14 09:06:06 -04:00
|
|
|
// tolua_end
|
2012-08-03 07:53:11 -04:00
|
|
|
|
2012-10-13 19:34:47 -04:00
|
|
|
typedef bool (FuncCommandHandler)( AString & a_Command, std::vector< std::string > & a_Split );
|
|
|
|
void BindCommand( FuncCommandHandler* a_Function, AString & a_Command ); // >> EXPORTED IN MANUALBINDINGS <<
|
2012-06-14 09:06:06 -04:00
|
|
|
const std::vector< CommandStruct > & GetCommands() const { return m_Commands; } // >> EXPORTED IN MANUALBINDINGS <<
|
|
|
|
|
|
|
|
|
|
|
|
/* This should not be exposed to scripting languages */
|
|
|
|
enum PluginLanguage
|
|
|
|
{
|
|
|
|
E_CPP,
|
|
|
|
E_LUA,
|
|
|
|
E_SQUIRREL,
|
|
|
|
};
|
|
|
|
PluginLanguage GetLanguage() { return m_Language; }
|
|
|
|
void SetLanguage( PluginLanguage a_Language ) { m_Language = a_Language; }
|
|
|
|
|
|
|
|
bool CanBindCommands() { return m_bCanBindCommands; }
|
|
|
|
private:
|
|
|
|
friend class cPluginManager;
|
|
|
|
bool m_bCanBindCommands; // Only changed by cPluginManager
|
|
|
|
|
|
|
|
PluginLanguage m_Language;
|
|
|
|
std::vector< CommandStruct > m_Commands;
|
2012-10-13 19:34:47 -04:00
|
|
|
AString m_Name;
|
2012-06-14 09:06:06 -04:00
|
|
|
int m_Version;
|
2012-10-13 19:34:47 -04:00
|
|
|
|
|
|
|
AString m_Directory;
|
2013-01-11 23:46:01 -05:00
|
|
|
}; // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|