1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-07 09:43:40 +08:00
hl2sdk/game/client/swarm/c_asw_objective_kill_aliens.cpp
2010-07-22 01:46:14 -05:00

131 lines
3.8 KiB
C++

#include "cbase.h"
#include "c_asw_objective_kill_aliens.h"
#include <vgui/ILocalize.h>
#include <vgui_controls/Panel.h>
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
IMPLEMENT_CLIENTCLASS_DT(C_ASW_Objective_Kill_Aliens, DT_ASW_Objective_Kill_Aliens, CASW_Objective_Kill_Aliens)
RecvPropInt (RECVINFO(m_AlienClassNum)),
RecvPropInt (RECVINFO(m_iTargetKills)),
RecvPropInt (RECVINFO(m_iCurrentKills)),
END_RECV_TABLE()
C_ASW_Objective_Kill_Aliens::C_ASW_Objective_Kill_Aliens()
{
m_pKillText = NULL;
m_pAlienPluralText = NULL;
m_pAlienSingularText = NULL;
m_bFoundText = false;
m_dest_buffer[0] = '\0';
m_iKillsLeft = -1;
}
void C_ASW_Objective_Kill_Aliens::OnDataChanged(DataUpdateType_t updateType)
{
if ( updateType == DATA_UPDATE_CREATED )
{
FindText();
}
BaseClass::OnDataChanged(updateType);
}
bool C_ASW_Objective_Kill_Aliens::NeedsTitleUpdate()
{
int iKillsLeft = m_iTargetKills - m_iCurrentKills;
if (iKillsLeft == 0)
iKillsLeft = m_iTargetKills;
return (iKillsLeft != m_iKillsLeft);
}
const wchar_t* C_ASW_Objective_Kill_Aliens::GetObjectiveTitle()
{
if (!m_bFoundText || !m_pKillText || !m_pAlienPluralText || !m_pAlienSingularText)
{
return L"";
}
int iKills = MIN( m_iTargetKills.Get(), m_iCurrentKills.Get() );
if ( iKills != m_iKillsLeft ) // update the string
{
m_iKillsLeft = iKills;
char number_buffer[12];
Q_snprintf(number_buffer, sizeof(number_buffer), "%d", iKills);
wchar_t wnumber_buffer[24];
g_pVGuiLocalize->ConvertANSIToUnicode(number_buffer, wnumber_buffer, sizeof( wnumber_buffer ));
Q_snprintf(number_buffer, sizeof(number_buffer), "%d", m_iTargetKills);
wchar_t wnumber_buffer2[24];
g_pVGuiLocalize->ConvertANSIToUnicode(number_buffer, wnumber_buffer2, sizeof( wnumber_buffer ));
g_pVGuiLocalize->ConstructString( m_dest_buffer, sizeof(m_dest_buffer),
g_pVGuiLocalize->Find("#asw_kill_objective_format"), 4,
m_pKillText, m_pAlienPluralText, wnumber_buffer, wnumber_buffer2 );
}
return m_dest_buffer;
}
void C_ASW_Objective_Kill_Aliens::FindText()
{
m_pKillText = g_pVGuiLocalize->Find("#asw_kill");
m_pAlienPluralText = GetPluralText();
m_pAlienSingularText = GetSingularText();
m_bFoundText = true;
}
wchar_t *C_ASW_Objective_Kill_Aliens::GetPluralText()
{
switch (m_AlienClassNum)
{
case 8: // any drone
case 0:
case 7:
{
return g_pVGuiLocalize->Find("#asw_drones");
}
break;
case 6: return g_pVGuiLocalize->Find("#asw_harvesters"); break;
case 5: return g_pVGuiLocalize->Find("#asw_drone_jumpers"); break;
case 4: return g_pVGuiLocalize->Find("#asw_grubs"); break;
case 3: return g_pVGuiLocalize->Find("#asw_shieldbugs"); break;
case 2: return g_pVGuiLocalize->Find("#asw_parasites"); break;
case 1: return g_pVGuiLocalize->Find("#asw_buzzers"); break;
default: return NULL;
}
return NULL;
}
wchar_t *C_ASW_Objective_Kill_Aliens::GetSingularText()
{
switch (m_AlienClassNum)
{
case 8: // any drone
case 0:
case 7:
{
return g_pVGuiLocalize->Find("#asw_drone");
}
break;
case 6: return g_pVGuiLocalize->Find("#asw_harvester"); break;
case 5: return g_pVGuiLocalize->Find("#asw_drone_jumper"); break;
case 4: return g_pVGuiLocalize->Find("#asw_grub"); break;
case 3: return g_pVGuiLocalize->Find("#asw_shieldbug"); break;
case 2: return g_pVGuiLocalize->Find("#asw_parasite"); break;
case 1: return g_pVGuiLocalize->Find("#asw_buzzer"); break;
default: return NULL;
}
return NULL;
}
float C_ASW_Objective_Kill_Aliens::GetObjectiveProgress()
{
if ( m_iTargetKills <= 0 )
return BaseClass::GetObjectiveProgress();
float flProgress = (float) m_iCurrentKills.Get() / (float) m_iTargetKills.Get();
flProgress = clamp<float>( flProgress, 0.0f, 1.0f );
return flProgress;
}