more renames

This commit is contained in:
GenZmeY 2021-05-16 06:37:39 +03:00
parent e715f274e2
commit 9dae3489e6
14 changed files with 43 additions and 41 deletions

View File

@ -4,7 +4,7 @@ var KFPlayerController KFPC;
unreliable client function ClientNumberMsg( int Count, vector Pos, class<KFDamageType> Type )
{
ClassicKFHUD(KFPC.MyHUD).AddNumberMsg(Count,Pos,Type);
ScoreboardExtHUD(KFPC.MyHUD).AddNumberMsg(Count,Pos,Type);
}
defaultproperties

View File

@ -11,7 +11,7 @@ var() byte MaxFontScale;
var float DefaultHeight; // Default font text size.
var transient Canvas Canvas;
var transient KF2GUIController Owner;
var transient ClassicKFHUD HUDOwner;
var transient ScoreboardExtHUD HUDOwner;
var Font MainFont, NumberFont, InfiniteFont;
var Color BlurColor, BlurColor2;

View File

@ -2,9 +2,9 @@ class KF1HUD_BossHealthBar extends KFGFxWidget_BossHealthBar;
function TickHud(float DeltaTime)
{
local ClassicKFHUD HUD;
local ScoreboardExtHUD HUD;
HUD = ClassicKFHUD(KFPC.MyHUD);
HUD = ScoreboardExtHUD(KFPC.MyHUD);
if(KFPC.bHideBossHealthBar != bLastHideValue)
{
bLastHideValue = KFPC.bHideBossHealthBar;
@ -18,9 +18,9 @@ function TickHud(float DeltaTime)
function SetEscortPawn(KFPawn_Scripted NewPawn)
{
local ClassicKFHUD HUD;
local ScoreboardExtHUD HUD;
HUD = ClassicKFHUD(KFPC.MyHUD);
HUD = ScoreboardExtHUD(KFPC.MyHUD);
if (NewPawn == none)
return;
@ -37,25 +37,25 @@ function SetBossPawn(KFInterface_MonsterBoss NewBoss)
if(NewBoss == None || KFPC.bHideBossHealthBar)
return;
ClassicKFHUD(KFPC.MyHUD).BossInfoIcon = Texture2D(DynamicLoadObject(NewBoss.GetIconPath(),class'Texture2D'));
ClassicKFHUD(KFPC.MyHUD).BossPawn = NewBoss;
ScoreboardExtHUD(KFPC.MyHUD).BossInfoIcon = Texture2D(DynamicLoadObject(NewBoss.GetIconPath(),class'Texture2D'));
ScoreboardExtHUD(KFPC.MyHUD).BossPawn = NewBoss;
}
function UpdateBossShield(float NewShieldPercect)
{
ClassicKFHUD(KFPC.MyHUD).BossShieldPct = NewShieldPercect;
ScoreboardExtHUD(KFPC.MyHUD).BossShieldPct = NewShieldPercect;
}
function UpdateBossBattlePhase(int BattlePhase)
{
ClassicKFHUD(KFPC.MyHUD).BossBattlePhaseColor = ClassicKFHUD(KFPC.MyHUD).BattlePhaseColors[Max(BattlePhase - 1, 0)];
ScoreboardExtHUD(KFPC.MyHUD).BossBattlePhaseColor = ScoreboardExtHUD(KFPC.MyHUD).BattlePhaseColors[Max(BattlePhase - 1, 0)];
}
function OnNamePlateHidden()
{
local ClassicKFHUD HUD;
local ScoreboardExtHUD HUD;
HUD = ClassicKFHUD(KFPC.MyHUD);
HUD = ScoreboardExtHUD(KFPC.MyHUD);
if(KFPC.bHideBossHealthBar && HUD.ScriptedPawn == none)
return;
@ -66,9 +66,9 @@ function OnNamePlateHidden()
simulated function Deactivate()
{
local ClassicKFHUD HUD;
local ScoreboardExtHUD HUD;
HUD = ClassicKFHUD(KFPC.MyHUD);
HUD = ScoreboardExtHUD(KFPC.MyHUD);
HUD.BossInfoIcon = None;
HUD.BossPawn = None;

View File

@ -1,12 +1,13 @@
class KF1HUD_MusicNotification extends KFGFxWidget_MusicNotification;
class KF1HUD_MusicNotification extends KFGFxWidget_MusicNotification
dependson(ScoreboardExtHUD);
function ShowSongInfo(string SongInfoString)
{
local KFGameEngine KFEngine;
local ClassicKFHUD HUD;
local ScoreboardExtHUD HUD;
local PopupMessage Msg;
HUD = ClassicKFHUD(GetPC().MyHUD);
HUD = ScoreboardExtHUD(GetPC().MyHUD);
KFEngine = KFGameEngine(Class'Engine'.static.GetEngine());
if(KFEngine != none && KFEngine.MusicVolumeMultiplier > 0)

View File

@ -3,7 +3,7 @@ class KF1HUD_PlayerStatus extends KFGFxHUD_PlayerStatus;
function UpdateXP(int XPDelta, int XPPercent, bool bLevelUp, Class<KFPerk> PerkClass)
{
if(!bLevelUp && MyPC.GetPerkLevelFromPerkList(PerkClass) < `MAX_PERK_LEVEL)
ClassicKFHUD(MyPC.MyHUD).NotifyXPEarned(XPDelta,PerkClass.default.PerkIcon,MakeColor(255, 255 * (KFPlayerReplicationInfo(MyPC.PlayerReplicationInfo).GetActivePerkLevel()/`MAX_PERK_LEVEL), 0, 255));
ScoreboardExtHUD(MyPC.MyHUD).NotifyXPEarned(XPDelta,PerkClass.default.PerkIcon,MakeColor(255, 255 * (KFPlayerReplicationInfo(MyPC.PlayerReplicationInfo).GetActivePerkLevel()/`MAX_PERK_LEVEL), 0, 255));
Super.UpdateXP(XPDelta, XPPercent, bLevelUp, PerkClass);
}

View File

@ -2,9 +2,9 @@ class KF1HUD_WeaponSelectWidget extends KFGFxHUD_WeaponSelectWidget;
function SetSelectedWeapon(int GroupIndex, int SelectedIndex)
{
local ClassicKFHUD HUD;
local ScoreboardExtHUD HUD;
HUD = ClassicKFHUD(GetPC().MyHUD);
HUD = ScoreboardExtHUD(GetPC().MyHUD);
if( !HUD.bDisplayInventory )
{
HUD.bDisplayInventory = true;

View File

@ -1,4 +1,5 @@
class KF1_HUDWrapper extends KFGFxMoviePlayer_HUD;
class KF1_HUDWrapper extends KFGFxMoviePlayer_HUD
dependson(ScoreboardExtHUD);
event bool WidgetInitialized(name WidgetName, name WidgetPath, GFxObject Widget)
{
@ -145,7 +146,7 @@ function DisplayPriorityMessage(string InPrimaryMessageString, string InSecondar
break;
}
ClassicKFHUD(KFPC.myHUD).ShowPriorityMessage(PriorityMsg);
ScoreboardExtHUD(KFPC.myHUD).ShowPriorityMessage(PriorityMsg);
}
function string GetExpandedWaveInfo()
@ -205,7 +206,7 @@ function ShowKillMessage(PlayerReplicationInfo PRI1, PlayerReplicationInfo PRI2,
KilledName=PRI2.PlayerName;
}
ClassicKFHUD(KFPC.myHUD).ShowKillMessage(PRI1, PRI2, bHumanDeath, KilledName, KillerName);
ScoreboardExtHUD(KFPC.myHUD).ShowKillMessage(PRI1, PRI2, bHumanDeath, KilledName, KillerName);
}
DefaultProperties

View File

@ -4,7 +4,7 @@ Class KF2GUIController extends Info
var() class<GUIStyleBase> DefaultStyle;
var PlayerController PlayerOwner;
var ClassicKFHUD HUDOwner;
var ScoreboardExtHUD HUDOwner;
var transient KF2GUIInput CustomInput;
var transient PlayerInput BackupInput;
var transient GameViewportClient ClientViewport;
@ -44,7 +44,7 @@ static function KF2GUIController GetGUIController( PlayerController PC )
return None;
}
foreach PC.ChildActors(class'KFClassicHUD.KF2GUIController',G)
foreach PC.ChildActors(class'ScoreboardExt.KF2GUIController',G)
{
if( !G.bIsInvalid )
{
@ -54,7 +54,7 @@ static function KF2GUIController GetGUIController( PlayerController PC )
if( G==None )
{
G = PC.Spawn(class'KFClassicHUD.KF2GUIController',PC);
G = PC.Spawn(class'ScoreboardExt.KF2GUIController',PC);
}
return G;
@ -64,7 +64,7 @@ simulated function PostBeginPlay()
{
PlayerOwner = PlayerController(Owner);
ClientViewport = LocalPlayer(PlayerOwner.Player).ViewportClient;
HUDOwner = ClassicKFHUD(PlayerOwner.myHUD);
HUDOwner = ScoreboardExtHUD(PlayerOwner.myHUD);
CurrentStyle = new (None) DefaultStyle;
CurrentStyle.InitStyle();
@ -232,7 +232,7 @@ simulated function HandleDrawMenu()
{
if( HackConsole==None )
{
HackConsole = new(ClientViewport)class'KFClassicHUD.KFGUIConsoleHack';
HackConsole = new(ClientViewport)class'ScoreboardExt.KFGUIConsoleHack';
HackConsole.OutputObject = Self;
}
if( HackConsole!=ClientViewport.ViewportConsole )
@ -352,7 +352,7 @@ simulated final function SetMenuState( bool bActive )
{
if( CustomInput==None )
{
CustomInput = new (KFPlayerController(PlayerOwner)) class'KFClassicHUD.KF2GUIInput';
CustomInput = new (KFPlayerController(PlayerOwner)) class'ScoreboardExt.KF2GUIInput';
CustomInput.ControllerOwner = Self;
CustomInput.OnReceivedNativeInputKey = ReceivedInputKey;
CustomInput.BaseInput = PlayerOwner.PlayerInput;

View File

@ -3,7 +3,7 @@ Class KFGUI_Base extends Object
abstract;
var KF2GUIController Owner;
var ClassicKFHUD HUDOwner;
var ScoreboardExtHUD HUDOwner;
var KFGUI_Base ParentComponent; // Parent component if any.
var transient Canvas Canvas;

View File

@ -1,5 +1,5 @@
class ClassicKFHUD extends KFGFxHudWrapper
config(ClassicHUD);
class ScoreboardExtHUD extends KFGFxHudWrapper
config(ScoreboardExtMut);
const GFxListenerPriority = 80000;
@ -608,7 +608,7 @@ function PostRender()
if( GUIController==None || GUIController.bIsInvalid )
{
GUIController = Class'KFClassicHUD.KF2GUIController'.Static.GetGUIController(PlayerOwner);
GUIController = Class'ScoreboardExt.KF2GUIController'.Static.GetGUIController(PlayerOwner);
if( GUIController!=None )
{
GUIStyle = GUIController.CurrentStyle;
@ -3725,7 +3725,7 @@ simulated function CheckAndDrawHiddenPlayerIcons( array<PlayerReplicationInfo> V
exec function OpenSettingsMenu()
{
GUIController.OpenMenu(class'KFClassicHUD.UI_MidGameMenu');
GUIController.OpenMenu(class'ScoreboardExt.UI_MidGameMenu');
}
exec function SetShowScores(bool bNewValue)

View File

@ -1,4 +1,4 @@
class ClassicHUD extends KFMutator;
class ScoreboardExtMut extends KFMutator;
var KFPawn LastHitZed;
var int LastHitHP;
@ -16,7 +16,7 @@ var array<RepInfoS> DamageReplicationInfos;
function PostBeginPlay()
{
Super.PostBeginPlay();
WorldInfo.Game.HUDType = class'ClassicKFHUD';
WorldInfo.Game.HUDType = class'ScoreboardExtHUD';
}
function NetDamage(int OriginalDamage, out int Damage, Pawn Injured, Controller InstigatedBy, vector HitLocation, out vector Momentum, class<DamageType> DamageType, Actor DamageCauser)

View File

@ -2,11 +2,11 @@ Class UIP_ColorSettings extends KFGUI_MultiComponent;
var KFGUI_ComponentList SettingsBox;
var KFGUI_ColorSlider MainHudSlider,OutlineSlider,FontSlider,ArmorSlider,HealthSlider;
var ClassicKFHUD HUD;
var ScoreboardExtHUD HUD;
function InitMenu()
{
HUD = ClassicKFHUD(GetPlayer().myHUD);
HUD = ScoreboardExtHUD(GetPlayer().myHUD);
Super.InitMenu();

View File

@ -5,7 +5,7 @@ var KFGUI_TextLable ResetColorLabel,PerkStarsLabel,PerkStarsRowLabel,ControllerT
var KFGUI_EditBox PerkStarsBox, PerkRowsBox;
var KFGUI_ComboBox ControllerBox;
var ClassicKFHUD HUD;
var ScoreboardExtHUD HUD;
var KFPlayerController PC;
function InitMenu()
@ -13,7 +13,7 @@ function InitMenu()
local string S;
PC = KFPlayerController(GetPlayer());
HUD = ClassicKFHUD(PC.myHUD);
HUD = ScoreboardExtHUD(PC.myHUD);
Super.InitMenu();

View File

@ -162,7 +162,7 @@ echo "Map=\"KF-Outpost\"
Game=\"KFGameContent.KFGameInfo_Survival\"
Difficulty=\"0\"
GameLength=\"0\"
Mutators=\"KFClassicHUD.ClassicHUD\"
Mutators=\"ScoreboardExt.ScoreboardExtMut\"
Args=\"\"" > "$MutTestingIni"
}