2017-10-20 02:00:49 +00:00
|
|
|
Class ExtMoviePlayer_HUD extends KFGFxMoviePlayer_HUD;
|
|
|
|
|
|
|
|
function TickHud(float DeltaTime)
|
|
|
|
{
|
|
|
|
local PlayerController PC;
|
|
|
|
|
|
|
|
PC = GetPC();
|
|
|
|
if( PC!=none && PC.PlayerInput!=None )
|
|
|
|
Super.TickHud(DeltaTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
final function ShowKillMessageX(PlayerReplicationInfo PRI1, PlayerReplicationInfo PRI2, optional string VictimStr, optional bool bDeathMessage = false, optional class<Pawn> PawnOther )
|
|
|
|
{
|
|
|
|
local GFxObject DataObject;
|
|
|
|
local bool bHumanDeath;
|
|
|
|
local string KilledName, KillerName, KilledIconpath, KillerIconPath;
|
|
|
|
local string KillerTextColor, KilledTextColor;
|
|
|
|
|
|
|
|
if(KFPC == none)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( KFGXHUDManager != none )
|
|
|
|
{
|
|
|
|
if(PawnOther != none)
|
|
|
|
{
|
|
|
|
if( bDeathMessage )
|
|
|
|
{
|
|
|
|
KillerTextColor = ZEDTeamTextColor;
|
|
|
|
KillerName = class'KFExtendedHUD'.Static.GetNameOf(PawnOther);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
KilledName = class'KFExtendedHUD'.Static.GetNameOf(PawnOther);
|
|
|
|
bHumanDeath = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( (PawnOther==None || !bDeathMessage) && PRI1 != none)
|
|
|
|
{
|
|
|
|
if(PRI1.GetTeamNum() == 255)
|
|
|
|
{
|
|
|
|
KillerTextColor = ZEDTeamTextColor;
|
|
|
|
KillerIconpath = "img://"$class'KFPerk_Monster'.static.GetPerkIconPath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
KillerTextColor = HumanTeamTextColor;
|
|
|
|
if( ExtPlayerReplicationInfo(PRI1)!=None && ExtPlayerReplicationInfo(PRI1).ECurrentPerk!=None )
|
|
|
|
KillerIconpath = ExtPlayerReplicationInfo(PRI1).ECurrentPerk.static.GetPerkIconPath(0);
|
|
|
|
}
|
|
|
|
KillerName = PRI1.PlayerName;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(PRI2 != none)
|
|
|
|
{
|
|
|
|
if(PRI2.GetTeamNum() == class'KFTeamInfo_Human'.default.TeamIndex)
|
|
|
|
{
|
|
|
|
bHumanDeath = true;
|
|
|
|
KilledTextColor = HumanTeamTextColor;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
KilledTextColor = ZEDTeamTextColor;
|
|
|
|
bHumanDeath = false;
|
|
|
|
}
|
|
|
|
KilledName = PRI2.PlayerName;
|
|
|
|
if( ExtPlayerReplicationInfo(PRI2)!=None && ExtPlayerReplicationInfo(PRI2).ECurrentPerk!=None )
|
|
|
|
KilledIconpath = ExtPlayerReplicationInfo(PRI2).ECurrentPerk.static.GetPerkIconPath(0);
|
|
|
|
}
|
|
|
|
else if( VictimStr!="" )
|
|
|
|
{
|
|
|
|
KilledTextColor = HumanTeamTextColor;
|
|
|
|
KilledIconpath = "img://"$class'KFPerk_Monster'.static.GetPerkIconPath();
|
|
|
|
bHumanDeath = false;
|
|
|
|
KilledName = VictimStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataObject = CreateObject("Object");
|
|
|
|
|
|
|
|
DataObject.SetBool("humanDeath", bHumanDeath);
|
|
|
|
|
|
|
|
DataObject.SetString("killedName", KilledName);
|
|
|
|
DataObject.SetString("killedTextColor", KilledTextColor);
|
|
|
|
DataObject.SetString("killedIcon", KilledIconpath);
|
|
|
|
|
|
|
|
DataObject.SetString("killerName", KillerName);
|
|
|
|
DataObject.SetString("killerTextColor", KillerTextColor);
|
|
|
|
DataObject.SetString("killerIcon", KillerIconpath);
|
|
|
|
|
|
|
|
//temp remove when rest of design catches up
|
|
|
|
DataObject.SetString("text", KillerName@KilledName);
|
|
|
|
|
|
|
|
KFGXHUDManager.SetObject("newBark", DataObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultproperties
|
|
|
|
{
|
|
|
|
WidgetBindings.Remove((WidgetName="SpectatorInfoWidget",WidgetClass=class'KFGFxHUD_SpectatorInfo'))
|
|
|
|
WidgetBindings.Add((WidgetName="SpectatorInfoWidget",WidgetClass=class'ExtHUD_SpectatorInfo'))
|
|
|
|
WidgetBindings.Remove((WidgetName="PlayerStatWidgetMC",WidgetClass=class'KFGFxHUD_PlayerStatus'))
|
|
|
|
WidgetBindings.Add((WidgetName="PlayerStatWidgetMC",WidgetClass=class'ExtHUD_PlayerStatus'))
|
|
|
|
WidgetBindings.Remove((WidgetName="PlayerBackpackWidget",WidgetClass=class'KFGFxHUD_PlayerBackpack'))
|
|
|
|
WidgetBindings.Add((WidgetName="PlayerBackpackWidget",WidgetClass=class'ExtHUD_PlayerBackpack'))
|
|
|
|
WidgetBindings.Remove((WidgetName="WaveInfoContainer",WidgetClass=class'KFGFxHUD_WaveInfo'))
|
|
|
|
WidgetBindings.Add((WidgetName="WaveInfoContainer",WidgetClass=class'ExtHUD_WaveInfo'))
|
2020-01-09 11:05:13 +00:00
|
|
|
//WidgetBindings.Remove((WidgetName="bossHealthBar", WidgetClass=class'KFGFxWidget_BossHealthBar'))
|
|
|
|
//WidgetBindings.Add((WidgetName="bossHealthBar", WidgetClass=class'ExtWidget_BossHealthBar'))
|
2017-10-20 07:02:53 +00:00
|
|
|
WidgetBindings.Remove((WidgetName="WeaponSelectContainer",WidgetClass=class'KFGFxHUD_WeaponSelectWidget'))
|
|
|
|
WidgetBindings.Add((WidgetName="WeaponSelectContainer",WidgetClass=class'ExtHUD_WeaponSelectWidget'))
|
2017-10-20 02:00:49 +00:00
|
|
|
}
|