summaryrefslogtreecommitdiff
path: root/game/client/tf2/ObjectControlPanel.cpp
blob: eef89b097cef2c77e0c7c45b8354696ebd970c93 (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
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================//
#include "cbase.h"
#include "ObjectControlPanel.h"
#include <vgui_controls/Controls.h>
#include <vgui_controls/Label.h>
#include "vgui_bitmapbutton.h"
#include <vgui/ISurface.h>
#include <vgui/IVGui.h>
#include "C_BaseTFPlayer.h"
#include "clientmode_tfbase.h"
#include <vgui/IScheme.h>
#include <vgui_controls/Slider.h>
#include "vgui_rotation_slider.h"

// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"


#define DISMANTLE_WAIT_TIME 5.0


//-----------------------------------------------------------------------------
// Standard VGUI panel for objects 
//-----------------------------------------------------------------------------
DECLARE_VGUI_SCREEN_FACTORY( CObjectControlPanel, "object_control_panel" );


//-----------------------------------------------------------------------------
// Constructor: 
//-----------------------------------------------------------------------------
CObjectControlPanel::CObjectControlPanel( vgui::Panel *parent, const char *panelName )
	: BaseClass( parent, panelName, g_hVGuiObjectScheme ) 
{
	// Make some high-level panels to group stuff we want to activate/deactivate
	m_pActivePanel = new CCommandChainingPanel( this, "ActivePanel" );
	m_pDeterioratingPanel = new CCommandChainingPanel( this, "DeterioratingPanel" );
	m_pDismantlingPanel = new CCommandChainingPanel( this, "DismantlingPanel" );

	SetCursor( vgui::dc_none ); // don't draw a VGUI cursor for this panel, and for its children

	// Make sure these are behind everything
	m_pActivePanel->SetZPos( -1 );
	m_pDeterioratingPanel->SetZPos( -1 );
	m_pDismantlingPanel->SetZPos( -1 );
}


//-----------------------------------------------------------------------------
// Initialization 
//-----------------------------------------------------------------------------
bool CObjectControlPanel::Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData )
{
	// Grab ahold of certain well-known controls
	m_pHealthLabel = new vgui::Label( this, "HealthReadout", "" );
	m_pOwnerLabel = new vgui::Label( this, "OwnerReadout", "" );
	m_pDismantleButton = new CBitmapButton( this, "DismantleButton", "Dismantle" );
	m_pAssumeControlButton = new CBitmapButton( GetDeterioratingPanel(), "AssumeControl", "" );
	m_pDismantleTimeLabel = new vgui::Label( GetDismantlingPanel(), "DismantleTime", "" );

	m_flDismantleTime = -1;

	// Make sure we get ticked...
	vgui::ivgui()->AddTickSignal( GetVPanel() );

	if (!BaseClass::Init(pKeyValues, pInitData))
		return false;

	SetCursor( vgui::dc_none ); // don't draw a VGUI cursor for this panel, and for its children

	// Make the bounds of the sub-panels match
	int x, y, w, h;
	GetBounds( x, y, w, h );
	m_pActivePanel->SetBounds( x, y, w, h );
	m_pDeterioratingPanel->SetBounds( x, y, w, h );
	m_pDismantlingPanel->SetBounds( x, y, w, h );

	// Make em all invisible
	m_pActivePanel->SetVisible( false );
	m_pDeterioratingPanel->SetVisible( false );
	m_pDismantlingPanel->SetVisible( false );
	m_pCurrentPanel = m_pActivePanel;

	return true;
}


//-----------------------------------------------------------------------------
// Returns the object it's attached to 
//-----------------------------------------------------------------------------
C_BaseObject *CObjectControlPanel::GetOwningObject() const
{
	C_BaseEntity *pScreenEnt = GetEntity();
	if (!pScreenEnt)
		return NULL;

	C_BaseEntity *pObj = pScreenEnt->GetOwnerEntity();
	if (!pObj)
		return NULL;

	Assert( dynamic_cast<C_BaseObject*>(pObj) );
	return static_cast<C_BaseObject*>(pObj);
}


//-----------------------------------------------------------------------------
// Ticks the panel when its in its various states
//-----------------------------------------------------------------------------

void CObjectControlPanel::OnTickDeteriorating( C_BaseObject *pObj, C_BaseTFPlayer *pLocalPlayer )
{
	char buf[256];
	if ( pLocalPlayer && ClassCanBuild( pLocalPlayer->PlayerClass(), pObj->GetType() ) )
	{
		int nCost = CalculateObjectCost( pObj->GetType(), pLocalPlayer->GetNumObjects( pObj->GetType() ), pLocalPlayer->GetTeamNumber() );
		Q_snprintf( buf, sizeof( buf ), "Buy for %d", nCost );
		m_pAssumeControlButton->SetText( buf );
		m_pAssumeControlButton->SetVisible( true );

		bool bHasEnoughResources = pLocalPlayer->GetBankResources() >= nCost;
		m_pAssumeControlButton->SetEnabled( bHasEnoughResources ); 
	}
	else
	{
		m_pAssumeControlButton->SetVisible( false );
	}

	ShowDismantleButton( false );
}

void CObjectControlPanel::OnTickActive( C_BaseObject *pObj, C_BaseTFPlayer *pLocalPlayer )
{
	ShowDismantleButton( !(pObj->GetFlags() & OF_CANNOT_BE_DISMANTLED) && pObj->GetOwner() == pLocalPlayer );
}

void CObjectControlPanel::OnTickDismantling( C_BaseObject *pObj, C_BaseTFPlayer *pLocalPlayer )
{
	ShowDismantleButton( false );
	if ( !m_bDismantled && (gpGlobals->curtime >= m_flDismantleTime))
	{
		Dismantle();
		m_bDismantled = true;
	}

	int nSec = (int)(m_flDismantleTime - gpGlobals->curtime + 0.5f);
	if (nSec < 0)
		nSec = 0;

	char buf[256];
	int nLen = Q_snprintf( buf, sizeof( buf ), "%d second", nSec );
	if (nSec != 1)
	{
		buf[nLen] = 's';
		++nLen;
		buf[nLen] = 0;
	}

	m_pDismantleTimeLabel->SetText( buf );
}


vgui::Panel* CObjectControlPanel::TickCurrentPanel()
{
	C_BaseTFPlayer *pLocalPlayer = C_BaseTFPlayer::GetLocalPlayer();
	C_BaseObject *pObj = GetOwningObject();

	if (IsDismantling())
	{
		m_pCurrentPanel = GetDismantlingPanel();

		OnTickDismantling(pObj, pLocalPlayer);
	}
	else if (pObj->IsDeteriorating())
	{
		m_pCurrentPanel = GetDeterioratingPanel();

		OnTickDeteriorating(pObj, pLocalPlayer);
	}
	else
	{
		m_pCurrentPanel = GetActivePanel();

		OnTickActive(pObj, pLocalPlayer);
	}
	
	return m_pCurrentPanel;
}


void CObjectControlPanel::ShowDismantleButton( bool bShow )
{
	m_pDismantleButton->SetVisible( bShow );
}


void CObjectControlPanel::ShowOwnerLabel( bool bShow )
{
	m_pOwnerLabel->SetVisible( bShow );
}


void CObjectControlPanel::ShowHealthLabel( bool bShow )
{
	m_pHealthLabel->SetVisible( bShow );
}


void CObjectControlPanel::SendToServerObject( const char *pMsg )
{
	C_BaseObject *pObj = GetOwningObject();
	if (pObj)
	{
		pObj->SendClientCommand( pMsg );
	}
}


//-----------------------------------------------------------------------------
// Frame-based update
//-----------------------------------------------------------------------------
void CObjectControlPanel::OnTick()
{
	BaseClass::OnTick();

	C_BaseObject *pObj = GetOwningObject();
	if (!pObj)
		return;

	char buf[256];
	Q_snprintf( buf, sizeof( buf ), "Health: %d%%", (int)(pObj->HealthFraction() * 100.0f) );
	m_pHealthLabel->SetText( buf );

	C_BaseTFPlayer *pPlayer = pObj->GetOwner();
	if (pPlayer)
	{
		Q_snprintf( buf, sizeof( buf ), "Owner: %s", pPlayer->GetPlayerName() );
	}
	else
	{
		Q_snprintf( buf, sizeof( buf ), "No Owner" );
	}

	m_pOwnerLabel->SetText( buf );

	// Update the current subpanel
	m_pCurrentPanel->SetVisible( false );
	
	m_pCurrentPanel = TickCurrentPanel();

	m_pCurrentPanel->SetVisible( true );
}


//-----------------------------------------------------------------------------
// Dismantles the object 
//-----------------------------------------------------------------------------
void CObjectControlPanel::Dismantle()
{
	SendToServerObject( "dismantle" );
}


//-----------------------------------------------------------------------------
// Starts/stops dismantling
//-----------------------------------------------------------------------------
void CObjectControlPanel::StartDismantling()
{
	m_flDismantleTime = gpGlobals->curtime + DISMANTLE_WAIT_TIME;
	m_bDismantled = false;
}

void CObjectControlPanel::StopDismantling()
{
	m_flDismantleTime = -1.0f;
}

bool CObjectControlPanel::IsDismantling() const
{
	return m_flDismantleTime >= 0.0f;
}


//-----------------------------------------------------------------------------
// Assumes control of the object 
//-----------------------------------------------------------------------------
void CObjectControlPanel::AssumeControl()
{
	SendToServerObject( "takecontrol" );
}


//-----------------------------------------------------------------------------
// Button click handlers
//-----------------------------------------------------------------------------
void CObjectControlPanel::OnCommand( const char *command )
{
	if (!Q_strnicmp(command, "Dismantle", 10))
	{
		StartDismantling();
		return;
	}

	if (!Q_strnicmp(command, "CancelDismantle", 20))
	{
		StopDismantling();
		return;
	}

	if (!Q_strnicmp(command, "AssumeControl", 15))
	{
		AssumeControl();
		return;
	}

	BaseClass::OnCommand(command);
}


DECLARE_VGUI_SCREEN_FACTORY( CRotatingObjectControlPanel, "rotating_object_control_panel" );


//-----------------------------------------------------------------------------
// This is a panel for an object that has rotational controls 
//-----------------------------------------------------------------------------
CRotatingObjectControlPanel::CRotatingObjectControlPanel( vgui::Panel *parent, const char *panelName )
	: BaseClass( parent, panelName ) 
{
}

bool CRotatingObjectControlPanel::Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData )
{
	// Grab ahold of certain well-known controls
	m_pRotationSlider = new CRotationSlider( GetActivePanel(), "RotationSlider" );
	m_pRotationLabel = new vgui::Label( GetActivePanel(), "RotationLabel", "Rotation Control" );

	if (!BaseClass::Init(pKeyValues, pInitData))
		return false;

	m_pRotationSlider->SetControlledObject( GetOwningObject() );

	return true;
}

void CRotatingObjectControlPanel::OnTickActive( C_BaseObject *pObj, C_BaseTFPlayer *pLocalPlayer )
{
	BaseClass::OnTickActive( pObj, pLocalPlayer );
	bool bEnable = (pObj->GetOwner() == pLocalPlayer);
	m_pRotationSlider->SetVisible( bEnable );
	m_pRotationLabel->SetVisible( bEnable );
}