2016-06-04 15:24:23 +02:00
|
|
|
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
// There are hud.h's coming out of the woodwork so this ensures that we get the right one.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
#include "../cl_dll/hud.h"
|
|
|
|
|
#include "../cl_dll/cl_util.h"
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
#include "../cl_dll/parsemsg.h"
|
|
|
|
|
#include "../cl_dll/hud_servers.h"
|
|
|
|
|
#include "../cl_dll/demo.h"
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
#include "demo_api.h"
|
|
|
|
|
#include "voice_status.h"
|
|
|
|
|
#include "r_efx.h"
|
|
|
|
|
#include "entity_types.h"
|
|
|
|
|
#include "VGUI_ActionSignal.h"
|
|
|
|
|
#include "VGUI_Scheme.h"
|
|
|
|
|
#include "VGUI_TextImage.h"
|
|
|
|
|
#include "vgui_loadtga.h"
|
|
|
|
|
#include "vgui_helpers.h"
|
|
|
|
|
#include "vgui_mousecode.h"
|
|
|
|
|
|
|
|
|
|
using namespace vgui;
|
|
|
|
|
|
|
|
|
|
extern int cam_thirdperson;
|
|
|
|
|
|
|
|
|
|
#define VOICE_MODEL_INTERVAL 0.3
|
|
|
|
|
#define SCOREBOARD_BLINK_FREQUENCY 0.3 // How often to blink the scoreboard icons.
|
|
|
|
|
#define SQUELCHOSCILLATE_PER_SECOND 2.0f
|
|
|
|
|
|
|
|
|
|
extern BitmapTGA *LoadTGA( const char* pImageName );
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------- //
|
|
|
|
|
// The voice manager for the client.
|
|
|
|
|
// ---------------------------------------------------------------------- //
|
|
|
|
|
CVoiceStatus g_VoiceStatus;
|
|
|
|
|
|
|
|
|
|
CVoiceStatus* GetClientVoiceMgr()
|
|
|
|
|
{
|
|
|
|
|
return &g_VoiceStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------- //
|
|
|
|
|
// CVoiceStatus.
|
|
|
|
|
// ---------------------------------------------------------------------- //
|
|
|
|
|
static CVoiceStatus *g_pInternalVoiceStatus = NULL;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
int __MsgFunc_VoiceMask( const char *pszName, int iSize, void *pbuf )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( g_pInternalVoiceStatus )
|
|
|
|
|
g_pInternalVoiceStatus->HandleVoiceMaskMsg( iSize, pbuf );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
int __MsgFunc_ReqState( const char *pszName, int iSize, void *pbuf )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( g_pInternalVoiceStatus )
|
|
|
|
|
g_pInternalVoiceStatus->HandleReqStateMsg( iSize, pbuf );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int g_BannedPlayerPrintCount;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
void ForEachBannedPlayer( char id[16] )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char str[256];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
sprintf( str, "Ban %d: %2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x%2x\n",
|
2016-06-04 15:24:23 +02:00
|
|
|
|
g_BannedPlayerPrintCount++,
|
|
|
|
|
id[0], id[1], id[2], id[3],
|
|
|
|
|
id[4], id[5], id[6], id[7],
|
|
|
|
|
id[8], id[9], id[10], id[11],
|
|
|
|
|
id[12], id[13], id[14], id[15]
|
|
|
|
|
);
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
strupr( str );
|
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
gEngfuncs.pfnConsolePrint(str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ShowBannedCallback()
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( g_pInternalVoiceStatus )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
g_BannedPlayerPrintCount = 0;
|
|
|
|
|
gEngfuncs.pfnConsolePrint("------- BANNED PLAYERS -------\n");
|
2021-10-27 03:35:11 +02:00
|
|
|
|
g_pInternalVoiceStatus->m_BanMgr.ForEachBannedPlayer( ForEachBannedPlayer );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
gEngfuncs.pfnConsolePrint("------------------------------\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------- //
|
|
|
|
|
// CVoiceStatus.
|
|
|
|
|
// ---------------------------------------------------------------------- //
|
|
|
|
|
CVoiceStatus::CVoiceStatus()
|
|
|
|
|
{
|
|
|
|
|
m_bBanMgrInitialized = false;
|
|
|
|
|
m_LastUpdateServerState = 0;
|
|
|
|
|
|
|
|
|
|
m_pSpeakerLabelIcon = NULL;
|
|
|
|
|
m_pScoreboardNeverSpoken = NULL;
|
|
|
|
|
m_pScoreboardNotSpeaking = NULL;
|
|
|
|
|
m_pScoreboardSpeaking = NULL;
|
|
|
|
|
m_pScoreboardSpeaking2 = NULL;
|
|
|
|
|
m_pScoreboardSquelch = NULL;
|
|
|
|
|
m_pScoreboardBanned = NULL;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_pLocalBitmap = NULL;
|
|
|
|
|
m_pAckBitmap = NULL;
|
|
|
|
|
|
|
|
|
|
m_bTalking = m_bServerAcked = false;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
memset( m_pBanButtons, 0, sizeof(m_pBanButtons) );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
m_bServerModEnable = -1;
|
|
|
|
|
|
|
|
|
|
m_pchGameDir = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CVoiceStatus::~CVoiceStatus()
|
|
|
|
|
{
|
|
|
|
|
g_pInternalVoiceStatus = NULL;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
for( int i = 0; i < MAX_VOICE_SPEAKERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
delete m_Labels[i].m_pLabel;
|
|
|
|
|
m_Labels[i].m_pLabel = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_Labels[i].m_pIcon;
|
|
|
|
|
m_Labels[i].m_pIcon = NULL;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
delete m_Labels[i].m_pBackground;
|
|
|
|
|
m_Labels[i].m_pBackground = NULL;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
}
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
delete m_pLocalLabel;
|
|
|
|
|
m_pLocalLabel = NULL;
|
|
|
|
|
|
|
|
|
|
FreeBitmaps();
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pchGameDir )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_bBanMgrInitialized )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_BanMgr.SaveState( m_pchGameDir );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
free( m_pchGameDir );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
int CVoiceStatus::Init( IVoiceStatusHelper *pHelper, Panel **pParentPanel )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
// Setup the voice_modenable cvar.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.pfnRegisterVariable( "voice_modenable", "1", FCVAR_ARCHIVE );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.pfnRegisterVariable( "voice_clientdebug", "0", 0 );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.pfnAddCommand( "voice_showbanned", ShowBannedCallback );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetGameDirectory() )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_BanMgr.Init( gEngfuncs.pfnGetGameDirectory() );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_bBanMgrInitialized = true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
assert( !g_pInternalVoiceStatus );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
g_pInternalVoiceStatus = this;
|
|
|
|
|
|
|
|
|
|
m_BlinkTimer = 0;
|
|
|
|
|
m_VoiceHeadModel = NULL;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
memset( m_Labels, 0, sizeof(m_Labels) );
|
|
|
|
|
|
|
|
|
|
for( int i = 0; i < MAX_VOICE_SPEAKERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
CVoiceLabel *pLabel = &m_Labels[i];
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pLabel->m_pBackground = new Label( "" );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( pLabel->m_pLabel = new Label( "" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
pLabel->m_pLabel->setVisible( true );
|
|
|
|
|
pLabel->m_pLabel->setFont( Scheme::sf_primary2 );
|
|
|
|
|
pLabel->m_pLabel->setTextAlignment( Label::a_east );
|
|
|
|
|
pLabel->m_pLabel->setContentAlignment( Label::a_east );
|
|
|
|
|
pLabel->m_pLabel->setParent( pLabel->m_pBackground );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( pLabel->m_pIcon = new ImagePanel( NULL ) )
|
|
|
|
|
{
|
|
|
|
|
pLabel->m_pIcon->setVisible( true );
|
|
|
|
|
pLabel->m_pIcon->setParent( pLabel->m_pBackground );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pLabel->m_clientindex = -1;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pLocalLabel = new ImagePanel( NULL );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
m_bInSquelchMode = false;
|
|
|
|
|
|
|
|
|
|
m_pHelper = pHelper;
|
|
|
|
|
m_pParentPanel = pParentPanel;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gHUD.AddHudElem( this );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_iFlags = HUD_ACTIVE;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
HOOK_MESSAGE( VoiceMask );
|
|
|
|
|
HOOK_MESSAGE( ReqState );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
// Cache the game directory for use when we shut down
|
|
|
|
|
const char *pchGameDirT = gEngfuncs.pfnGetGameDirectory();
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pchGameDir = (char *)malloc( strlen( pchGameDirT ) + 1 );
|
|
|
|
|
strcpy( m_pchGameDir, pchGameDirT );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int CVoiceStatus::VidInit()
|
|
|
|
|
{
|
|
|
|
|
FreeBitmaps();
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pLocalBitmap = vgui_LoadTGA( "gfx/vgui/icntlk_pl.tga" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pLocalBitmap->setColor( Color( 255, 255, 255, 135 ) );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pAckBitmap = vgui_LoadTGA( "gfx/vgui/icntlk_sv.tga" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pAckBitmap->setColor( Color( 255, 255, 255, 135 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_pLocalLabel->setImage( m_pLocalBitmap );
|
|
|
|
|
m_pLocalLabel->setVisible( false );
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pSpeakerLabelIcon = vgui_LoadTGANoInvertAlpha( "gfx/vgui/speaker4.tga" ) )
|
|
|
|
|
m_pSpeakerLabelIcon->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pScoreboardNeverSpoken = vgui_LoadTGANoInvertAlpha( "gfx/vgui/640_speaker1.tga" ) )
|
|
|
|
|
m_pScoreboardNeverSpoken->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pScoreboardNotSpeaking = vgui_LoadTGANoInvertAlpha( "gfx/vgui/640_speaker2.tga" ) )
|
|
|
|
|
m_pScoreboardNotSpeaking->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pScoreboardSpeaking = vgui_LoadTGANoInvertAlpha( "gfx/vgui/640_speaker3.tga" ) )
|
|
|
|
|
m_pScoreboardSpeaking->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
|
|
|
|
|
|
|
|
|
if( m_pScoreboardSpeaking2 = vgui_LoadTGANoInvertAlpha( "gfx/vgui/640_speaker4.tga" ) )
|
|
|
|
|
m_pScoreboardSpeaking2->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pScoreboardSquelch = vgui_LoadTGA( "gfx/vgui/icntlk_squelch.tga" ) )
|
|
|
|
|
m_pScoreboardSquelch->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
|
|
|
|
|
|
|
|
|
if( m_pScoreboardBanned = vgui_LoadTGA( "gfx/vgui/640_voiceblocked.tga" ) )
|
|
|
|
|
m_pScoreboardBanned->setColor( Color( 255, 255, 255, 1 ) ); // Give just a tiny bit of translucency so software draws correctly.
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
// Figure out the voice head model height.
|
|
|
|
|
m_VoiceHeadModelHeight = 45;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
char *pFile = (char *)gEngfuncs.COM_LoadFile( "scripts/voicemodel.txt", 5, NULL );
|
|
|
|
|
if( pFile )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char token[4096];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
gEngfuncs.COM_ParseFile( pFile, token );
|
|
|
|
|
if( token[0] >= '0' && token[0] <= '9' )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_VoiceHeadModelHeight = (float)atof( token );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.COM_FreeFile( pFile );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_VoiceHeadModel = gEngfuncs.pfnSPR_Load( "sprites/voiceicon.spr" );
|
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::Frame( double frametime )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
// check server banned players once per second
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.GetClientTime() - m_LastUpdateServerState > 1 )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
UpdateServerState( false );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_BlinkTimer += frametime;
|
|
|
|
|
|
|
|
|
|
// Update speaker labels.
|
|
|
|
|
if( m_pHelper->CanShowSpeakerLabels() )
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < MAX_VOICE_SPEAKERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_Labels[i].m_pBackground->setVisible( m_Labels[i].m_clientindex != -1 );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < MAX_VOICE_SPEAKERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_Labels[i].m_pBackground->setVisible( false );
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < VOICE_MAX_PLAYERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
UpdateBanButton(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CVoiceStatus::CreateEntities()
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( !m_VoiceHeadModel )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
cl_entity_t *localPlayer = gEngfuncs.GetLocalPlayer();
|
|
|
|
|
|
|
|
|
|
int iOutModel = 0;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < VOICE_MAX_PLAYERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( !m_VoicePlayers[i] )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
continue;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
cl_entity_s *pClient = gEngfuncs.GetEntityByIndex( i + 1 );
|
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
// Don't show an icon if the player is not in our PVS.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( !pClient || pClient->curstate.messagenum < localPlayer->curstate.messagenum )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// Don't show an icon for dead or spectating players (ie: invisible entities).
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( pClient->curstate.effects & EF_NODRAW )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
// Don't show an icon for the local player unless we're in thirdperson mode.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( pClient == localPlayer && !cam_thirdperson )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
cl_entity_s *pEnt = &m_VoiceHeadModels[iOutModel];
|
|
|
|
|
++iOutModel;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
memset( pEnt, 0, sizeof(*pEnt) );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
pEnt->curstate.rendermode = kRenderTransAdd;
|
|
|
|
|
pEnt->curstate.renderamt = 255;
|
|
|
|
|
pEnt->baseline.renderamt = 255;
|
|
|
|
|
pEnt->curstate.renderfx = kRenderFxNoDissipation;
|
|
|
|
|
pEnt->curstate.framerate = 1;
|
|
|
|
|
pEnt->curstate.frame = 0;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pEnt->model = (struct model_s*)gEngfuncs.GetSpritePointer( m_VoiceHeadModel );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
pEnt->angles[0] = pEnt->angles[1] = pEnt->angles[2] = 0;
|
|
|
|
|
pEnt->curstate.scale = 0.5f;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
pEnt->origin[0] = pEnt->origin[1] = 0;
|
|
|
|
|
pEnt->origin[2] = 45;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
VectorAdd( pEnt->origin, pClient->origin, pEnt->origin );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
// Tell the engine.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.CL_CreateVisibleEntity( ET_NORMAL, pEnt );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::UpdateSpeakerStatus( int entindex, qboolean bTalking )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( !*m_pParentPanel )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat("voice_clientdebug") )
|
|
|
|
|
{
|
|
|
|
|
char msg[256];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
sprintf( msg, "CVoiceStatus::UpdateSpeakerStatus: ent %d talking = %d\n", entindex, bTalking );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
gEngfuncs.pfnConsolePrint( msg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Is it the local player talking?
|
|
|
|
|
if( entindex == -1 )
|
|
|
|
|
{
|
|
|
|
|
m_bTalking = !!bTalking;
|
|
|
|
|
if( bTalking )
|
|
|
|
|
{
|
|
|
|
|
// Enable voice for them automatically if they try to talk.
|
|
|
|
|
gEngfuncs.pfnClientCmd( "voice_modenable 1" );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if( entindex == -2 )
|
|
|
|
|
{
|
|
|
|
|
m_bServerAcked = !!bTalking;
|
|
|
|
|
}
|
2021-10-27 03:35:11 +02:00
|
|
|
|
else if( entindex >= 0 && entindex <= VOICE_MAX_PLAYERS )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
int iClient = entindex - 1;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( iClient < 0 )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
CVoiceLabel *pLabel = FindVoiceLabel( iClient );
|
|
|
|
|
if( bTalking )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
m_VoicePlayers[iClient] = true;
|
|
|
|
|
m_VoiceEnabledPlayers[iClient] = true;
|
|
|
|
|
|
|
|
|
|
// If we don't have a label for this guy yet, then create one.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( !pLabel )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( pLabel = GetFreeVoiceLabel() )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
// Get the name from the engine.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
hud_player_info_t info = {0};
|
|
|
|
|
|
|
|
|
|
GetPlayerInfo( entindex, &info );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
char paddedName[512];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
sprintf( paddedName, "%s ", info.name );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
int color[3];
|
|
|
|
|
m_pHelper->GetPlayerTextColor( entindex, color );
|
|
|
|
|
|
|
|
|
|
if( pLabel->m_pBackground )
|
|
|
|
|
{
|
|
|
|
|
pLabel->m_pBackground->setBgColor( color[0], color[1], color[2], 135 );
|
|
|
|
|
pLabel->m_pBackground->setParent( *m_pParentPanel );
|
|
|
|
|
pLabel->m_pBackground->setVisible( m_pHelper->CanShowSpeakerLabels() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( pLabel->m_pLabel )
|
|
|
|
|
{
|
|
|
|
|
pLabel->m_pLabel->setFgColor( 255, 255, 255, 0 );
|
|
|
|
|
pLabel->m_pLabel->setBgColor( 0, 0, 0, 255 );
|
|
|
|
|
pLabel->m_pLabel->setText( paddedName );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pLabel->m_clientindex = iClient;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m_VoicePlayers[iClient] = false;
|
|
|
|
|
|
|
|
|
|
// If we have a label for this guy, kill it.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( pLabel )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pLabel->m_pBackground->setVisible( false );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
pLabel->m_clientindex = -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RepositionLabels();
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::UpdateServerState( bool bForce )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
// Can't do anything when we're not in a level.
|
|
|
|
|
char const *pLevelName = gEngfuncs.pfnGetLevelName();
|
|
|
|
|
if( pLevelName[0] == 0 )
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
gEngfuncs.pfnConsolePrint( "CVoiceStatus::UpdateServerState: pLevelName[0]==0\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
int bCVarModEnable = !!gEngfuncs.pfnGetCvarFloat( "voice_modenable" );
|
|
|
|
|
if( bForce || m_bServerModEnable != bCVarModEnable )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
m_bServerModEnable = bCVarModEnable;
|
|
|
|
|
|
|
|
|
|
char str[256];
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
sprintf( str, "VModEnable %d", m_bServerModEnable );
|
|
|
|
|
ServerCmd( str );
|
|
|
|
|
|
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char msg[256];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
sprintf( msg, "CVoiceStatus::UpdateServerState: Sending '%s'\n", str );
|
|
|
|
|
gEngfuncs.pfnConsolePrint( msg );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
char str[2048] = "vban";
|
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
bool bChange = false;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( unsigned long dw = 0; dw < VOICE_MAX_PLAYERS_DW; dw++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned long serverBanMask = 0;
|
|
|
|
|
unsigned long banMask = 0;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
for( unsigned long i = 0; i < 32; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char playerID[16];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
if( !gEngfuncs.GetPlayerUniqueID( i + 1, playerID ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
continue;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_BanMgr.GetPlayerBan( playerID ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
banMask |= 1 << i;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_ServerBannedPlayers[dw * 32 + i] )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
serverBanMask |= 1 << i;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( serverBanMask != banMask )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
bChange = true;
|
|
|
|
|
|
|
|
|
|
// Ok, the server needs to be updated.
|
|
|
|
|
char numStr[512];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
sprintf(numStr, " %x", banMask);
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
strcat(str, numStr);
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( bChange || bForce )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char msg[256];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
sprintf( msg, "CVoiceStatus::UpdateServerState: Sending '%s'\n", str );
|
|
|
|
|
|
|
|
|
|
gEngfuncs.pfnConsolePrint( msg );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.pfnServerCmdUnreliable( str ); // Tell the server..
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
gEngfuncs.pfnConsolePrint( "CVoiceStatus::UpdateServerState: no change\n" );
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_LastUpdateServerState = gEngfuncs.GetClientTime();
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::UpdateSpeakerImage( Label *pLabel, int iPlayer )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pBanButtons[iPlayer - 1] = pLabel;
|
|
|
|
|
UpdateBanButton(iPlayer - 1);
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::UpdateBanButton( int iClient )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
Label *pPanel = m_pBanButtons[iClient];
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( !pPanel )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
char playerID[16];
|
|
|
|
|
extern bool HACK_GetPlayerUniqueID( int iPlayer, char playerID[16] );
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
if( !HACK_GetPlayerUniqueID( iClient + 1, playerID ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Figure out if it's blinking or not.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
bool bBlink = fmod( m_BlinkTimer, SCOREBOARD_BLINK_FREQUENCY * 2 ) < SCOREBOARD_BLINK_FREQUENCY;
|
2016-06-04 15:24:23 +02:00
|
|
|
|
bool bTalking = !!m_VoicePlayers[iClient];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
bool bBanned = m_BanMgr.GetPlayerBan( playerID );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
bool bNeverSpoken = !m_VoiceEnabledPlayers[iClient];
|
|
|
|
|
|
|
|
|
|
// Get the appropriate image to display on the panel.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( bBanned )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pPanel->setImage( m_pScoreboardBanned );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
2021-10-27 03:35:11 +02:00
|
|
|
|
else if( bTalking )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( bBlink )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pPanel->setImage( m_pScoreboardSpeaking2 );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pPanel->setImage( m_pScoreboardSpeaking );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
pPanel->setFgColor( 255, 170, 0, 1 );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
2021-10-27 03:35:11 +02:00
|
|
|
|
else if( bNeverSpoken )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pPanel->setImage( m_pScoreboardNeverSpoken );
|
|
|
|
|
pPanel->setFgColor( 100, 100, 100, 1 );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pPanel->setImage( m_pScoreboardNotSpeaking );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::HandleVoiceMaskMsg( int iSize, void *pbuf )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
BEGIN_READ( pbuf, iSize );
|
|
|
|
|
|
|
|
|
|
unsigned long dw;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
for( dw = 0; dw < VOICE_MAX_PLAYERS_DW; dw++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_AudiblePlayers.SetDWord( dw, (unsigned long)READ_LONG() );
|
|
|
|
|
m_ServerBannedPlayers.SetDWord( dw, (unsigned long)READ_LONG() );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char str[256];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.pfnConsolePrint( "CVoiceStatus::HandleVoiceMaskMsg\n" );
|
|
|
|
|
|
|
|
|
|
sprintf( str, " - m_AudiblePlayers[%d] = %lu\n", dw, m_AudiblePlayers.GetDWord( dw ) );
|
|
|
|
|
gEngfuncs.pfnConsolePrint( str );
|
|
|
|
|
|
|
|
|
|
sprintf( str, " - m_ServerBannedPlayers[%d] = %lu\n", dw, m_ServerBannedPlayers.GetDWord( dw ) );
|
|
|
|
|
gEngfuncs.pfnConsolePrint( str );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_bServerModEnable = READ_BYTE();
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::HandleReqStateMsg( int iSize, void *pbuf )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
gEngfuncs.pfnConsolePrint( "CVoiceStatus::HandleReqStateMsg\n" );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
UpdateServerState( true );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CVoiceStatus::StartSquelchMode()
|
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_bInSquelchMode )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_bInSquelchMode = true;
|
|
|
|
|
m_pHelper->UpdateCursorState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CVoiceStatus::StopSquelchMode()
|
|
|
|
|
{
|
|
|
|
|
m_bInSquelchMode = false;
|
|
|
|
|
m_pHelper->UpdateCursorState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CVoiceStatus::IsInSquelchMode()
|
|
|
|
|
{
|
|
|
|
|
return m_bInSquelchMode;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
CVoiceLabel *CVoiceStatus::FindVoiceLabel( int clientindex )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < MAX_VOICE_SPEAKERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_Labels[i].m_clientindex == clientindex )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return &m_Labels[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
CVoiceLabel *CVoiceStatus::GetFreeVoiceLabel()
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
return FindVoiceLabel( -1 );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CVoiceStatus::RepositionLabels()
|
|
|
|
|
{
|
|
|
|
|
// find starting position to draw from, along right-hand side of screen
|
|
|
|
|
int y = ScreenHeight / 2;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
int iconWide = 8, iconTall = 8;
|
|
|
|
|
if( m_pSpeakerLabelIcon )
|
|
|
|
|
{
|
|
|
|
|
m_pSpeakerLabelIcon->getSize( iconWide, iconTall );
|
|
|
|
|
}
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
// Reposition active labels.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < MAX_VOICE_SPEAKERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
CVoiceLabel *pLabel = &m_Labels[i];
|
|
|
|
|
|
|
|
|
|
if( pLabel->m_clientindex == -1 || !pLabel->m_pLabel )
|
|
|
|
|
{
|
|
|
|
|
if( pLabel->m_pBackground )
|
|
|
|
|
pLabel->m_pBackground->setVisible( false );
|
|
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int textWide, textTall;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
pLabel->m_pLabel->getContentSize( textWide, textTall );
|
|
|
|
|
|
|
|
|
|
// Don't let it stretch too far across their screen.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( textWide > ( ScreenWidth * 2 ) / 3 )
|
|
|
|
|
textWide = ( ScreenWidth * 2 ) / 3;
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
// Setup the background label to fit everything in.
|
|
|
|
|
int border = 2;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
int bgWide = textWide + iconWide + border * 3;
|
|
|
|
|
int bgTall = max( textTall, iconTall ) + border * 2;
|
2016-06-04 15:24:23 +02:00
|
|
|
|
pLabel->m_pBackground->setBounds( ScreenWidth - bgWide - 8, y, bgWide, bgTall );
|
|
|
|
|
|
|
|
|
|
// Put the text at the left.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
pLabel->m_pLabel->setBounds( border, ( bgTall - textTall ) / 2, textWide, textTall );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
// Put the icon at the right.
|
|
|
|
|
int iconLeft = border + textWide + border;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
int iconTop = ( bgTall - iconTall ) / 2;
|
2016-06-04 15:24:23 +02:00
|
|
|
|
if( pLabel->m_pIcon )
|
|
|
|
|
{
|
|
|
|
|
pLabel->m_pIcon->setImage( m_pSpeakerLabelIcon );
|
|
|
|
|
pLabel->m_pIcon->setBounds( iconLeft, iconTop, iconWide, iconTall );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
y += bgTall + 2;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pLocalBitmap && m_pAckBitmap && m_pLocalLabel && ( m_bTalking || m_bServerAcked ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pLocalLabel->setParent( *m_pParentPanel );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_pLocalLabel->setVisible( true );
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_bServerAcked && !!gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_pLocalLabel->setImage( m_pAckBitmap );
|
|
|
|
|
else
|
|
|
|
|
m_pLocalLabel->setImage( m_pLocalBitmap );
|
|
|
|
|
|
|
|
|
|
int sizeX, sizeY;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
m_pLocalBitmap->getSize( sizeX, sizeY );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
|
|
|
|
|
int local_xPos = ScreenWidth - sizeX - 10;
|
|
|
|
|
int local_yPos = m_pHelper->GetAckIconHeight() - sizeY;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
2016-06-04 15:24:23 +02:00
|
|
|
|
m_pLocalLabel->setPos( local_xPos, local_yPos );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m_pLocalLabel->setVisible( false );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CVoiceStatus::FreeBitmaps()
|
|
|
|
|
{
|
|
|
|
|
// Delete all the images we have loaded.
|
|
|
|
|
delete m_pLocalBitmap;
|
|
|
|
|
m_pLocalBitmap = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pAckBitmap;
|
|
|
|
|
m_pAckBitmap = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pSpeakerLabelIcon;
|
|
|
|
|
m_pSpeakerLabelIcon = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pScoreboardNeverSpoken;
|
|
|
|
|
m_pScoreboardNeverSpoken = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pScoreboardNotSpeaking;
|
|
|
|
|
m_pScoreboardNotSpeaking = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pScoreboardSpeaking;
|
|
|
|
|
m_pScoreboardSpeaking = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pScoreboardSpeaking2;
|
|
|
|
|
m_pScoreboardSpeaking2 = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pScoreboardSquelch;
|
|
|
|
|
m_pScoreboardSquelch = NULL;
|
|
|
|
|
|
|
|
|
|
delete m_pScoreboardBanned;
|
|
|
|
|
m_pScoreboardBanned = NULL;
|
|
|
|
|
|
|
|
|
|
// Clear references to the images in panels.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
for( int i = 0; i < VOICE_MAX_PLAYERS; i++ )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pBanButtons[i] )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
m_pBanButtons[i]->setImage( NULL );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( m_pLocalLabel )
|
|
|
|
|
m_pLocalLabel->setImage( NULL );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// Purpose: returns true if the target client has been banned
|
|
|
|
|
// Input : playerID -
|
|
|
|
|
// Output : Returns true on success, false on failure.
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2021-10-27 03:35:11 +02:00
|
|
|
|
bool CVoiceStatus::IsPlayerBlocked( int iPlayer )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char playerID[16];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
if( !gEngfuncs.GetPlayerUniqueID( iPlayer, playerID ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return false;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
return m_BanMgr.GetPlayerBan( playerID );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// Purpose: returns true if the player can't hear the other client due to game rules (eg. the other team)
|
|
|
|
|
// Input : playerID -
|
|
|
|
|
// Output : Returns true on success, false on failure.
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2021-10-27 03:35:11 +02:00
|
|
|
|
bool CVoiceStatus::IsPlayerAudible( int iPlayer )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
return !!m_AudiblePlayers[iPlayer - 1];
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
// Purpose: blocks/unblocks the target client from being heard
|
|
|
|
|
// Input : playerID -
|
|
|
|
|
// Output : Returns true on success, false on failure.
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void CVoiceStatus::SetPlayerBlockedState( int iPlayer, bool blocked )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
gEngfuncs.pfnConsolePrint( "CVoiceStatus::SetPlayerBlockedState part 1\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char playerID[16];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
if( !gEngfuncs.GetPlayerUniqueID( iPlayer, playerID ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
gEngfuncs.pfnConsolePrint( "CVoiceStatus::SetPlayerBlockedState part 2\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Squelch or (try to) unsquelch this player.
|
2021-10-27 03:35:11 +02:00
|
|
|
|
if( gEngfuncs.pfnGetCvarFloat( "voice_clientdebug" ) )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
char str[256];
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
sprintf( str, "CVoiceStatus::SetPlayerBlockedState: setting player %d ban to %d\n", iPlayer, !m_BanMgr.GetPlayerBan( playerID ) );
|
|
|
|
|
gEngfuncs.pfnConsolePrint( str );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_BanMgr.SetPlayerBan( playerID, blocked );
|
2021-10-27 03:35:11 +02:00
|
|
|
|
UpdateServerState( false );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|