blob: 38e605832ebbb6f394b97f1215d79ca06fb7bb0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef CS_CLIENTMODE_H
#define CS_CLIENTMODE_H
#ifdef _WIN32
#pragma once
#endif
#include "clientmode_shared.h"
#include "counterstrikeviewport.h"
class ClientModeCSNormal : public ClientModeShared
{
DECLARE_CLASS( ClientModeCSNormal, ClientModeShared );
private:
// IClientMode overrides.
public:
ClientModeCSNormal();
virtual void Init();
virtual void InitViewport();
virtual void Update();
virtual int KeyInput( int down, ButtonCode_t keynum, const char *pszCurrentBinding );
virtual float GetViewModelFOV( void );
int GetDeathMessageStartHeight( void );
virtual void FireGameEvent( IGameEvent *event );
virtual void PostRenderVGui();
virtual bool ShouldDrawViewModel( void );
virtual bool CanRecordDemo( char *errorMsg, int length ) const;
//=============================================================================
// HPE_BEGIN:
// [menglish] Save server information shown to the client in a persistent place
//=============================================================================
virtual wchar_t* GetServerName() { return m_pServerName; }
virtual void SetServerName(wchar_t* name);
virtual wchar_t* GetMapName() { return m_pMapName; }
virtual void SetMapName(wchar_t* name);
private:
wchar_t m_pServerName[256];
wchar_t m_pMapName[256];
//=============================================================================
// HPE_END
//=============================================================================
};
extern IClientMode *GetClientModeNormal();
extern ClientModeCSNormal* GetClientModeCSNormal();
#endif // CS_CLIENTMODE_H
|