2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#ifndef ENGINE_SERVER_SERVER_H
|
|
|
|
#define ENGINE_SERVER_SERVER_H
|
|
|
|
|
|
|
|
#include <engine/server.h>
|
|
|
|
|
2010-07-29 05:21:18 +00:00
|
|
|
#include <engine/map.h>
|
2010-09-13 04:49:01 +00:00
|
|
|
#include <engine/shared/demo.h>
|
2010-07-29 05:21:18 +00:00
|
|
|
#include <engine/shared/protocol.h>
|
|
|
|
#include <engine/shared/snapshot.h>
|
|
|
|
#include <engine/shared/network.h>
|
|
|
|
#include <engine/server/register.h>
|
|
|
|
#include <engine/shared/console.h>
|
2010-10-16 20:28:54 +00:00
|
|
|
#include <base/math.h>
|
2011-04-09 06:41:31 +00:00
|
|
|
#include <engine/shared/mapchecker.h>
|
2011-08-13 00:11:06 +00:00
|
|
|
#include <engine/shared/econ.h>
|
2011-12-31 22:00:00 +00:00
|
|
|
#include <engine/shared/netban.h>
|
2010-10-16 20:28:54 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class CSnapIDPool
|
|
|
|
{
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAX_IDS = 16*1024,
|
|
|
|
};
|
|
|
|
|
|
|
|
class CID
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
short m_Next;
|
|
|
|
short m_State; // 0 = free, 1 = alloced, 2 = timed
|
|
|
|
int m_Timeout;
|
|
|
|
};
|
|
|
|
|
|
|
|
CID m_aIDs[MAX_IDS];
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int m_FirstFree;
|
|
|
|
int m_FirstTimed;
|
|
|
|
int m_LastTimed;
|
|
|
|
int m_Usage;
|
|
|
|
int m_InUsage;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
|
|
|
public:
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
CSnapIDPool();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void Reset();
|
|
|
|
void RemoveFirstTimeout();
|
|
|
|
int NewID();
|
|
|
|
void TimeoutIDs();
|
2011-02-12 10:40:36 +00:00
|
|
|
void FreeID(int ID);
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
2011-12-29 22:36:53 +00:00
|
|
|
|
|
|
|
class CServerBan : public CNetBan
|
|
|
|
{
|
|
|
|
class CServer *m_pServer;
|
|
|
|
|
|
|
|
template<class T> int BanExt(T *pBanPool, const typename T::CDataType *pData, int Seconds, const char *pReason);
|
|
|
|
|
|
|
|
public:
|
|
|
|
class CServer *Server() const { return m_pServer; }
|
|
|
|
|
2012-08-16 22:03:53 +00:00
|
|
|
void InitServerBan(class IConsole *pConsole, class IStorage *pStorage, class CServer* pServer);
|
2011-12-29 22:36:53 +00:00
|
|
|
|
2012-08-16 22:03:53 +00:00
|
|
|
virtual int BanAddr(const NETADDR *pAddr, int Seconds, const char *pReason);
|
|
|
|
virtual int BanRange(const CNetRange *pRange, int Seconds, const char *pReason);
|
2011-12-29 22:36:53 +00:00
|
|
|
|
|
|
|
static void ConBanExt(class IConsole::IResult *pResult, void *pUser);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class CServer : public IServer
|
|
|
|
{
|
|
|
|
class IGameServer *m_pGameServer;
|
|
|
|
class IConsole *m_pConsole;
|
|
|
|
class IStorage *m_pStorage;
|
|
|
|
public:
|
|
|
|
class IGameServer *GameServer() { return m_pGameServer; }
|
|
|
|
class IConsole *Console() { return m_pConsole; }
|
|
|
|
class IStorage *Storage() { return m_pStorage; }
|
|
|
|
|
2011-07-05 19:54:10 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
AUTHED_NO=0,
|
|
|
|
AUTHED_MOD,
|
|
|
|
AUTHED_ADMIN,
|
2011-07-14 20:07:21 +00:00
|
|
|
|
|
|
|
MAX_RCONCMD_SEND=16,
|
2011-07-05 19:54:10 +00:00
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class CClient
|
|
|
|
{
|
|
|
|
public:
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
STATE_EMPTY = 0,
|
|
|
|
STATE_AUTH,
|
|
|
|
STATE_CONNECTING,
|
|
|
|
STATE_READY,
|
|
|
|
STATE_INGAME,
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
SNAPRATE_INIT=0,
|
|
|
|
SNAPRATE_FULL,
|
|
|
|
SNAPRATE_RECOVER
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class CInput
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int m_aData[MAX_INPUT_SIZE];
|
|
|
|
int m_GameTick; // the tick that was chosen for the input
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// connection state info
|
|
|
|
int m_State;
|
|
|
|
int m_Latency;
|
|
|
|
int m_SnapRate;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2013-08-04 15:50:12 +00:00
|
|
|
float m_Traffic;
|
2013-08-04 02:24:03 +00:00
|
|
|
int64 m_TrafficSince;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int m_LastAckedSnapshot;
|
|
|
|
int m_LastInputTick;
|
|
|
|
CSnapshotStorage m_Snapshots;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CInput m_LatestInput;
|
|
|
|
CInput m_aInputs[200]; // TODO: handle input better
|
|
|
|
int m_CurrentInput;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
char m_aName[MAX_NAME_LENGTH];
|
2011-03-15 10:23:49 +00:00
|
|
|
char m_aClan[MAX_CLAN_LENGTH];
|
|
|
|
int m_Country;
|
2010-05-29 07:25:38 +00:00
|
|
|
int m_Score;
|
|
|
|
int m_Authed;
|
2014-08-22 11:54:13 +00:00
|
|
|
int m_LastAuthed;
|
2010-09-16 11:06:11 +00:00
|
|
|
int m_AuthTries;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-14 20:07:21 +00:00
|
|
|
const IConsole::CCommandInfo *m_pRconCmdToSend;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void Reset();
|
2013-12-31 05:13:57 +00:00
|
|
|
|
|
|
|
// DDRace
|
|
|
|
|
|
|
|
NETADDR m_Addr;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CClient m_aClients[MAX_CLIENTS];
|
2013-12-31 05:13:57 +00:00
|
|
|
int IdMap[MAX_CLIENTS * VANILLA_MAX_CLIENTS];
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
CSnapshotDelta m_SnapshotDelta;
|
|
|
|
CSnapshotBuilder m_SnapshotBuilder;
|
|
|
|
CSnapIDPool m_IDPool;
|
|
|
|
CNetServer m_NetServer;
|
2011-07-30 11:40:01 +00:00
|
|
|
CEcon m_Econ;
|
2011-12-29 22:36:53 +00:00
|
|
|
CServerBan m_ServerBan;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
IEngineMap *m_pMap;
|
|
|
|
|
|
|
|
int64 m_GameStartTime;
|
|
|
|
//int m_CurrentGameTick;
|
|
|
|
int m_RunServer;
|
2010-05-30 12:01:11 +00:00
|
|
|
int m_MapReload;
|
2011-02-12 10:40:36 +00:00
|
|
|
int m_RconClientID;
|
2011-07-05 19:54:10 +00:00
|
|
|
int m_RconAuthLevel;
|
2011-07-30 11:40:01 +00:00
|
|
|
int m_PrintCBIndex;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
int64 m_Lastheartbeat;
|
|
|
|
//static NETADDR4 master_server;
|
|
|
|
|
|
|
|
char m_aCurrentMap[64];
|
2011-04-02 09:55:37 +00:00
|
|
|
unsigned m_CurrentMapCrc;
|
2010-05-29 07:25:38 +00:00
|
|
|
unsigned char *m_pCurrentMapData;
|
2014-11-23 20:24:20 +00:00
|
|
|
unsigned int m_CurrentMapSize;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2015-06-21 17:46:55 +00:00
|
|
|
int m_GeneratedRconPassword;
|
|
|
|
|
2014-09-26 00:05:22 +00:00
|
|
|
CDemoRecorder m_aDemoRecorder[MAX_CLIENTS+1];
|
2010-05-29 07:25:38 +00:00
|
|
|
CRegister m_Register;
|
2011-03-31 13:13:49 +00:00
|
|
|
CMapChecker m_MapChecker;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2013-07-30 23:31:53 +00:00
|
|
|
int m_RconRestrict;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CServer();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int TrySetClientName(int ClientID, const char *pName);
|
|
|
|
|
|
|
|
virtual void SetClientName(int ClientID, const char *pName);
|
2011-03-15 10:23:49 +00:00
|
|
|
virtual void SetClientClan(int ClientID, char const *pClan);
|
|
|
|
virtual void SetClientCountry(int ClientID, int Country);
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void SetClientScore(int ClientID, int Score);
|
|
|
|
|
|
|
|
void Kick(int ClientID, const char *pReason);
|
|
|
|
|
2011-07-22 21:17:16 +00:00
|
|
|
void DemoRecorder_HandleAutoStart();
|
2012-01-08 23:49:20 +00:00
|
|
|
bool DemoRecorder_IsRecording();
|
2011-07-22 21:17:16 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
//int Tick()
|
|
|
|
int64 TickStartTime(int Tick);
|
|
|
|
//int TickSpeed()
|
|
|
|
|
|
|
|
int Init();
|
|
|
|
|
2015-06-21 17:46:55 +00:00
|
|
|
void InitRconPasswordIfEmpty();
|
|
|
|
|
2011-12-31 11:11:48 +00:00
|
|
|
void SetRconCID(int ClientID);
|
2011-08-13 00:11:06 +00:00
|
|
|
bool IsAuthed(int ClientID);
|
2010-05-29 07:25:38 +00:00
|
|
|
int GetClientInfo(int ClientID, CClientInfo *pInfo);
|
2011-03-28 18:11:28 +00:00
|
|
|
void GetClientAddr(int ClientID, char *pAddrStr, int Size);
|
2011-02-12 10:40:36 +00:00
|
|
|
const char *ClientName(int ClientID);
|
2011-03-15 10:23:49 +00:00
|
|
|
const char *ClientClan(int ClientID);
|
|
|
|
int ClientCountry(int ClientID);
|
2010-05-29 07:25:38 +00:00
|
|
|
bool ClientIngame(int ClientID);
|
2011-12-04 15:51:33 +00:00
|
|
|
int MaxClients() const;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
virtual int SendMsg(CMsgPacker *pMsg, int Flags, int ClientID);
|
2010-05-29 07:25:38 +00:00
|
|
|
int SendMsgEx(CMsgPacker *pMsg, int Flags, int ClientID, bool System);
|
|
|
|
|
|
|
|
void DoSnapshot();
|
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
static int NewClientCallback(int ClientID, void *pUser);
|
|
|
|
static int DelClientCallback(int ClientID, const char *pReason, void *pUser);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2011-02-12 10:40:36 +00:00
|
|
|
void SendMap(int ClientID);
|
2011-03-15 08:58:57 +00:00
|
|
|
void SendConnectionReady(int ClientID);
|
2011-02-12 10:40:36 +00:00
|
|
|
void SendRconLine(int ClientID, const char *pLine);
|
2014-12-20 15:35:47 +00:00
|
|
|
static void SendRconLineAuthed(const char *pLine, void *pUser, bool Highlighted = false);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-14 20:07:21 +00:00
|
|
|
void SendRconCmdAdd(const IConsole::CCommandInfo *pCommandInfo, int ClientID);
|
|
|
|
void SendRconCmdRem(const IConsole::CCommandInfo *pCommandInfo, int ClientID);
|
|
|
|
void UpdateClientRconCommands();
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void ProcessClientPacket(CNetChunk *pPacket);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2013-12-31 05:13:57 +00:00
|
|
|
void SendServerInfo(const NETADDR *pAddr, int Token, bool Extended=false, int Offset=0);
|
2010-05-29 07:25:38 +00:00
|
|
|
void UpdateServerInfo();
|
|
|
|
|
|
|
|
void PumpNetwork();
|
|
|
|
|
2010-09-03 19:28:31 +00:00
|
|
|
char *GetMapName();
|
2010-05-29 07:25:38 +00:00
|
|
|
int LoadMap(const char *pMapName);
|
|
|
|
|
2014-09-26 00:05:22 +00:00
|
|
|
void SaveDemo(int ClientID, float Time);
|
|
|
|
void StartRecord(int ClientID);
|
|
|
|
void StopRecord(int ClientID);
|
|
|
|
bool IsRecording(int ClientID);
|
|
|
|
|
2010-08-17 22:06:00 +00:00
|
|
|
void InitRegister(CNetServer *pNetServer, IEngineMasterServer *pMasterServer, IConsole *pConsole);
|
2010-05-29 07:25:38 +00:00
|
|
|
int Run();
|
|
|
|
|
2013-07-22 22:15:50 +00:00
|
|
|
static void ConTestingCommands(IConsole::IResult *pResult, void *pUser);
|
2015-04-17 09:24:28 +00:00
|
|
|
static void ConAllowRescue(IConsole::IResult *pResult, void *pUser);
|
2011-08-13 00:11:06 +00:00
|
|
|
static void ConKick(IConsole::IResult *pResult, void *pUser);
|
2011-12-29 22:36:53 +00:00
|
|
|
static void ConStatus(IConsole::IResult *pResult, void *pUser);
|
2011-08-13 00:11:06 +00:00
|
|
|
static void ConShutdown(IConsole::IResult *pResult, void *pUser);
|
|
|
|
static void ConRecord(IConsole::IResult *pResult, void *pUser);
|
|
|
|
static void ConStopRecord(IConsole::IResult *pResult, void *pUser);
|
|
|
|
static void ConMapReload(IConsole::IResult *pResult, void *pUser);
|
2011-12-26 21:07:57 +00:00
|
|
|
static void ConLogout(IConsole::IResult *pResult, void *pUser);
|
2010-05-29 07:25:38 +00:00
|
|
|
static void ConchainSpecialInfoupdate(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
|
2010-06-03 12:48:32 +00:00
|
|
|
static void ConchainMaxclientsperipUpdate(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
|
2011-07-14 20:07:21 +00:00
|
|
|
static void ConchainModCommandUpdate(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
|
2011-07-30 11:40:01 +00:00
|
|
|
static void ConchainConsoleOutputLevelUpdate(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
|
2014-09-16 19:14:31 +00:00
|
|
|
static void ConchainRconPasswordChange(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
|
|
|
|
static void ConchainRconModPasswordChange(IConsole::IResult *pResult, void *pUserData, IConsole::FCommandCallback pfnCallback, void *pCallbackUserData);
|
2011-01-06 03:46:10 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void RegisterCommands();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual int SnapNewID();
|
|
|
|
virtual void SnapFreeID(int ID);
|
2011-02-12 10:40:36 +00:00
|
|
|
virtual void *SnapNewItem(int Type, int ID, int Size);
|
2010-05-29 07:25:38 +00:00
|
|
|
void SnapSetStaticsize(int ItemType, int Size);
|
2011-04-09 06:41:31 +00:00
|
|
|
|
|
|
|
// DDRace
|
|
|
|
|
|
|
|
void GetClientAddr(int ClientID, NETADDR *pAddr);
|
|
|
|
int m_aPrevStates[MAX_CLIENTS];
|
2010-12-06 02:27:35 +00:00
|
|
|
char *GetAnnouncementLine(char const *FileName);
|
2010-12-07 17:44:23 +00:00
|
|
|
unsigned m_AnnouncementLastLine;
|
2013-07-30 23:31:53 +00:00
|
|
|
void RestrictRconOutput(int ClientID) { m_RconRestrict = ClientID; }
|
2013-12-31 05:13:57 +00:00
|
|
|
|
|
|
|
virtual int* GetIdMap(int ClientID);
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|