2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-09-23 18:09:57 -04:00
|
|
|
#include "Authenticator.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cThread;
|
|
|
|
class cMonsterConfig;
|
|
|
|
class cGroupManager;
|
|
|
|
class cCraftingRecipes;
|
|
|
|
class cFurnaceRecipe;
|
|
|
|
class cWebAdmin;
|
|
|
|
class cPluginManager;
|
|
|
|
class cServer;
|
|
|
|
class cWorld;
|
|
|
|
class cPlayer;
|
|
|
|
typedef cItemCallback<cPlayer> cPlayerListCallback;
|
|
|
|
typedef cItemCallback<cWorld> cWorldListCallback;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
class cRoot // tolua_export
|
|
|
|
{ // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
public:
|
2012-10-31 15:54:42 -04:00
|
|
|
/// The version of the protocol that is primary for the server (reported in the server list). All versions are still supported.
|
|
|
|
int m_PrimaryServerVersion; // tolua_export
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
static cRoot* Get() { return s_Root; } // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cRoot(void);
|
|
|
|
~cRoot();
|
|
|
|
|
|
|
|
void Start(void);
|
|
|
|
|
2013-01-11 23:46:01 -05:00
|
|
|
cServer * GetServer(void) { return m_Server; } // tolua_export
|
|
|
|
cWorld * GetDefaultWorld(void); // tolua_export
|
|
|
|
cWorld * GetWorld(const AString & a_WorldName); // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
/// Calls the callback for each world; returns true if the callback didn't abort (return true)
|
|
|
|
bool ForEachWorld(cWorldListCallback & a_Callback); // >> Exported in ManualBindings <<
|
|
|
|
|
2012-08-15 08:08:11 -04:00
|
|
|
/// Logs chunkstats for each world and totals
|
|
|
|
void LogChunkStats(void);
|
|
|
|
|
2012-11-20 16:28:43 -05:00
|
|
|
int GetPrimaryServerVersion(void) const { return m_PrimaryServerVersion; } // tolua_export
|
|
|
|
void SetPrimaryServerVersion(int a_Version) { m_PrimaryServerVersion = a_Version; } // tolua_export
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
cMonsterConfig * GetMonsterConfig() { return m_MonsterConfig; }
|
|
|
|
|
|
|
|
cGroupManager * GetGroupManager (void) { return m_GroupManager; } // tolua_export
|
|
|
|
cCraftingRecipes * GetCraftingRecipes(void) { return m_CraftingRecipes; } // tolua_export
|
|
|
|
cFurnaceRecipe * GetFurnaceRecipe (void) { return m_FurnaceRecipe; } // tolua_export
|
|
|
|
cWebAdmin * GetWebAdmin (void) { return m_WebAdmin; } // tolua_export
|
|
|
|
cPluginManager * GetPluginManager (void) { return m_PluginManager; } // tolua_export
|
|
|
|
cAuthenticator & GetAuthenticator (void) { return m_Authenticator; }
|
|
|
|
|
2013-02-15 08:00:59 -05:00
|
|
|
/// Executes a console command through the cServer class; does special handling for "stop" and "restart".
|
|
|
|
void ExecuteConsoleCommand(const AString & a_Cmd); // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-02-15 08:00:59 -05:00
|
|
|
/// Kicks the user, no matter in what world they are. Used from cAuthenticator
|
|
|
|
void KickUser(int a_ClientID, const AString & a_Reason);
|
|
|
|
|
|
|
|
/// Called by cAuthenticator to auth the specified user
|
|
|
|
void AuthenticateUser(int a_ClientID);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-02-15 08:00:59 -05:00
|
|
|
void TickWorlds(float a_Dt);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
/// Returns the number of chunks loaded
|
|
|
|
int GetTotalChunkCount(void); // tolua_export
|
|
|
|
|
|
|
|
/// Saves all chunks in all worlds
|
2013-02-15 08:00:59 -05:00
|
|
|
void SaveAllChunks(void); // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
/// Calls the callback for each player in all worlds
|
2012-08-22 19:05:12 -04:00
|
|
|
bool ForEachPlayer(cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS <<
|
|
|
|
|
|
|
|
/// Finds a player from a partial or complete player name and calls the callback - case-insensitive
|
|
|
|
bool FindAndDoWithPlayer(const AString & a_PlayerName, cPlayerListCallback & a_Callback); // >> EXPORTED IN MANUALBINDINGS <<
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2013-02-15 08:00:59 -05:00
|
|
|
/// Returns the textual description of the protocol version: 49 -> "1.4.4". Provided specifically for Lua API
|
|
|
|
static AString GetProtocolVersionTextFromInt(int a_ProtocolVersionNum); // tolua_export
|
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
private:
|
|
|
|
void LoadGlobalSettings();
|
|
|
|
|
|
|
|
/// Loads the worlds from settings.ini, creates the worldmap
|
|
|
|
void LoadWorlds(void);
|
|
|
|
|
|
|
|
/// Starts each world's life
|
|
|
|
void StartWorlds(void);
|
|
|
|
|
2012-07-15 16:07:38 -04:00
|
|
|
/// Stops each world's threads, so that it's safe to unload them
|
|
|
|
void StopWorlds(void);
|
|
|
|
|
|
|
|
/// Unloads all worlds from memory
|
2012-06-14 09:06:06 -04:00
|
|
|
void UnloadWorlds(void);
|
|
|
|
|
|
|
|
cServer * m_Server;
|
|
|
|
cMonsterConfig * m_MonsterConfig;
|
|
|
|
|
|
|
|
cGroupManager * m_GroupManager;
|
|
|
|
cCraftingRecipes * m_CraftingRecipes;
|
|
|
|
cFurnaceRecipe * m_FurnaceRecipe;
|
|
|
|
cWebAdmin * m_WebAdmin;
|
|
|
|
cPluginManager * m_PluginManager;
|
|
|
|
cAuthenticator m_Authenticator;
|
|
|
|
|
|
|
|
cMCLogger * m_Log;
|
|
|
|
|
|
|
|
bool m_bStop;
|
|
|
|
bool m_bRestart;
|
|
|
|
|
2012-08-22 07:22:26 -04:00
|
|
|
typedef std::map< AString, cWorld* > WorldMap;
|
|
|
|
cWorld* m_pDefaultWorld;
|
|
|
|
WorldMap m_WorldsByName;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
cThread* m_InputThread;
|
|
|
|
static void InputThread(void* a_Params);
|
|
|
|
|
|
|
|
static cRoot* s_Root;
|
2013-01-11 23:46:01 -05:00
|
|
|
}; // tolua_export
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|