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_CLIENT_H
|
|
|
|
#define ENGINE_CLIENT_H
|
|
|
|
#include "kernel.h"
|
|
|
|
|
|
|
|
#include "message.h"
|
2014-04-28 15:26:31 +00:00
|
|
|
#include <engine/shared/config.h>
|
2014-06-05 10:11:41 +00:00
|
|
|
#include <versionsrv/versionsrv.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
class IClient : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("client", 0)
|
|
|
|
protected:
|
|
|
|
// quick access to state of the client
|
|
|
|
int m_State;
|
|
|
|
|
|
|
|
// quick access to time variables
|
2014-04-28 15:26:31 +00:00
|
|
|
int m_PrevGameTick[2];
|
|
|
|
int m_CurGameTick[2];
|
|
|
|
float m_GameIntraTick[2];
|
|
|
|
float m_GameTickTime[2];
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-04-28 15:26:31 +00:00
|
|
|
int m_PredTick[2];
|
|
|
|
float m_PredIntraTick[2];
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
float m_LocalTime;
|
2012-01-01 12:38:46 +00:00
|
|
|
float m_RenderFrameTime;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int m_GameTickSpeed;
|
|
|
|
public:
|
2014-05-07 01:34:21 +00:00
|
|
|
int m_LocalIDs[2];
|
2014-06-05 10:11:41 +00:00
|
|
|
char m_aNews[NEWS_SIZE];
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
class CSnapItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int m_Type;
|
2011-02-12 10:40:36 +00:00
|
|
|
int m_ID;
|
2010-05-29 07:25:38 +00:00
|
|
|
int m_DataSize;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Constants: Client States
|
|
|
|
STATE_OFFLINE - The client is offline.
|
|
|
|
STATE_CONNECTING - The client is trying to connect to a server.
|
|
|
|
STATE_LOADING - The client has connected to a server and is loading resources.
|
|
|
|
STATE_ONLINE - The client is connected to a server and running the game.
|
|
|
|
STATE_DEMOPLAYBACK - The client is playing a demo
|
|
|
|
STATE_QUITING - The client is quiting.
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
STATE_OFFLINE=0,
|
|
|
|
STATE_CONNECTING,
|
|
|
|
STATE_LOADING,
|
|
|
|
STATE_ONLINE,
|
|
|
|
STATE_DEMOPLAYBACK,
|
|
|
|
STATE_QUITING,
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
inline int State() const { return m_State; }
|
|
|
|
|
|
|
|
// tick time access
|
2014-04-28 15:26:31 +00:00
|
|
|
inline int PrevGameTick() const { return m_PrevGameTick[g_Config.m_ClDummy]; }
|
|
|
|
inline int GameTick() const { return m_CurGameTick[g_Config.m_ClDummy]; }
|
|
|
|
inline int PredGameTick() const { return m_PredTick[g_Config.m_ClDummy]; }
|
|
|
|
inline float IntraGameTick() const { return m_GameIntraTick[g_Config.m_ClDummy]; }
|
|
|
|
inline float PredIntraGameTick() const { return m_PredIntraTick[g_Config.m_ClDummy]; }
|
|
|
|
inline float GameTickTime() const { return m_GameTickTime[g_Config.m_ClDummy]; }
|
2010-05-29 07:25:38 +00:00
|
|
|
inline int GameTickSpeed() const { return m_GameTickSpeed; }
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// other time access
|
2012-01-01 12:38:46 +00:00
|
|
|
inline float RenderFrameTime() const { return m_RenderFrameTime; }
|
2010-05-29 07:25:38 +00:00
|
|
|
inline float LocalTime() const { return m_LocalTime; }
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// actions
|
|
|
|
virtual void Connect(const char *pAddress) = 0;
|
|
|
|
virtual void Disconnect() = 0;
|
2014-04-26 18:29:42 +00:00
|
|
|
|
|
|
|
// dummy
|
|
|
|
virtual void DummyDisconnect(const char *pReason) = 0;
|
2014-04-28 13:19:57 +00:00
|
|
|
virtual void DummyConnect() = 0;
|
2014-04-26 18:29:42 +00:00
|
|
|
virtual bool DummyConnected() = 0;
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void Quit() = 0;
|
2010-10-06 21:07:35 +00:00
|
|
|
virtual const char *DemoPlayer_Play(const char *pFilename, int StorageType) = 0;
|
2010-12-07 23:42:32 +00:00
|
|
|
virtual void DemoRecorder_Start(const char *pFilename, bool WithTimestamp) = 0;
|
2011-01-06 22:21:51 +00:00
|
|
|
virtual void DemoRecorder_HandleAutoStart() = 0;
|
2010-12-07 23:02:24 +00:00
|
|
|
virtual void DemoRecorder_Stop() = 0;
|
2010-12-12 15:48:13 +00:00
|
|
|
virtual void AutoScreenshot_Start() = 0;
|
2011-03-18 18:03:13 +00:00
|
|
|
virtual void ServerBrowserUpdate() = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
// networking
|
|
|
|
virtual void EnterGame() = 0;
|
|
|
|
|
|
|
|
//
|
|
|
|
virtual int MapDownloadAmount() = 0;
|
|
|
|
virtual int MapDownloadTotalsize() = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// input
|
|
|
|
virtual int *GetInput(int Tick) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// remote console
|
|
|
|
virtual void RconAuth(const char *pUsername, const char *pPassword) = 0;
|
|
|
|
virtual bool RconAuthed() = 0;
|
2011-07-14 20:07:21 +00:00
|
|
|
virtual bool UseTempRconCommands() = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void Rcon(const char *pLine) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// server info
|
|
|
|
virtual void GetServerInfo(class CServerInfo *pServerInfo) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// snapshot interface
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
SNAP_CURRENT=0,
|
|
|
|
SNAP_PREV=1
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// TODO: Refactor: should redo this a bit i think, too many virtual calls
|
2011-02-12 10:40:36 +00:00
|
|
|
virtual int SnapNumItems(int SnapID) = 0;
|
|
|
|
virtual void *SnapFindItem(int SnapID, int Type, int ID) = 0;
|
|
|
|
virtual void *SnapGetItem(int SnapID, int Index, CSnapItem *pItem) = 0;
|
|
|
|
virtual void SnapInvalidateItem(int SnapID, int Index) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
virtual void SnapSetStaticsize(int ItemType, int Size) = 0;
|
|
|
|
|
|
|
|
virtual int SendMsg(CMsgPacker *pMsg, int Flags) = 0;
|
2014-04-28 13:19:57 +00:00
|
|
|
virtual int SendMsgExY(CMsgPacker *pMsg, int Flags, bool System=true, int NetClient=1) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
int SendPackMsg(T *pMsg, int Flags)
|
|
|
|
{
|
|
|
|
CMsgPacker Packer(pMsg->MsgID());
|
|
|
|
if(pMsg->Pack(&Packer))
|
|
|
|
return -1;
|
|
|
|
return SendMsg(&Packer, Flags);
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
|
|
|
//
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual const char *ErrorString() = 0;
|
|
|
|
virtual const char *LatestVersion() = 0;
|
|
|
|
virtual bool ConnectionProblems() = 0;
|
2011-01-17 12:28:15 +00:00
|
|
|
|
|
|
|
virtual bool SoundInitFailed() = 0;
|
2011-02-13 05:35:13 +00:00
|
|
|
|
2011-02-18 10:41:27 +00:00
|
|
|
virtual int GetDebugFont() = 0;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2011-02-04 17:25:04 +00:00
|
|
|
//DDRace
|
2011-02-13 05:35:13 +00:00
|
|
|
|
2011-02-04 17:25:04 +00:00
|
|
|
virtual const char* GetCurrentMap() = 0;
|
|
|
|
virtual int GetCurrentMapCrc() = 0;
|
|
|
|
virtual const char* RaceRecordStart(const char *pFilename) = 0;
|
|
|
|
virtual void RaceRecordStop() = 0;
|
|
|
|
virtual bool DemoIsRecording() = 0;
|
2014-08-13 14:35:15 +00:00
|
|
|
|
|
|
|
virtual void DemoSliceBegin() = 0;
|
|
|
|
virtual void DemoSliceEnd() = 0;
|
|
|
|
virtual void DemoSlice() = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IGameClient : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("gameclient", 0)
|
|
|
|
protected:
|
|
|
|
public:
|
|
|
|
virtual void OnConsoleInit() = 0;
|
|
|
|
|
|
|
|
virtual void OnRconLine(const char *pLine) = 0;
|
|
|
|
virtual void OnInit() = 0;
|
|
|
|
virtual void OnNewSnapshot() = 0;
|
|
|
|
virtual void OnEnterGame() = 0;
|
|
|
|
virtual void OnShutdown() = 0;
|
|
|
|
virtual void OnRender() = 0;
|
|
|
|
virtual void OnStateChange(int NewState, int OldState) = 0;
|
|
|
|
virtual void OnConnected() = 0;
|
2014-05-03 00:30:05 +00:00
|
|
|
virtual void OnMessage(int MsgID, CUnpacker *pUnpacker, bool IsDummy = 0) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void OnPredict() = 0;
|
2011-01-17 11:28:37 +00:00
|
|
|
virtual void OnActivateEditor() = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual int OnSnapInput(int *pData) = 0;
|
2014-04-28 13:19:57 +00:00
|
|
|
virtual void SendDummyInfo(bool Start) = 0;
|
2014-07-07 23:41:45 +00:00
|
|
|
virtual void ResetDummyInput() = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual const char *GetItemName(int Type) = 0;
|
|
|
|
virtual const char *Version() = 0;
|
|
|
|
virtual const char *NetVersion() = 0;
|
|
|
|
|
2014-04-28 14:47:44 +00:00
|
|
|
virtual void OnDummyDisconnect() = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern IGameClient *CreateGameClient();
|
|
|
|
#endif
|