2012-02-01 14:38:03 -08:00
|
|
|
|
2011-10-03 11:41:19 -07:00
|
|
|
#pragma once
|
|
|
|
|
2012-02-01 14:38:03 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "cAuthenticator.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-26 06:07:39 -07:00
|
|
|
class cThread;
|
2011-10-03 11:41:19 -07:00
|
|
|
class cMonsterConfig;
|
|
|
|
class cGroupManager;
|
|
|
|
class cRecipeChecker;
|
2012-06-04 05:08:20 -07:00
|
|
|
class cCraftingRecipes;
|
2011-10-03 11:41:19 -07:00
|
|
|
class cFurnaceRecipe;
|
|
|
|
class cWebAdmin;
|
|
|
|
class cPluginManager;
|
|
|
|
class cServer;
|
|
|
|
class cWorld;
|
2012-03-10 14:27:24 -08:00
|
|
|
class cPlayer;
|
|
|
|
typedef cItemCallback<cPlayer> cPlayerListCallback;
|
2012-06-02 02:38:51 -07:00
|
|
|
typedef cItemCallback<cWorld> cWorldListCallback;
|
2012-02-01 14:38:03 -08:00
|
|
|
|
2012-02-13 13:47:03 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-10-03 11:41:19 -07:00
|
|
|
class cRoot //tolua_export
|
|
|
|
{ //tolua_export
|
|
|
|
public:
|
|
|
|
static cRoot* Get() { return s_Root; } //tolua_export
|
|
|
|
|
2012-06-04 05:08:20 -07:00
|
|
|
cRoot(void);
|
2011-10-03 11:41:19 -07:00
|
|
|
~cRoot();
|
|
|
|
|
2012-06-04 05:08:20 -07:00
|
|
|
void Start(void);
|
2011-10-03 11:41:19 -07:00
|
|
|
|
2012-06-04 05:08:20 -07: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 02:38:51 -07: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 05:08:20 -07:00
|
|
|
cMonsterConfig * GetMonsterConfig() { return m_MonsterConfig; }
|
2011-10-03 11:41:19 -07:00
|
|
|
|
2012-06-04 05:08:20 -07: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 11:41:19 -07:00
|
|
|
|
2012-02-01 14:38:03 -08:00
|
|
|
void ServerCommand(const char* a_Cmd ); //tolua_export
|
|
|
|
|
2012-03-09 05:42:28 -08: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 14:57:08 -07:00
|
|
|
|
|
|
|
void TickWorlds( float a_Dt );
|
2012-02-01 14:38:03 -08:00
|
|
|
|
2012-05-25 00:18:52 -07:00
|
|
|
/// Returns the number of chunks loaded
|
2012-02-08 10:57:04 -08:00
|
|
|
int GetTotalChunkCount(void); // tolua_export
|
|
|
|
|
2012-03-10 14:27:24 -08: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 11:41:19 -07:00
|
|
|
private:
|
2012-02-22 07:35:10 -08:00
|
|
|
void LoadGlobalSettings();
|
2012-02-01 14:38:03 -08:00
|
|
|
|
2011-11-01 14:57:08 -07:00
|
|
|
void LoadWorlds();
|
|
|
|
void UnloadWorlds();
|
|
|
|
|
2012-02-01 14:38:03 -08:00
|
|
|
cServer * m_Server;
|
|
|
|
cMonsterConfig * m_MonsterConfig;
|
2011-10-03 11:41:19 -07:00
|
|
|
|
2012-06-04 05:08:20 -07: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 11:41:19 -07:00
|
|
|
|
2012-02-01 14:38:03 -08:00
|
|
|
cMCLogger * m_Log;
|
2011-10-03 11:41:19 -07:00
|
|
|
|
|
|
|
bool m_bStop;
|
|
|
|
bool m_bRestart;
|
|
|
|
|
2011-11-01 14:57:08 -07:00
|
|
|
struct sRootState;
|
|
|
|
sRootState* m_pState;
|
|
|
|
|
2011-10-26 06:07:39 -07:00
|
|
|
cThread* m_InputThread;
|
|
|
|
static void InputThread(void* a_Params);
|
2011-10-03 11:41:19 -07:00
|
|
|
|
|
|
|
static cRoot* s_Root;
|
2012-02-01 14:38:03 -08:00
|
|
|
}; //tolua_export
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|