You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
184 lines
5.3 KiB
184 lines
5.3 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
#include "cbase.h"
|
||
|
#include "c_basefourwheelvehicle.h"
|
||
|
#include "tf_movedata.h"
|
||
|
#include "ObjectControlPanel.h"
|
||
|
#include <vgui_controls/Label.h>
|
||
|
#include <vgui_controls/Button.h>
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class C_VehicleFlatbed : public C_BaseTFFourWheelVehicle
|
||
|
{
|
||
|
DECLARE_CLASS( C_VehicleFlatbed, C_BaseTFFourWheelVehicle );
|
||
|
public:
|
||
|
DECLARE_CLIENTCLASS();
|
||
|
|
||
|
C_VehicleFlatbed();
|
||
|
|
||
|
private:
|
||
|
C_VehicleFlatbed( const C_VehicleFlatbed & ); // not defined, not accessible
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
IMPLEMENT_CLIENTCLASS_DT(C_VehicleFlatbed, DT_VehicleFlatbed, CVehicleFlatbed)
|
||
|
END_RECV_TABLE()
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose:
|
||
|
//-----------------------------------------------------------------------------
|
||
|
C_VehicleFlatbed::C_VehicleFlatbed()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Control screen
|
||
|
//-----------------------------------------------------------------------------
|
||
|
class CVehicleFlatbedControlPanel : public CObjectControlPanel
|
||
|
{
|
||
|
DECLARE_CLASS( CVehicleFlatbedControlPanel, CObjectControlPanel );
|
||
|
|
||
|
public:
|
||
|
CVehicleFlatbedControlPanel( vgui::Panel *parent, const char *panelName );
|
||
|
virtual bool Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData );
|
||
|
virtual void OnTick();
|
||
|
virtual void OnCommand( const char *command );
|
||
|
|
||
|
private:
|
||
|
void GetInRam( void );
|
||
|
|
||
|
private:
|
||
|
vgui::Label *m_pDriverLabel;
|
||
|
vgui::Label *m_pPassengerLabel;
|
||
|
vgui::Button *m_pOccupyButton;
|
||
|
};
|
||
|
|
||
|
|
||
|
DECLARE_VGUI_SCREEN_FACTORY( CVehicleFlatbedControlPanel, "vehicle_battering_ram_control_panel" );
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Constructor:
|
||
|
//-----------------------------------------------------------------------------
|
||
|
CVehicleFlatbedControlPanel::CVehicleFlatbedControlPanel( vgui::Panel *parent, const char *panelName )
|
||
|
: BaseClass( parent, "CVehicleBatteringRamControlPanel" )
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Initialization
|
||
|
//-----------------------------------------------------------------------------
|
||
|
bool CVehicleFlatbedControlPanel::Init( KeyValues* pKeyValues, VGuiScreenInitData_t* pInitData )
|
||
|
{
|
||
|
m_pDriverLabel = new vgui::Label( this, "DriverReadout", "" );
|
||
|
m_pPassengerLabel = new vgui::Label( this, "PassengerReadout", "" );
|
||
|
m_pOccupyButton = new vgui::Button( this, "OccupyButton", "Occupy" );
|
||
|
|
||
|
if (!BaseClass::Init(pKeyValues, pInitData))
|
||
|
return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Frame-based update
|
||
|
//-----------------------------------------------------------------------------
|
||
|
void CVehicleFlatbedControlPanel::OnTick()
|
||
|
{
|
||
|
BaseClass::OnTick();
|
||
|
|
||
|
C_BaseObject *pObj = GetOwningObject();
|
||
|
if (!pObj)
|
||
|
return;
|
||
|
|
||
|
Assert( dynamic_cast<C_VehicleFlatbed*>(pObj) );
|
||
|
C_VehicleFlatbed *pRam = static_cast<C_VehicleFlatbed*>(pObj);
|
||
|
|
||
|
char buf[256];
|
||
|
// Update the currently manned player label
|
||
|
if ( pRam->GetDriverPlayer() )
|
||
|
{
|
||
|
Q_snprintf( buf, sizeof( buf ), "Driven by %s", pRam->GetDriverPlayer()->GetPlayerName() );
|
||
|
m_pDriverLabel->SetText( buf );
|
||
|
m_pDriverLabel->SetVisible( true );
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
m_pDriverLabel->SetVisible( false );
|
||
|
}
|
||
|
|
||
|
int nPassengerCount = pRam->GetPassengerCount();
|
||
|
int nMaxPassengerCount = pRam->GetMaxPassengerCount();
|
||
|
|
||
|
Q_snprintf( buf, sizeof( buf ), "Passengers %d/%d", nPassengerCount >= 1 ? nPassengerCount - 1 : 0, nMaxPassengerCount - 1 );
|
||
|
m_pPassengerLabel->SetText( buf );
|
||
|
|
||
|
// Update the get in button
|
||
|
if ( pRam->IsPlayerInVehicle( C_BaseTFPlayer::GetLocalPlayer() ) )
|
||
|
{
|
||
|
m_pOccupyButton->SetEnabled( false );
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ( pRam->GetOwner() == C_BaseTFPlayer::GetLocalPlayer() )
|
||
|
{
|
||
|
if (nPassengerCount == nMaxPassengerCount)
|
||
|
{
|
||
|
// Owners can boot other players to get in
|
||
|
C_BaseTFPlayer *pPlayer = static_cast<C_BaseTFPlayer*>(pRam->GetPassenger( VEHICLE_ROLE_DRIVER ));
|
||
|
Q_snprintf( buf, sizeof( buf ), "Get In (Ejecting %s)", pPlayer->GetPlayerName() );
|
||
|
m_pDriverLabel->SetText( buf );
|
||
|
m_pOccupyButton->SetEnabled( true );
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
m_pOccupyButton->SetText( "Get In" );
|
||
|
m_pOccupyButton->SetEnabled( true );
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
m_pOccupyButton->SetText( "Get In" );
|
||
|
m_pOccupyButton->SetEnabled( pRam->GetPassengerCount() < pRam->GetMaxPassengerCount() );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Purpose: Handle clicking on the Occupy button
|
||
|
//-----------------------------------------------------------------------------
|
||
|
void CVehicleFlatbedControlPanel::GetInRam( void )
|
||
|
{
|
||
|
C_BaseObject *pObj = GetOwningObject();
|
||
|
if (pObj)
|
||
|
{
|
||
|
pObj->SendClientCommand( "toggle_use" );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Button click handlers
|
||
|
//-----------------------------------------------------------------------------
|
||
|
void CVehicleFlatbedControlPanel::OnCommand( const char *command )
|
||
|
{
|
||
|
if (!Q_strnicmp(command, "Occupy", 7))
|
||
|
{
|
||
|
GetInRam();
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
BaseClass::OnCommand(command);
|
||
|
}
|
||
|
|