* fixed a few bugs in RealmSession (ticket #14, thx bLuma) * fixed a mistake in DefScript.cpp added in prev commit. * added wrapper class for MD5 hashes
143 lines
3.5 KiB
C++
143 lines
3.5 KiB
C++
|
|
#ifndef _PSEUWOW_H
|
|
#define _PSEUWOW_H
|
|
|
|
#include "common.h"
|
|
#include "HelperDefs.h"
|
|
#include "log.h"
|
|
#include "Auth/BigNumber.h"
|
|
#include "DefScript/DefScript.h"
|
|
#include "Network/SocketHandler.h"
|
|
#include "SCPDatabase.h"
|
|
#include "GUI/PseuGUI.h"
|
|
|
|
class RealmSession;
|
|
class WorldSession;
|
|
class Sockethandler;
|
|
class PseuInstanceRunnable;
|
|
class CliRunnable;
|
|
class RemoteController;
|
|
|
|
class PseuInstanceConf
|
|
{
|
|
public:
|
|
|
|
PseuInstanceConf();
|
|
~PseuInstanceConf();
|
|
void ApplyFromVarSet(VarSet &v);
|
|
|
|
|
|
uint8 debug;
|
|
std::string realmlist;
|
|
std::string accname;
|
|
std::string accpass;
|
|
bool exitonerror;
|
|
uint32 reconnect;
|
|
uint16 realmport;
|
|
uint16 worldport;
|
|
uint8 clientversion[3];
|
|
std::string clientversion_string;
|
|
uint16 clientbuild;
|
|
std::string clientlang;
|
|
std::string realmname;
|
|
std::string charname;
|
|
std::string worldhost;
|
|
uint16 networksleeptime;
|
|
uint8 showopcodes;
|
|
bool hidefreqopcodes;
|
|
bool allowgamecmd;
|
|
bool enablecli;
|
|
bool enablechatai;
|
|
bool notifyping;
|
|
bool showmyopcodes;
|
|
bool disablespellcheck;
|
|
uint32 rmcontrolport;
|
|
std::string rmcontrolhost;
|
|
bool useMaps;
|
|
|
|
// gui related
|
|
bool enablegui;
|
|
// need more here
|
|
|
|
|
|
};
|
|
|
|
|
|
class PseuInstance
|
|
{
|
|
public:
|
|
|
|
PseuInstance(PseuInstanceRunnable *run);
|
|
~PseuInstance();
|
|
|
|
|
|
inline WorldSession *GetWSession(void) { return _wsession; }
|
|
inline RealmSession *GetRSession(void) { return _rsession; }
|
|
inline PseuInstanceConf *GetConf(void) { return _conf; }
|
|
inline DefScriptPackage *GetScripts(void) { return _scp; }
|
|
inline PseuInstanceRunnable *GetRunnable(void) { return _runnable; }
|
|
inline PseuGUI *GetGUI(void) { return _gui; }
|
|
void DeleteGUI(void);
|
|
|
|
inline void SetConfDir(std::string dir) { _confdir = dir; }
|
|
inline std::string GetConfDir(void) { return _confdir; }
|
|
inline void SetScpDir(std::string dir) { _scpdir = dir; }
|
|
inline void SetSessionKey(BigNumber key) { _sessionkey = key; }
|
|
inline BigNumber GetSessionKey(void) { return _sessionkey; }
|
|
inline void SetError(void) { _error = true; }
|
|
SCPDatabaseMgr dbmgr;
|
|
|
|
bool Init();
|
|
void SaveAllCache(void);
|
|
inline void Stop(void) { _stop = true; }
|
|
inline bool Stopped(void) { return _stop; }
|
|
inline void SetFastQuit(bool q=true) { _fastquit=true; }
|
|
void Run(void);
|
|
void Update(void);
|
|
void Sleep(uint32 msecs);
|
|
|
|
inline void CreateWorldSession(void) { _createws = true; }
|
|
|
|
void ProcessCliQueue(void);
|
|
void AddCliCommand(std::string);
|
|
|
|
private:
|
|
|
|
PseuInstanceRunnable *_runnable;
|
|
RealmSession *_rsession;
|
|
WorldSession *_wsession;
|
|
PseuInstanceConf *_conf;
|
|
DefScriptPackage *_scp;
|
|
std::string _confdir,_scpdir; // _scpdir is the scipts dir, and NOT where SCP files are stored!!
|
|
bool _initialized;
|
|
bool _stop,_fastquit;
|
|
bool _startrealm;
|
|
bool _error;
|
|
bool _createws;
|
|
BigNumber _sessionkey;
|
|
char *_ver,*_ver_short;
|
|
SocketHandler _sh;
|
|
CliRunnable *_cli;
|
|
ZThread::Thread _clithread;
|
|
RemoteController *_rmcontrol;
|
|
ZThread::LockedQueue<std::string,ZThread::FastMutex> _cliQueue;
|
|
PseuGUI *_gui;
|
|
ZThread::Thread *_guithread;
|
|
|
|
};
|
|
|
|
class PseuInstanceRunnable : public ZThread::Runnable
|
|
{
|
|
public:
|
|
PseuInstanceRunnable();
|
|
void run(void);
|
|
void sleep(uint32);
|
|
inline PseuInstance *GetInstance(void) { return _i; }
|
|
|
|
private:
|
|
PseuInstance *_i;
|
|
};
|
|
|
|
|
|
#endif
|