Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
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.

160 lines
4.1 KiB

9 years ago
/***
*
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
*
* This product contains software technology licensed from Id
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
* All Rights Reserved.
*
* Use, distribution, and modification of this source code and/or resulting
* object code is restricted to non-commercial enhancements to products from
* Valve LLC. All other use, distribution, or modification is prohibited
* without written permission from Valve LLC.
*
****/
//
// ammo_secondary.cpp
//
// implementation of CHudAmmoSecondary class
//
#include "hud.h"
#include "cl_util.h"
#include <string.h>
#include <stdio.h>
#include "parsemsg.h"
DECLARE_MESSAGE( m_AmmoSecondary, SecAmmoVal )
DECLARE_MESSAGE( m_AmmoSecondary, SecAmmoIcon )
9 years ago
9 years ago
int CHudAmmoSecondary::Init( void )
9 years ago
{
HOOK_MESSAGE( SecAmmoVal );
HOOK_MESSAGE( SecAmmoIcon );
gHUD.AddHudElem(this);
m_HUD_ammoicon = 0;
for( int i = 0; i < MAX_SEC_AMMO_VALUES; i++ )
9 years ago
m_iAmmoAmounts[i] = -1; // -1 means don't draw this value
Reset();
return 1;
}
9 years ago
void CHudAmmoSecondary::Reset( void )
9 years ago
{
m_fFade = 0;
}
9 years ago
int CHudAmmoSecondary::VidInit( void )
9 years ago
{
return 1;
}
9 years ago
int CHudAmmoSecondary::Draw( float flTime )
9 years ago
{
if( ( gHUD.m_iHideHUDDisplay & ( HIDEHUD_WEAPONS | HIDEHUD_ALL ) ) )
9 years ago
return 1;
// draw secondary ammo icons above normal ammo readout
int a, x, y, r, g, b, AmmoWidth;
UnpackRGB( r, g, b, RGB_YELLOWISH );
a = (int)Q_max( MIN_ALPHA, m_fFade );
9 years ago
if( m_fFade > 0 )
m_fFade -= ( (float)gHUD.m_flTimeDelta * 20.0f ); // slowly lower alpha to fade out icons
9 years ago
ScaleColors( r, g, b, a );
9 years ago
AmmoWidth = gHUD.GetSpriteRect( gHUD.m_HUD_number_0 ).right - gHUD.GetSpriteRect( gHUD.m_HUD_number_0 ).left;
9 years ago
9 years ago
y = ScreenHeight - ( gHUD.m_iFontHeight * 4 ); // this is one font height higher than the weapon ammo values
9 years ago
x = ScreenWidth - AmmoWidth;
9 years ago
if( m_HUD_ammoicon )
9 years ago
{
// Draw the ammo icon
9 years ago
x -= ( gHUD.GetSpriteRect( m_HUD_ammoicon ).right - gHUD.GetSpriteRect( m_HUD_ammoicon ).left );
y -= ( gHUD.GetSpriteRect( m_HUD_ammoicon ).top - gHUD.GetSpriteRect( m_HUD_ammoicon ).bottom );
9 years ago
9 years ago
SPR_Set( gHUD.GetSprite( m_HUD_ammoicon ), r, g, b );
SPR_DrawAdditive( 0, x, y, &gHUD.GetSpriteRect( m_HUD_ammoicon ) );
9 years ago
}
else
9 years ago
{
// move the cursor by the '0' char instead, since we don't have an icon to work with
9 years ago
x -= AmmoWidth;
9 years ago
y -= ( gHUD.GetSpriteRect( gHUD.m_HUD_number_0 ).top - gHUD.GetSpriteRect( gHUD.m_HUD_number_0 ).bottom );
9 years ago
}
// draw the ammo counts, in reverse order, from right to left
9 years ago
for( int i = MAX_SEC_AMMO_VALUES-1; i >= 0; i-- )
9 years ago
{
9 years ago
if( m_iAmmoAmounts[i] < 0 )
9 years ago
continue; // negative ammo amounts imply that they shouldn't be drawn
// half a char gap between the ammo number and the previous pic
9 years ago
x -= ( AmmoWidth / 2 );
9 years ago
// draw the number, right-aligned
9 years ago
x -= ( gHUD.GetNumWidth( m_iAmmoAmounts[i], DHN_DRAWZERO ) * AmmoWidth );
9 years ago
gHUD.DrawHudNumber( x, y, DHN_DRAWZERO, m_iAmmoAmounts[i], r, g, b );
9 years ago
if( i != 0 )
9 years ago
{
// draw the divider bar
9 years ago
x -= ( AmmoWidth / 2 );
FillRGBA( x, y, ( AmmoWidth/10 ), gHUD.m_iFontHeight, r, g, b, a );
9 years ago
}
}
return 1;
}
// Message handler for Secondary Ammo Value
// accepts one value:
// string: sprite name
9 years ago
int CHudAmmoSecondary::MsgFunc_SecAmmoIcon( const char *pszName, int iSize, void *pbuf )
9 years ago
{
BEGIN_READ( pbuf, iSize );
m_HUD_ammoicon = gHUD.GetSpriteIndex( READ_STRING() );
return 1;
}
// Message handler for Secondary Ammo Icon
// Sets an ammo value
// takes two values:
// byte: ammo index
// byte: ammo value
9 years ago
int CHudAmmoSecondary::MsgFunc_SecAmmoVal( const char *pszName, int iSize, void *pbuf )
9 years ago
{
BEGIN_READ( pbuf, iSize );
int index = READ_BYTE();
9 years ago
if( index < 0 || index >= MAX_SEC_AMMO_VALUES )
9 years ago
return 1;
m_iAmmoAmounts[index] = READ_BYTE();
m_iFlags |= HUD_ACTIVE;
// check to see if there is anything left to draw
int count = 0;
9 years ago
for( int i = 0; i < MAX_SEC_AMMO_VALUES; i++ )
9 years ago
{
count += Q_max( 0, m_iAmmoAmounts[i] );
9 years ago
}
9 years ago
if( count == 0 )
{
// the ammo fields are all empty, so turn off this hud area
9 years ago
m_iFlags &= ~HUD_ACTIVE;
return 1;
}
// make the icons light up
m_fFade = 200.0f;
return 1;
}