forked from XutaxKamay/css_enhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputmanager.cpp
311 lines (263 loc) · 7.01 KB
/
inputmanager.cpp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: The main manager of the UI
//
// $Revision: $
// $NoKeywords: $
//===========================================================================//
#include "inputmanager.h"
#include "legion.h"
#include "uimanager.h"
#include "inputsystem/iinputsystem.h"
#include "tier2/tier2.h"
#include "tier1/convar.h"
//-----------------------------------------------------------------------------
// Singleton accessor
//-----------------------------------------------------------------------------
static CInputManager s_InputManager;
extern CInputManager *g_pInputManager = &s_InputManager;
//-----------------------------------------------------------------------------
// Initialization
//-----------------------------------------------------------------------------
bool CInputManager::Init()
{
// FIXME: Read keybindings from a file
m_KeyBindings.SetBinding( "w", "+forward" );
m_KeyBindings.SetBinding( "s", "+back" );
m_KeyBindings.SetBinding( "`", "toggleconsole" );
m_ButtonUpToEngine.ClearAll();
return true;
}
//-----------------------------------------------------------------------------
// Add a command into the command queue
//-----------------------------------------------------------------------------
void CInputManager::AddCommand( const char *pCommand )
{
m_CommandBuffer.AddText( pCommand );
}
//-----------------------------------------------------------------------------
// FIXME! This is necessary only because of an artifact of how ConCommands used to work
//-----------------------------------------------------------------------------
static ConCommand *FindNamedCommand( char const *name )
{
// look through the command list for all matches
ConCommandBase const *cmd = (ConCommandBase const *)vgui::icvar()->GetCommands();
while (cmd)
{
if (!Q_strcmp( name, cmd->GetName() ) )
{
if ( cmd->IsCommand() )
{
return ( ConCommand * )cmd;
}
}
cmd = cmd->GetNext();
}
return NULL;
}
//-----------------------------------------------------------------------------
// Purpose:
//-----------------------------------------------------------------------------
void CInputManager::PrintConCommandBaseDescription( const ConCommandBase *pVar )
{
bool bMin, bMax;
float fMin, fMax;
const char *pStr;
Assert( pVar );
Color clr;
clr.SetColor( 255, 100, 100, 255 );
if ( !pVar->IsCommand() )
{
ConVar *var = ( ConVar * )pVar;
bMin = var->GetMin( fMin );
bMax = var->GetMax( fMax );
char const *value = NULL;
char tempVal[ 32 ];
if ( var->IsBitSet( FCVAR_NEVER_AS_STRING ) )
{
value = tempVal;
if ( fabs( (float)var->GetInt() - var->GetFloat() ) < 0.000001 )
{
Q_snprintf( tempVal, sizeof( tempVal ), "%d", var->GetInt() );
}
else
{
Q_snprintf( tempVal, sizeof( tempVal ), "%f", var->GetFloat() );
}
}
else
{
value = var->GetString();
}
if ( value )
{
Msg( "\"%s\" = \"%s\"", var->GetName(), value );
if ( Q_stricmp( value, var->GetDefault() ) )
{
Msg( " ( def. \"%s\" )", var->GetDefault() );
}
}
if ( bMin )
{
Msg( " min. %f", fMin );
}
if ( bMax )
{
Msg( " max. %f", fMax );
}
Msg( "\n" );
}
else
{
ConCommand *var = ( ConCommand * )pVar;
Msg( "\"%s\"\n", var->GetName() );
}
// PrintConCommandBaseFlags( pVar );
pStr = pVar->GetHelpText();
if ( pStr && pStr[0] )
{
Msg( " - %s\n", pStr );
}
}
//-----------------------------------------------------------------------------
// Per-frame update
//-----------------------------------------------------------------------------
void CInputManager::ProcessCommands( )
{
m_CommandBuffer.BeginProcessingCommands( 1 );
while ( m_CommandBuffer.DequeueNextCommand() )
{
const CCommand& args = m_CommandBuffer.GetCommand();
const ConCommandBase *pCommand = FindNamedCommand( args[ 0 ] );
if ( pCommand && pCommand->IsCommand() )
{
// FIXME: Um... yuck!?!
ConCommand *pConCommand = const_cast<ConCommand*>( static_cast<const ConCommand*>( pCommand ) );
pConCommand->Dispatch( args );
continue;
}
ConVar *pConVar = g_pCVar->FindVar( args[0] );
if ( !pConVar )
continue;
// perform a variable print or set
if ( args.ArgC() == 1 )
{
PrintConCommandBaseDescription( pConVar );
continue;
}
// Note that we don't want the tokenized list, send down the entire string
// except for surrounding quotes
char remaining[1024];
const char *pArgS = args.ArgS();
int nLen = Q_strlen( pArgS );
bool bIsQuoted = pArgS[0] == '\"';
if ( !bIsQuoted )
{
Q_strncpy( remaining, args.ArgS(), sizeof(remaining) );
}
else
{
--nLen;
Q_strncpy( remaining, &pArgS[1], sizeof(remaining) );
}
// Now strip off any trailing spaces
char *p = remaining + nLen - 1;
while ( p >= remaining )
{
if ( *p > ' ' )
break;
*p-- = 0;
}
// Strip off ending quote
if ( bIsQuoted && p >= remaining )
{
if ( *p == '\"' )
{
*p = 0;
}
}
if ( pConVar->IsBitSet( FCVAR_NEVER_AS_STRING ) )
{
pConVar->SetValue( (float)atof( remaining ) );
}
else
{
pConVar->SetValue( remaining );
}
}
m_CommandBuffer.EndProcessingCommands();
}
//-----------------------------------------------------------------------------
// Per-frame update
//-----------------------------------------------------------------------------
void CInputManager::Update( )
{
char cmd[1024];
g_pInputSystem->PollInputState();
int nEventCount = g_pInputSystem->GetEventCount();
const InputEvent_t* pEvents = g_pInputSystem->GetEventData( );
for ( int i = 0; i < nEventCount; ++i )
{
if ( pEvents[i].m_nType == IE_Quit )
{
IGameManager::Stop();
break;
}
bool bBypassVGui = false;
switch( pEvents[i].m_nType )
{
case IE_AppActivated:
if ( pEvents[i].m_nData == 0 )
{
m_ButtonUpToEngine.ClearAll();
}
break;
case IE_ButtonReleased:
{
// This logic is necessary to deal with switching back + forth
// between vgui + the engine. If we downclick in the engine,
// the engine must get the upclick.
ButtonCode_t code = (ButtonCode_t)pEvents[i].m_nData;
if ( m_ButtonUpToEngine[ code ] )
{
m_ButtonUpToEngine.Clear( code );
bBypassVGui = true;
}
}
break;
default:
break;
}
if ( !bBypassVGui )
{
if ( g_pUIManager->ProcessInputEvent( pEvents[i] ) )
continue;
}
// FIXME: Add game keybinding system here
bool bButtonDown = ( pEvents[i].m_nType == IE_ButtonPressed );
bool bButtonUp = ( pEvents[i].m_nType == IE_ButtonReleased );
if ( bButtonDown || bButtonUp )
{
ButtonCode_t code = (ButtonCode_t)pEvents[i].m_nData;
if ( bButtonDown )
{
m_ButtonUpToEngine.Set( code );
}
const char *pBinding = m_KeyBindings.GetBindingForButton( code );
if ( !pBinding )
continue;
if ( pBinding[0] != '+' )
{
if ( bButtonDown )
{
m_CommandBuffer.AddText( pBinding );
}
continue;
}
Q_snprintf( cmd, sizeof(cmd), "%c%s %i\n", bButtonUp ? '-' : '+', &pBinding[1], code );
m_CommandBuffer.AddText( cmd );
continue;
}
}
ProcessCommands();
}