1
0
KF2-Dev-Scripts/KFGame/Classes/KFGFxHUD_PlayerBackpack.uc

253 lines
7.9 KiB
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFGFxInGameHUD_PlayerBackpack
//=============================================================================
// HUD container that stores information about the player's Weapon & Equipment, dosh, etc.
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
// - Alex Quick 5/15/2014
//=============================================================================
class KFGFxHUD_PlayerBackpack extends GFxObject;
/** Cached KFPlayerController */
var KFPlayerController MyKFPC;
// Player's dosh amount as of the last tick
var int LastDosh;
// Number of bullets in the current magazine
var int LastSpareAmmo;
var int LastMagazineAmmo;
var bool bUsesAmmo;
// string used for alternate display in ammo section
var string LastSpecialAmmo;
//
var int LastFlashlightBattery;
//
var int LastGrenades;
var int LastSavedBuild;
var int LastMaxWeight;
var int LastWeight;
// Amount of secondary ammo
var byte LastSecondaryAmmo;
var bool bWasUsingAltFireMode;
var bool bUsesSecondaryAmmo;
var class<KFPerk> LastPerkClass;
var KFWeapon LastWeapon;
var KFInventoryManager MyKFInvManager;
function InitializeHUD()
{
MyKFPC = KFPlayerController(GetPC());
if( MyKFPC.Pawn != none && MyKFPC.Pawn.InvManager != none )
{
MyKFInvManager = KFInventoryManager(MyKFPC.Pawn.InvManager);
}
}
function TickHud(float DeltaTime)
{
UpdateDosh();
UpdateGrenades();
UpdateWeapon();
UpdateFlashlight();
UpdateWeight();
}
function UpdateWeight()
{
if( MyKFPC.Pawn != none && MyKFPC.Pawn.InvManager != none )
{
MyKFInvManager = KFInventoryManager(MyKFPC.Pawn.InvManager);
if(MyKFInvManager != none && (LastMaxWeight != MyKFInvManager.MaxCarryBlocks || LastWeight != MyKFInvManager.CurrentCarryBlocks))
{
SetString("WeightText", MyKFInvManager.CurrentCarryBlocks$"/"$MyKFInvManager.MaxCarryBlocks);
LastMaxWeight = MyKFInvManager.MaxCarryBlocks;
LastWeight = MyKFInvManager.CurrentCarryBlocks;
}
}
}
function UpdateDosh()
{
local int CurrentDosh;
local int DeltaDosh;
if (MyKFPC.PlayerReplicationInfo != none)
{
CurrentDosh = MyKFPC.PlayerReplicationInfo.Score;
// Update the dosh
if (CurrentDosh != LastDosh )
{
DeltaDosh = CurrentDosh - LastDosh;
SetInt("backpackDosh" ,DeltaDosh);
LastDosh = CurrentDosh;
}
}
}
function UpdateGrenades()
{
local int CurrentGrenades;
if(MyKFPC == None)
{
return;
}
if(MyKFInvManager != none)
{
CurrentGrenades = MyKFInvManager.GrenadeCount;
}
//Update the icon the for grenade type.
if(MyKFPC.CurrentPerk != none)
{
if( LastPerkClass != MyKFPC.CurrentPerk.Class ||
LastSavedBuild != MyKFPC.CurrentPerk.GetSavedBuild() )
{
SetString("backpackGrenadeType", "img://" $ MyKFPC.CurrentPerk.GetGrenadeImagePath());
LastPerkClass = MyKFPC.CurrentPerk.Class;
LastSavedBuild = MyKFPC.CurrentPerk.GetSavedBuild();
}
}
// Update the grenades count value
if(CurrentGrenades != LastGrenades)
{
SetInt("backpackGrenades" , CurrentGrenades);
LastGrenades = CurrentGrenades;
}
}
function UpdateWeapon()
{
local int CurrentSpareAmmo;
local int CurrentMagazineAmmo;
local byte CurrentSecondaryAmmo;
local string CurrentSpecialAmmo;
local KFWeapon CurrentWeapon;
if(MyKFPC != none && MyKFPC.Pawn != none && MyKFPC.Pawn.Weapon != none )
{
CurrentWeapon = KFWeapon(MyKFPC.Pawn.Weapon);
if(CurrentWeapon != none)
{
// If we changed weapons
if( LastWeapon == none || LastWeapon != CurrentWeapon )
{
LastWeapon = CurrentWeapon;
RefreshWeapon(CurrentWeapon);
}
else if( bWasUsingAltFireMode != CurrentWeapon.bUseAltFireMode )
{
UpdateFireModeIcon(CurrentWeapon);
}
if (bUsesAmmo)
{
// Update the ammo in the weapon's magazine
CurrentMagazineAmmo = CurrentWeapon.AmmoCount[0];
if ( CurrentMagazineAmmo != LastMagazineAmmo )
{
SetInt("weaponMagazineAmmo" , CurrentMagazineAmmo);
LastMagazineAmmo = CurrentMagazineAmmo;
}
// Update the spare ammo (whatever is not in the magazine)
CurrentSpareAmmo = CurrentWeapon.GetSpareAmmoForHUD();
if ( CurrentSpareAmmo != LastSpareAmmo )
{
SetInt("backpackStoredAmmo" , CurrentSpareAmmo);
LastSpareAmmo = CurrentSpareAmmo;
}
}
else
{
// if the weapon doesn't use ammo, let them display a special string in that section
CurrentSpecialAmmo = CurrentWeapon.GetSpecialAmmoForHUD();
if (CurrentSpecialAmmo != LastSpecialAmmo)
{
SetString("specialAmmoString", CurrentSpecialAmmo);
}
}
// always reset the last special ammo since setting a new string turns the default "---" off
LastSpecialAmmo = CurrentSpecialAmmo;
if (bUsesSecondaryAmmo)
{
CurrentSecondaryAmmo = CurrentWeapon.GetSecondaryAmmoForHUD();
if (CurrentSecondaryAmmo != LastSecondaryAmmo)
{
SetInt("secondaryAmmo" , CurrentSecondaryAmmo);
LastSecondaryAmmo = CurrentSecondaryAmmo;
}
}
}
}
}
function UpdateFireModeIcon( KFWeapon CurrentWeapon )
{
local byte NewFireModeIndex;
NewFireModeIndex = CurrentWeapon.bUseAltFireMode ? CurrentWeapon.ALTFIRE_FIREMODE : CurrentWeapon.DEFAULT_FIREMODE;
// Update Fire Mode Icons
if( Len(CurrentWeapon.FireModeIconPaths[NewFireModeIndex]) > 0)
{
SetString("firemodeIcon", "img://"$CurrentWeapon.FireModeIconPaths[NewFireModeIndex].GetPackageName()$"."$CurrentWeapon.FireModeIconPaths[NewFireModeIndex]);
}
bWasUsingAltFireMode = CurrentWeapon.bUseAltFireMode;
}
function RefreshWeapon(KFWeapon CurrentWeapon)
{
bUsesAmmo = CurrentWeapon.UsesAmmo();
SetBool("bUsesAmmo", bUsesAmmo);
bUsesSecondaryAmmo = CurrentWeapon.UsesSecondaryAmmo();
SetBool("bUsesSecondaryAmmo", bUsesSecondaryAmmo);
if( bUsesSecondaryAmmo )
{
SetString("secondaryIcon", "img://"$CurrentWeapon.SecondaryAmmoTexture.GetPackageName()$"."$CurrentWeapon.SecondaryAmmoTexture);
}
UpdateFireModeIcon(CurrentWeapon);
}
function UpdateFlashlight()
{
local KFPawn_Human MyKFP;
local int CurrentFlashlightBattery;
if(MyKFPC != none && MyKFPC.Pawn != none)
{
MyKFP = KFPawn_Human(MyKFPC.Pawn);
if ( MyKFP != none )
{
CurrentFlashlightBattery = MyKFP.BatteryCharge;
if ( CurrentFlashlightBattery != LastFlashlightBattery )
{
SetFlashlightBattery(CurrentFlashlightBattery, MyKFP.bFlashlightOn);
LastFlashlightBattery = CurrentFlashlightBattery;
}
}
}
}
function SetFlashlightBattery( int BatteryCharge, bool bIsOn )
{
ActionscriptVoid( "setFlashlightBattery" );
}
DefaultProperties
{
LastMaxWeight=-1
LastWeight=-1
}