2011-10-03 14:41:19 -04:00
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
#pragma once
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
struct lua_State;
|
|
|
|
class cLuaCommandBinder;
|
|
|
|
class cPlugin;
|
|
|
|
class cPlugin_Lua;
|
|
|
|
class cPluginManager //tolua_export
|
|
|
|
{ //tolua_export
|
|
|
|
public: //tolua_export
|
|
|
|
|
|
|
|
// Called each tick
|
|
|
|
virtual void Tick(float a_Dt);
|
|
|
|
|
|
|
|
enum PluginHook //tolua_export
|
|
|
|
{ //tolua_export
|
|
|
|
E_PLUGIN_TICK, //tolua_export
|
|
|
|
E_PLUGIN_CHAT, //tolua_export
|
|
|
|
E_PLUGIN_COLLECT_ITEM, //tolua_export
|
|
|
|
E_PLUGIN_BLOCK_DIG, //tolua_export
|
|
|
|
E_PLUGIN_BLOCK_PLACE, //tolua_export
|
|
|
|
E_PLUGIN_DISCONNECT, //tolua_export
|
|
|
|
E_PLUGIN_HANDSHAKE, //tolua_export
|
|
|
|
E_PLUGIN_LOGIN, //tolua_export
|
|
|
|
E_PLUGIN_PLAYER_SPAWN, //tolua_export
|
|
|
|
E_PLUGIN_PLAYER_JOIN, //tolua_export
|
|
|
|
E_PLUGIN_PLAYER_MOVE, //tolua_export
|
|
|
|
E_PLUGIN_TAKE_DAMAGE, //tolua_export
|
|
|
|
E_PLUGIN_KILLED, //tolua_export
|
|
|
|
}; //tolua_export
|
|
|
|
|
|
|
|
static cPluginManager * GetPluginManager(); //tolua_export
|
|
|
|
|
|
|
|
typedef std::list< cPlugin* > PluginList;
|
2011-11-07 20:25:01 -05:00
|
|
|
cPlugin* GetPlugin( const char* a_Plugin ); //tolua_export
|
2011-10-03 14:41:19 -04:00
|
|
|
const PluginList & GetAllPlugins(); // >> EXPORTED IN MANUALBINDINGS <<
|
|
|
|
|
|
|
|
void ReloadPlugins(); //tolua_export
|
|
|
|
bool AddPlugin( cPlugin* a_Plugin );
|
|
|
|
bool AddPlugin( lua_State* a_LuaState, cPlugin* a_Plugin ); //tolua_export
|
|
|
|
bool AddLuaPlugin( cPlugin_Lua* a_Plugin );
|
|
|
|
void AddHook( cPlugin* a_Plugin, PluginHook a_Hook ); //tolua_export
|
|
|
|
|
|
|
|
unsigned int GetNumPlugins(); //tolua_export
|
|
|
|
|
|
|
|
bool CallHook( PluginHook a_Hook, unsigned int a_NumArgs, ... );
|
|
|
|
|
2011-11-07 20:25:01 -05:00
|
|
|
void RemoveHooks( cPlugin* a_Plugin );
|
2011-10-03 14:41:19 -04:00
|
|
|
void RemovePlugin( cPlugin* a_Plugin, bool a_bDelete = false ); //tolua_export
|
|
|
|
void RemoveLuaPlugin( std::string a_FileName ); //tolua_export
|
|
|
|
cPlugin_Lua* GetLuaPlugin( lua_State* a_State ); //tolua_export
|
|
|
|
|
|
|
|
cLuaCommandBinder* GetLuaCommandBinder() { return m_LuaCommandBinder; }
|
|
|
|
private:
|
|
|
|
friend class cRoot;
|
|
|
|
cPluginManager();
|
|
|
|
~cPluginManager();
|
|
|
|
|
|
|
|
struct sPluginManagerState;
|
|
|
|
sPluginManagerState* m_pState;
|
|
|
|
|
|
|
|
void ReloadPluginsNow();
|
|
|
|
void UnloadPluginsNow();
|
|
|
|
|
|
|
|
cLuaCommandBinder* m_LuaCommandBinder;
|
|
|
|
|
|
|
|
bool m_bReloadPlugins;
|
|
|
|
}; //tolua_export
|