2010-05-29 07:25:38 +00:00
|
|
|
#ifndef GAME_CLIENT_COMPONENTS_CONSOLE_H
|
|
|
|
#define GAME_CLIENT_COMPONENTS_CONSOLE_H
|
|
|
|
#include <engine/shared/ringbuffer.h>
|
|
|
|
#include <game/client/component.h>
|
|
|
|
#include <game/client/lineinput.h>
|
|
|
|
|
|
|
|
class CGameConsole : public CComponent
|
|
|
|
{
|
|
|
|
class CInstance
|
|
|
|
{
|
|
|
|
public:
|
2010-10-16 08:32:56 +00:00
|
|
|
struct CBacklogEntry
|
|
|
|
{
|
|
|
|
float m_YOffset;
|
|
|
|
char m_aText[1];
|
|
|
|
};
|
|
|
|
TStaticRingBuffer<CBacklogEntry, 64*1024, CRingBufferBase::FLAG_RECYCLE> m_Backlog;
|
2010-05-29 07:25:38 +00:00
|
|
|
TStaticRingBuffer<char, 64*1024, CRingBufferBase::FLAG_RECYCLE> m_History;
|
|
|
|
char *m_pHistoryEntry;
|
|
|
|
|
|
|
|
CLineInput m_Input;
|
|
|
|
int m_Type;
|
|
|
|
int m_CompletionEnumerationCount;
|
|
|
|
int m_BacklogActPage;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CGameConsole *m_pGameConsole;
|
|
|
|
|
|
|
|
char m_aCompletionBuffer[128];
|
|
|
|
int m_CompletionChosen;
|
|
|
|
int m_CompletionFlagmask;
|
2010-06-19 11:48:01 +00:00
|
|
|
float m_CompletionRenderOffset;
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
IConsole::CCommandInfo *m_pCommand;
|
|
|
|
|
2010-06-05 11:38:08 +00:00
|
|
|
CInstance(int t);
|
|
|
|
void Init(CGameConsole *pGameConsole);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2010-06-19 18:51:54 +00:00
|
|
|
void ClearBacklog();
|
2010-10-10 22:30:56 +00:00
|
|
|
void ClearHistory();
|
2010-06-19 18:51:54 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void ExecuteLine(const char *pLine);
|
|
|
|
|
|
|
|
void OnInput(IInput::CEvent Event);
|
|
|
|
void PrintLine(const char *pLine);
|
|
|
|
|
|
|
|
const char *GetString() const { return m_Input.GetString(); }
|
|
|
|
static void PossibleCommandsCompleteCallback(const char *pStr, void *pUser);
|
|
|
|
};
|
|
|
|
|
|
|
|
class IConsole *m_pConsole;
|
|
|
|
|
|
|
|
CInstance m_LocalConsole;
|
|
|
|
CInstance m_RemoteConsole;
|
|
|
|
|
|
|
|
CInstance *CurrentConsole();
|
|
|
|
float TimeNow();
|
|
|
|
|
|
|
|
int m_ConsoleType;
|
|
|
|
int m_ConsoleState;
|
|
|
|
float m_StateChangeEnd;
|
|
|
|
float m_StateChangeDuration;
|
|
|
|
|
|
|
|
void Toggle(int Type);
|
2010-06-20 12:12:59 +00:00
|
|
|
void Dump(int Type);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
static void PossibleCommandsRenderCallback(const char *pStr, void *pUser);
|
|
|
|
static void ClientConsolePrintCallback(const char *pStr, void *pUserData);
|
|
|
|
static void ConToggleLocalConsole(IConsole::IResult *pResult, void *pUserData);
|
|
|
|
static void ConToggleRemoteConsole(IConsole::IResult *pResult, void *pUserData);
|
2010-06-19 18:51:54 +00:00
|
|
|
static void ConClearLocalConsole(IConsole::IResult *pResult, void *pUserData);
|
|
|
|
static void ConClearRemoteConsole(IConsole::IResult *pResult, void *pUserData);
|
2010-06-20 12:12:59 +00:00
|
|
|
static void ConDumpLocalConsole(IConsole::IResult *pResult, void *pUserData);
|
|
|
|
static void ConDumpRemoteConsole(IConsole::IResult *pResult, void *pUserData);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
CGameConsole();
|
|
|
|
|
|
|
|
void PrintLine(int Type, const char *pLine);
|
|
|
|
|
2010-10-10 22:30:56 +00:00
|
|
|
virtual void OnStateChange(int NewState, int OldState);
|
2010-05-29 07:25:38 +00:00
|
|
|
virtual void OnConsoleInit();
|
|
|
|
virtual void OnReset();
|
|
|
|
virtual void OnRender();
|
|
|
|
virtual void OnMessage(int MsgType, void *pRawMsg);
|
|
|
|
virtual bool OnInput(IInput::CEvent Events);
|
|
|
|
};
|
|
|
|
#endif
|