2012-02-01 17:38:03 -05:00
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
#pragma once
|
|
|
|
|
2012-02-01 17:38:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "cAuthenticator.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-26 09:07:39 -04:00
|
|
|
class cThread;
|
2011-10-03 14:41:19 -04:00
|
|
|
class cMonsterConfig;
|
|
|
|
class cGroupManager;
|
|
|
|
class cRecipeChecker;
|
2012-06-04 08:08:20 -04:00
|
|
|
class cCraftingRecipes;
|
2011-10-03 14:41:19 -04:00
|
|
|
class cFurnaceRecipe;
|
|
|
|
class cWebAdmin;
|
|
|
|
class cPluginManager;
|
|
|
|
class cServer;
|
|
|
|
class cWorld;
|
2012-03-10 17:27:24 -05:00
|
|
|
class cPlayer;
|
|
|
|
typedef cItemCallback<cPlayer> cPlayerListCallback;
|
2012-06-02 05:38:51 -04:00
|
|
|
typedef cItemCallback<cWorld> cWorldListCallback;
|
2012-02-01 17:38:03 -05:00
|
|
|
|
2012-02-13 16:47:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
class cRoot //tolua_export
|
|
|
|
{ //tolua_export
|
|
|
|
public:
|
|
|
|
static cRoot* Get() { return s_Root; } //tolua_export
|
|
|
|
|
2012-06-04 08:08:20 -04:00
|
|
|
cRoot(void);
|
2011-10-03 14:41:19 -04:00
|
|
|
~cRoot();
|
|
|
|
|
2012-06-04 08:08:20 -04:00
|
|
|
void Start(void);
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-06-04 08:08:20 -04:00
|
|
|
cServer * GetServer(void) { return m_Server; } //tolua_export
|
|
|
|
cWorld * GetDefaultWorld(void); //tolua_export
|
|
|
|
cWorld * GetWorld(const AString & a_WorldName); //tolua_export
|
2012-06-02 05:38:51 -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-06-04 08:08:20 -04:00
|
|
|
cMonsterConfig * GetMonsterConfig() { return m_MonsterConfig; }
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-06-04 08:08:20 -04:00
|
|
|
cGroupManager * GetGroupManager (void) { return m_GroupManager; } // tolua_export
|
|
|
|
cRecipeChecker * GetRecipeChecker (void) { return m_RecipeChecker; } // 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; }
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-02-01 17:38:03 -05:00
|
|
|
void ServerCommand(const char* a_Cmd ); //tolua_export
|
|
|
|
|
2012-03-09 08:42:28 -05:00
|
|
|
void KickUser(int a_ClientID, const AString & a_Reason); // Kicks the user, no matter in what world they are. Used from cAuthenticator
|
|
|
|
void AuthenticateUser(int a_ClientID); // Called by cAuthenticator to auth the specified user
|
2011-11-01 17:57:08 -04:00
|
|
|
|
|
|
|
void TickWorlds( float a_Dt );
|
2012-02-01 17:38:03 -05:00
|
|
|
|
2012-05-25 03:18:52 -04:00
|
|
|
/// Returns the number of chunks loaded
|
2012-02-08 13:57:04 -05:00
|
|
|
int GetTotalChunkCount(void); // tolua_export
|
|
|
|
|
2012-03-10 17:27:24 -05:00
|
|
|
/// Saves all chunks in all worlds
|
|
|
|
void SaveAllChunks(void);
|
|
|
|
|
|
|
|
/// Calls the callback for each player in all worlds
|
|
|
|
bool ForEachPlayer(cPlayerListCallback & a_Callback);
|
|
|
|
|
2011-10-03 14:41:19 -04:00
|
|
|
private:
|
2012-02-22 10:35:10 -05:00
|
|
|
void LoadGlobalSettings();
|
2012-02-01 17:38:03 -05:00
|
|
|
|
2012-06-05 11:20:48 -04:00
|
|
|
/// Loads the worlds from settings.ini, creates the worldmap
|
|
|
|
void LoadWorlds(void);
|
|
|
|
|
|
|
|
/// Starts each world's life
|
|
|
|
void StartWorlds(void);
|
|
|
|
|
|
|
|
void UnloadWorlds(void);
|
2011-11-01 17:57:08 -04:00
|
|
|
|
2012-02-01 17:38:03 -05:00
|
|
|
cServer * m_Server;
|
|
|
|
cMonsterConfig * m_MonsterConfig;
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-06-04 08:08:20 -04:00
|
|
|
cGroupManager * m_GroupManager;
|
|
|
|
cRecipeChecker * m_RecipeChecker;
|
|
|
|
cCraftingRecipes * m_CraftingRecipes;
|
|
|
|
cFurnaceRecipe * m_FurnaceRecipe;
|
|
|
|
cWebAdmin * m_WebAdmin;
|
|
|
|
cPluginManager * m_PluginManager;
|
|
|
|
cAuthenticator m_Authenticator;
|
2011-10-03 14:41:19 -04:00
|
|
|
|
2012-02-01 17:38:03 -05:00
|
|
|
cMCLogger * m_Log;
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
bool m_bStop;
|
|
|
|
bool m_bRestart;
|
|
|
|
|
2011-11-01 17:57:08 -04:00
|
|
|
struct sRootState;
|
|
|
|
sRootState* m_pState;
|
|
|
|
|
2011-10-26 09:07:39 -04:00
|
|
|
cThread* m_InputThread;
|
|
|
|
static void InputThread(void* a_Params);
|
2011-10-03 14:41:19 -04:00
|
|
|
|
|
|
|
static cRoot* s_Root;
|
2012-02-01 17:38:03 -05:00
|
|
|
}; //tolua_export
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|