fix EOLs and remove trailing whitespaces
This commit is contained in:
parent
c724de802b
commit
345e765a0e
@ -1,114 +1,114 @@
|
||||
class BaseVote extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config String PositiveColorHex;
|
||||
var public config String NegativeColorHex;
|
||||
var public config bool bChatNotifications;
|
||||
var public config bool bHudNotifications;
|
||||
var public config float DefferedClearHUD;
|
||||
var public config int VoteTime;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
case 1:
|
||||
default.VoteTime = class'KFVoteCollector'.default.VoteTime;
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (!IsValidHexColor(default.PositiveColorHex, LogLevel))
|
||||
{
|
||||
`Log_Error("PositiveColorHex" @ "(" $ default.PositiveColorHex $ ")" @ "is not valid hex color");
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.EventColor;
|
||||
}
|
||||
|
||||
if (!IsValidHexColor(default.NegativeColorHex, LogLevel))
|
||||
{
|
||||
`Log_Error("NegativeColorHex" @ "(" $ default.NegativeColorHex $ ")" @ "is not valid hex color");
|
||||
default.NegativeColorHex = class'KFLocalMessage'.default.InteractionColor;
|
||||
}
|
||||
|
||||
if (default.DefferedClearHUD < 0)
|
||||
{
|
||||
`Log_Error("DefferedClearHUD" @ "(" $ default.DefferedClearHUD $ ")" @ "must be greater than 0");
|
||||
default.DefferedClearHUD = 0.0f;
|
||||
}
|
||||
|
||||
if (default.VoteTime <= 0 || default.VoteTime > 255)
|
||||
{
|
||||
`Log_Error("VoteTime" @ "(" $ default.VoteTime $ ")" @ "must be in range 1-255");
|
||||
default.VoteTime = class'KFVoteCollector'.default.VoteTime;
|
||||
}
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.bChatNotifications = true;
|
||||
default.bHudNotifications = true;
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.EventColor;
|
||||
default.NegativeColorHex = class'KFLocalMessage'.default.InteractionColor;
|
||||
default.DefferedClearHUD = 1.0f;
|
||||
default.VoteTime = class'KFVoteCollector'.default.VoteTime;
|
||||
}
|
||||
|
||||
protected static function bool IsValidHexColor(String HexColor, E_LogLevel LogLevel)
|
||||
{
|
||||
local byte Index;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (len(HexColor) != 6) return false;
|
||||
|
||||
HexColor = Locs(HexColor);
|
||||
|
||||
for (Index = 0; Index < 6; ++Index)
|
||||
{
|
||||
switch (Mid(HexColor, Index, 1))
|
||||
{
|
||||
case "0": break;
|
||||
case "1": break;
|
||||
case "2": break;
|
||||
case "3": break;
|
||||
case "4": break;
|
||||
case "5": break;
|
||||
case "6": break;
|
||||
case "7": break;
|
||||
case "8": break;
|
||||
case "9": break;
|
||||
case "a": break;
|
||||
case "b": break;
|
||||
case "c": break;
|
||||
case "d": break;
|
||||
case "e": break;
|
||||
case "f": break;
|
||||
default: return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class BaseVote extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config String PositiveColorHex;
|
||||
var public config String NegativeColorHex;
|
||||
var public config bool bChatNotifications;
|
||||
var public config bool bHudNotifications;
|
||||
var public config float DefferedClearHUD;
|
||||
var public config int VoteTime;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
case 1:
|
||||
default.VoteTime = class'KFVoteCollector'.default.VoteTime;
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (!IsValidHexColor(default.PositiveColorHex, LogLevel))
|
||||
{
|
||||
`Log_Error("PositiveColorHex" @ "(" $ default.PositiveColorHex $ ")" @ "is not valid hex color");
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.EventColor;
|
||||
}
|
||||
|
||||
if (!IsValidHexColor(default.NegativeColorHex, LogLevel))
|
||||
{
|
||||
`Log_Error("NegativeColorHex" @ "(" $ default.NegativeColorHex $ ")" @ "is not valid hex color");
|
||||
default.NegativeColorHex = class'KFLocalMessage'.default.InteractionColor;
|
||||
}
|
||||
|
||||
if (default.DefferedClearHUD < 0)
|
||||
{
|
||||
`Log_Error("DefferedClearHUD" @ "(" $ default.DefferedClearHUD $ ")" @ "must be greater than 0");
|
||||
default.DefferedClearHUD = 0.0f;
|
||||
}
|
||||
|
||||
if (default.VoteTime <= 0 || default.VoteTime > 255)
|
||||
{
|
||||
`Log_Error("VoteTime" @ "(" $ default.VoteTime $ ")" @ "must be in range 1-255");
|
||||
default.VoteTime = class'KFVoteCollector'.default.VoteTime;
|
||||
}
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.bChatNotifications = true;
|
||||
default.bHudNotifications = true;
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.EventColor;
|
||||
default.NegativeColorHex = class'KFLocalMessage'.default.InteractionColor;
|
||||
default.DefferedClearHUD = 1.0f;
|
||||
default.VoteTime = class'KFVoteCollector'.default.VoteTime;
|
||||
}
|
||||
|
||||
protected static function bool IsValidHexColor(String HexColor, E_LogLevel LogLevel)
|
||||
{
|
||||
local byte Index;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (len(HexColor) != 6) return false;
|
||||
|
||||
HexColor = Locs(HexColor);
|
||||
|
||||
for (Index = 0; Index < 6; ++Index)
|
||||
{
|
||||
switch (Mid(HexColor, Index, 1))
|
||||
{
|
||||
case "0": break;
|
||||
case "1": break;
|
||||
case "2": break;
|
||||
case "3": break;
|
||||
case "4": break;
|
||||
case "5": break;
|
||||
case "6": break;
|
||||
case "7": break;
|
||||
case "8": break;
|
||||
case "9": break;
|
||||
case "a": break;
|
||||
case "b": break;
|
||||
case "c": break;
|
||||
case "d": break;
|
||||
case "e": break;
|
||||
case "f": break;
|
||||
default: return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,390 +1,390 @@
|
||||
class CVC extends Info
|
||||
dependson(CVC_LocalMessage)
|
||||
config(CVC);
|
||||
|
||||
const LatestVersion = 2;
|
||||
|
||||
const CfgKickProtected = class'KickProtected';
|
||||
const CfgKickVote = class'KickVote';
|
||||
const CfgStartWaveKickProtection = class'StartWaveKickProtection';
|
||||
const CfgSkipTraderVote = class'SkipTraderVote';
|
||||
const CfgPauseVote = class'PauseVote';
|
||||
const CfgMapStat = class'MapStat';
|
||||
const CfgMapVote = class'MapVote';
|
||||
|
||||
var private config int Version;
|
||||
var private config E_LogLevel LogLevel;
|
||||
|
||||
var private KFGameInfo KFGI;
|
||||
var private KFGameInfo_Survival KFGIS;
|
||||
var private KFGameReplicationInfo KFGRI;
|
||||
|
||||
var private Array<UniqueNetId> KickProtectedPlayers;
|
||||
var private Array<CVC_RepInfo> RepInfos;
|
||||
|
||||
public simulated function bool SafeDestroy()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (bPendingDelete || bDeleteMe || Destroy());
|
||||
}
|
||||
|
||||
public event PreBeginPlay()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (WorldInfo.NetMode == NM_Client)
|
||||
{
|
||||
`Log_Fatal("NetMode == NM_Client, Destroy...");
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
|
||||
Super.PreBeginPlay();
|
||||
|
||||
PreInit();
|
||||
}
|
||||
|
||||
public event PostBeginPlay()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (bPendingDelete || bDeleteMe) return;
|
||||
|
||||
Super.PostBeginPlay();
|
||||
|
||||
PostInit();
|
||||
}
|
||||
|
||||
private function PreInit()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (Version == `NO_CONFIG)
|
||||
{
|
||||
LogLevel = LL_Info;
|
||||
SaveConfig();
|
||||
}
|
||||
|
||||
CfgMapStat.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgMapVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgSkipTraderVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgPauseVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgKickVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgKickProtected.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgStartWaveKickProtection.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
`Log_Info("Config created");
|
||||
|
||||
case 1:
|
||||
|
||||
case MaxInt:
|
||||
`Log_Info("Config updated to version"@LatestVersion);
|
||||
break;
|
||||
|
||||
case LatestVersion:
|
||||
`Log_Info("Config is up-to-date");
|
||||
break;
|
||||
|
||||
default:
|
||||
`Log_Warn("The config version is higher than the current version (are you using an old mutator?)");
|
||||
`Log_Warn("Config version is" @ Version @ "but current version is" @ LatestVersion);
|
||||
`Log_Warn("The config version will be changed to" @ LatestVersion);
|
||||
break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
Version = LatestVersion;
|
||||
SaveConfig();
|
||||
}
|
||||
|
||||
if (LogLevel == LL_WrongLevel)
|
||||
{
|
||||
LogLevel = LL_Info;
|
||||
`Log_Warn("Wrong 'LogLevel', return to default value");
|
||||
SaveConfig();
|
||||
}
|
||||
`Log_Base("LogLevel:" @ LogLevel);
|
||||
|
||||
CfgKickVote.static.Load(LogLevel);
|
||||
CfgSkipTraderVote.static.Load(LogLevel);
|
||||
CfgPauseVote.static.Load(LogLevel);
|
||||
CfgMapStat.static.Load(LogLevel);
|
||||
CfgMapVote.static.Load(LogLevel);
|
||||
CfgStartWaveKickProtection.static.Load(LogLevel);
|
||||
|
||||
KickProtectedPlayers = CfgKickProtected.static.Load(LogLevel);
|
||||
}
|
||||
|
||||
private function PostInit()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (WorldInfo == None || WorldInfo.Game == None)
|
||||
{
|
||||
SetTimer(1.0f, false, nameof(PostInit));
|
||||
return;
|
||||
}
|
||||
|
||||
KFGI = KFGameInfo(WorldInfo.Game);
|
||||
if (KFGI == None)
|
||||
{
|
||||
`Log_Fatal("Incompatible gamemode:" @ WorldInfo.Game);
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
|
||||
KFGIS = KFGameInfo_Survival(KFGI);
|
||||
if (KFGIS == None)
|
||||
{
|
||||
`Log_Warn("Unknown gamemode (" $ KFGI $ "), KickProtectionStartWaves disabled");
|
||||
CfgStartWaveKickProtection.default.Waves = 0;
|
||||
}
|
||||
|
||||
if (KFGI.GameReplicationInfo == None)
|
||||
{
|
||||
SetTimer(1.0f, false, nameof(PostInit));
|
||||
return;
|
||||
}
|
||||
|
||||
KFGRI = KFGameReplicationInfo(KFGI.GameReplicationInfo);
|
||||
if (KFGRI == None)
|
||||
{
|
||||
`Log_Fatal("Incompatible Replication info:" @ KFGI.GameReplicationInfo);
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
|
||||
KFGRI.VoteCollectorClass = class'CVC_VoteCollector';
|
||||
KFGRI.VoteCollector = new(KFGRI) KFGRI.VoteCollectorClass;
|
||||
|
||||
if (KFGRI.VoteCollector == None)
|
||||
{
|
||||
`Log_Fatal("Can't replace VoteCollector!");
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
CVC_VoteCollector(KFGRI.VoteCollector).CVC = Self;
|
||||
CVC_VoteCollector(KFGRI.VoteCollector).LogLevel = LogLevel;
|
||||
`Log_Info("VoteCollector replaced");
|
||||
}
|
||||
}
|
||||
|
||||
public function bool PlayerIsKickProtected(PlayerReplicationInfo PRI)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (KickProtectedPlayers.Find('Uid', PRI.UniqueId.Uid) != INDEX_NONE);
|
||||
}
|
||||
|
||||
public function bool PlayerIsStartWaveKickProtected(KFPlayerController KFPC)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (PlayerOnStartWave(KFPC) && PlayerHasRequiredLevel(KFPC));
|
||||
}
|
||||
|
||||
private function bool PlayerOnStartWave(KFPlayerController KFPC)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (KFGIS != None && CfgStartWaveKickProtection.default.Waves != 0)
|
||||
{
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() == KFPC)
|
||||
{
|
||||
return (RepInfo.StartWave + CfgStartWaveKickProtection.default.Waves >= KFGIS.WaveNum);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private function bool PlayerHasRequiredLevel(KFPlayerController KFPC)
|
||||
{
|
||||
local KFPlayerReplicationInfo KFPRI;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
KFPRI = KFPlayerReplicationInfo(KFPC.PlayerReplicationInfo);
|
||||
|
||||
if (KFPRI == None)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return (KFPRI.GetActivePerkLevel() >= CfgStartWaveKickProtection.default.MinLevel);
|
||||
}
|
||||
|
||||
public function bool PlayerCanStartKickVote(KFPlayerController KFPC, KFPlayerController KFPC_Kickee)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (KFPC_Kickee != None)
|
||||
{
|
||||
if (KFPC == KFPC_Kickee)
|
||||
{
|
||||
return false; // kickee cant vote
|
||||
}
|
||||
if (!PlayerHasRequiredLevel(KFPC_Kickee))
|
||||
{
|
||||
return true; // always can vote for players without req level
|
||||
}
|
||||
}
|
||||
|
||||
return !PlayerOnStartWave(KFPC);
|
||||
}
|
||||
|
||||
public function BroadcastChatLocalized(E_CVC_LocalMessageType LMT, optional String HexColor, optional KFPlayerController ExceptKFPC = None, optional String String1, optional String String2)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() != ExceptKFPC)
|
||||
{
|
||||
RepInfo.WriteToChatLocalized(LMT, HexColor, String1, String2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function BroadcastHUDLocalized(E_CVC_LocalMessageType LMT, optional float DisplayTime = 0.0f, optional String String1, optional String String2, optional String String3)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() != None)
|
||||
{
|
||||
RepInfo.WriteToHUDLocalized(LMT, String1, String2, String3, DisplayTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function BroadcastClearMessageHUD(optional float DefferedTime = 0.0f)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() != None)
|
||||
{
|
||||
RepInfo.DefferedClearMessageHUD(DefferedTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function WriteToChatLocalized(KFPlayerController KFPC, E_CVC_LocalMessageType LMT, optional String HexColor, optional String String1, optional String String2)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() == KFPC)
|
||||
{
|
||||
RepInfo.WriteToChatLocalized(LMT, HexColor, String1, String2);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function WriteToHUDLocalized(KFPlayerController KFPC, E_CVC_LocalMessageType LMT, optional float DisplayTime = 0.0f, optional String String1, optional String String2, optional String String3)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() == KFPC)
|
||||
{
|
||||
RepInfo.WriteToHUDLocalized(LMT, String1, String2, String3, DisplayTime);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function NotifyLogin(Controller C)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (!CreateRepInfo(C))
|
||||
{
|
||||
`Log_Error("Can't create RepInfo for:" @ C);
|
||||
}
|
||||
}
|
||||
|
||||
public function NotifyLogout(Controller C)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (!DestroyRepInfo(C))
|
||||
{
|
||||
`Log_Error("Can't destroy RepInfo of:" @ C);
|
||||
}
|
||||
}
|
||||
|
||||
public function bool CreateRepInfo(Controller C)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (C == None) return false;
|
||||
|
||||
RepInfo = Spawn(class'CVC_RepInfo', C);
|
||||
|
||||
if (RepInfo == None) return false;
|
||||
|
||||
RepInfo.CVC = Self;
|
||||
RepInfo.LogLevel = LogLevel;
|
||||
RepInfo.StartWave = ((KFGIS != None) ? KFGIS.WaveNum : 0);
|
||||
|
||||
RepInfos.AddItem(RepInfo);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function bool DestroyRepInfo(Controller C)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (C == None) return false;
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.Owner == C)
|
||||
{
|
||||
RepInfos.RemoveItem(RepInfo);
|
||||
RepInfo.SafeDestroy();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
class CVC extends Info
|
||||
dependson(CVC_LocalMessage)
|
||||
config(CVC);
|
||||
|
||||
const LatestVersion = 2;
|
||||
|
||||
const CfgKickProtected = class'KickProtected';
|
||||
const CfgKickVote = class'KickVote';
|
||||
const CfgStartWaveKickProtection = class'StartWaveKickProtection';
|
||||
const CfgSkipTraderVote = class'SkipTraderVote';
|
||||
const CfgPauseVote = class'PauseVote';
|
||||
const CfgMapStat = class'MapStat';
|
||||
const CfgMapVote = class'MapVote';
|
||||
|
||||
var private config int Version;
|
||||
var private config E_LogLevel LogLevel;
|
||||
|
||||
var private KFGameInfo KFGI;
|
||||
var private KFGameInfo_Survival KFGIS;
|
||||
var private KFGameReplicationInfo KFGRI;
|
||||
|
||||
var private Array<UniqueNetId> KickProtectedPlayers;
|
||||
var private Array<CVC_RepInfo> RepInfos;
|
||||
|
||||
public simulated function bool SafeDestroy()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (bPendingDelete || bDeleteMe || Destroy());
|
||||
}
|
||||
|
||||
public event PreBeginPlay()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (WorldInfo.NetMode == NM_Client)
|
||||
{
|
||||
`Log_Fatal("NetMode == NM_Client, Destroy...");
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
|
||||
Super.PreBeginPlay();
|
||||
|
||||
PreInit();
|
||||
}
|
||||
|
||||
public event PostBeginPlay()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (bPendingDelete || bDeleteMe) return;
|
||||
|
||||
Super.PostBeginPlay();
|
||||
|
||||
PostInit();
|
||||
}
|
||||
|
||||
private function PreInit()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (Version == `NO_CONFIG)
|
||||
{
|
||||
LogLevel = LL_Info;
|
||||
SaveConfig();
|
||||
}
|
||||
|
||||
CfgMapStat.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgMapVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgSkipTraderVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgPauseVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgKickVote.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgKickProtected.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
CfgStartWaveKickProtection.static.InitConfig(Version, LatestVersion, LogLevel);
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
`Log_Info("Config created");
|
||||
|
||||
case 1:
|
||||
|
||||
case MaxInt:
|
||||
`Log_Info("Config updated to version"@LatestVersion);
|
||||
break;
|
||||
|
||||
case LatestVersion:
|
||||
`Log_Info("Config is up-to-date");
|
||||
break;
|
||||
|
||||
default:
|
||||
`Log_Warn("The config version is higher than the current version (are you using an old mutator?)");
|
||||
`Log_Warn("Config version is" @ Version @ "but current version is" @ LatestVersion);
|
||||
`Log_Warn("The config version will be changed to" @ LatestVersion);
|
||||
break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
Version = LatestVersion;
|
||||
SaveConfig();
|
||||
}
|
||||
|
||||
if (LogLevel == LL_WrongLevel)
|
||||
{
|
||||
LogLevel = LL_Info;
|
||||
`Log_Warn("Wrong 'LogLevel', return to default value");
|
||||
SaveConfig();
|
||||
}
|
||||
`Log_Base("LogLevel:" @ LogLevel);
|
||||
|
||||
CfgKickVote.static.Load(LogLevel);
|
||||
CfgSkipTraderVote.static.Load(LogLevel);
|
||||
CfgPauseVote.static.Load(LogLevel);
|
||||
CfgMapStat.static.Load(LogLevel);
|
||||
CfgMapVote.static.Load(LogLevel);
|
||||
CfgStartWaveKickProtection.static.Load(LogLevel);
|
||||
|
||||
KickProtectedPlayers = CfgKickProtected.static.Load(LogLevel);
|
||||
}
|
||||
|
||||
private function PostInit()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (WorldInfo == None || WorldInfo.Game == None)
|
||||
{
|
||||
SetTimer(1.0f, false, nameof(PostInit));
|
||||
return;
|
||||
}
|
||||
|
||||
KFGI = KFGameInfo(WorldInfo.Game);
|
||||
if (KFGI == None)
|
||||
{
|
||||
`Log_Fatal("Incompatible gamemode:" @ WorldInfo.Game);
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
|
||||
KFGIS = KFGameInfo_Survival(KFGI);
|
||||
if (KFGIS == None)
|
||||
{
|
||||
`Log_Warn("Unknown gamemode (" $ KFGI $ "), KickProtectionStartWaves disabled");
|
||||
CfgStartWaveKickProtection.default.Waves = 0;
|
||||
}
|
||||
|
||||
if (KFGI.GameReplicationInfo == None)
|
||||
{
|
||||
SetTimer(1.0f, false, nameof(PostInit));
|
||||
return;
|
||||
}
|
||||
|
||||
KFGRI = KFGameReplicationInfo(KFGI.GameReplicationInfo);
|
||||
if (KFGRI == None)
|
||||
{
|
||||
`Log_Fatal("Incompatible Replication info:" @ KFGI.GameReplicationInfo);
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
|
||||
KFGRI.VoteCollectorClass = class'CVC_VoteCollector';
|
||||
KFGRI.VoteCollector = new(KFGRI) KFGRI.VoteCollectorClass;
|
||||
|
||||
if (KFGRI.VoteCollector == None)
|
||||
{
|
||||
`Log_Fatal("Can't replace VoteCollector!");
|
||||
SafeDestroy();
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
CVC_VoteCollector(KFGRI.VoteCollector).CVC = Self;
|
||||
CVC_VoteCollector(KFGRI.VoteCollector).LogLevel = LogLevel;
|
||||
`Log_Info("VoteCollector replaced");
|
||||
}
|
||||
}
|
||||
|
||||
public function bool PlayerIsKickProtected(PlayerReplicationInfo PRI)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (KickProtectedPlayers.Find('Uid', PRI.UniqueId.Uid) != INDEX_NONE);
|
||||
}
|
||||
|
||||
public function bool PlayerIsStartWaveKickProtected(KFPlayerController KFPC)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (PlayerOnStartWave(KFPC) && PlayerHasRequiredLevel(KFPC));
|
||||
}
|
||||
|
||||
private function bool PlayerOnStartWave(KFPlayerController KFPC)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (KFGIS != None && CfgStartWaveKickProtection.default.Waves != 0)
|
||||
{
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() == KFPC)
|
||||
{
|
||||
return (RepInfo.StartWave + CfgStartWaveKickProtection.default.Waves >= KFGIS.WaveNum);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private function bool PlayerHasRequiredLevel(KFPlayerController KFPC)
|
||||
{
|
||||
local KFPlayerReplicationInfo KFPRI;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
KFPRI = KFPlayerReplicationInfo(KFPC.PlayerReplicationInfo);
|
||||
|
||||
if (KFPRI == None)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return (KFPRI.GetActivePerkLevel() >= CfgStartWaveKickProtection.default.MinLevel);
|
||||
}
|
||||
|
||||
public function bool PlayerCanStartKickVote(KFPlayerController KFPC, KFPlayerController KFPC_Kickee)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (KFPC_Kickee != None)
|
||||
{
|
||||
if (KFPC == KFPC_Kickee)
|
||||
{
|
||||
return false; // kickee cant vote
|
||||
}
|
||||
if (!PlayerHasRequiredLevel(KFPC_Kickee))
|
||||
{
|
||||
return true; // always can vote for players without req level
|
||||
}
|
||||
}
|
||||
|
||||
return !PlayerOnStartWave(KFPC);
|
||||
}
|
||||
|
||||
public function BroadcastChatLocalized(E_CVC_LocalMessageType LMT, optional String HexColor, optional KFPlayerController ExceptKFPC = None, optional String String1, optional String String2)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() != ExceptKFPC)
|
||||
{
|
||||
RepInfo.WriteToChatLocalized(LMT, HexColor, String1, String2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function BroadcastHUDLocalized(E_CVC_LocalMessageType LMT, optional float DisplayTime = 0.0f, optional String String1, optional String String2, optional String String3)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() != None)
|
||||
{
|
||||
RepInfo.WriteToHUDLocalized(LMT, String1, String2, String3, DisplayTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function BroadcastClearMessageHUD(optional float DefferedTime = 0.0f)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() != None)
|
||||
{
|
||||
RepInfo.DefferedClearMessageHUD(DefferedTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function WriteToChatLocalized(KFPlayerController KFPC, E_CVC_LocalMessageType LMT, optional String HexColor, optional String String1, optional String String2)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() == KFPC)
|
||||
{
|
||||
RepInfo.WriteToChatLocalized(LMT, HexColor, String1, String2);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function WriteToHUDLocalized(KFPlayerController KFPC, E_CVC_LocalMessageType LMT, optional float DisplayTime = 0.0f, optional String String1, optional String String2, optional String String3)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.GetKFPC() == KFPC)
|
||||
{
|
||||
RepInfo.WriteToHUDLocalized(LMT, String1, String2, String3, DisplayTime);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function NotifyLogin(Controller C)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (!CreateRepInfo(C))
|
||||
{
|
||||
`Log_Error("Can't create RepInfo for:" @ C);
|
||||
}
|
||||
}
|
||||
|
||||
public function NotifyLogout(Controller C)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (!DestroyRepInfo(C))
|
||||
{
|
||||
`Log_Error("Can't destroy RepInfo of:" @ C);
|
||||
}
|
||||
}
|
||||
|
||||
public function bool CreateRepInfo(Controller C)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (C == None) return false;
|
||||
|
||||
RepInfo = Spawn(class'CVC_RepInfo', C);
|
||||
|
||||
if (RepInfo == None) return false;
|
||||
|
||||
RepInfo.CVC = Self;
|
||||
RepInfo.LogLevel = LogLevel;
|
||||
RepInfo.StartWave = ((KFGIS != None) ? KFGIS.WaveNum : 0);
|
||||
|
||||
RepInfos.AddItem(RepInfo);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function bool DestroyRepInfo(Controller C)
|
||||
{
|
||||
local CVC_RepInfo RepInfo;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (C == None) return false;
|
||||
|
||||
foreach RepInfos(RepInfo)
|
||||
{
|
||||
if (RepInfo.Owner == C)
|
||||
{
|
||||
RepInfos.RemoveItem(RepInfo);
|
||||
RepInfo.SafeDestroy();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
[Flags]
|
||||
AllowDownload=True
|
||||
ClientOptional=False
|
||||
ServerSideOnly=False
|
||||
[Flags]
|
||||
AllowDownload=True
|
||||
ClientOptional=False
|
||||
ServerSideOnly=False
|
||||
|
@ -1,60 +1,60 @@
|
||||
class CVCMut extends KFMutator;
|
||||
|
||||
var private CVC CVC;
|
||||
|
||||
public simulated function bool SafeDestroy()
|
||||
{
|
||||
return (bPendingDelete || bDeleteMe || Destroy());
|
||||
}
|
||||
|
||||
public event PreBeginPlay()
|
||||
{
|
||||
Super.PreBeginPlay();
|
||||
|
||||
if (WorldInfo.NetMode == NM_Client) return;
|
||||
|
||||
foreach WorldInfo.DynamicActors(class'CVC', CVC)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
if (CVC == None)
|
||||
{
|
||||
CVC = WorldInfo.Spawn(class'CVC');
|
||||
}
|
||||
|
||||
if (CVC == None)
|
||||
{
|
||||
`Log_Base("FATAL: Can't Spawn 'CVC'");
|
||||
SafeDestroy();
|
||||
}
|
||||
}
|
||||
|
||||
public function AddMutator(Mutator Mut)
|
||||
{
|
||||
if (Mut == Self) return;
|
||||
|
||||
if (Mut.Class == Class)
|
||||
Mut.Destroy();
|
||||
else
|
||||
Super.AddMutator(Mut);
|
||||
}
|
||||
|
||||
public function NotifyLogin(Controller C)
|
||||
{
|
||||
Super.NotifyLogin(C);
|
||||
|
||||
CVC.NotifyLogin(C);
|
||||
}
|
||||
|
||||
public function NotifyLogout(Controller C)
|
||||
{
|
||||
Super.NotifyLogout(C);
|
||||
|
||||
CVC.NotifyLogout(C);
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
class CVCMut extends KFMutator;
|
||||
|
||||
var private CVC CVC;
|
||||
|
||||
public simulated function bool SafeDestroy()
|
||||
{
|
||||
return (bPendingDelete || bDeleteMe || Destroy());
|
||||
}
|
||||
|
||||
public event PreBeginPlay()
|
||||
{
|
||||
Super.PreBeginPlay();
|
||||
|
||||
if (WorldInfo.NetMode == NM_Client) return;
|
||||
|
||||
foreach WorldInfo.DynamicActors(class'CVC', CVC)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
if (CVC == None)
|
||||
{
|
||||
CVC = WorldInfo.Spawn(class'CVC');
|
||||
}
|
||||
|
||||
if (CVC == None)
|
||||
{
|
||||
`Log_Base("FATAL: Can't Spawn 'CVC'");
|
||||
SafeDestroy();
|
||||
}
|
||||
}
|
||||
|
||||
public function AddMutator(Mutator Mut)
|
||||
{
|
||||
if (Mut == Self) return;
|
||||
|
||||
if (Mut.Class == Class)
|
||||
Mut.Destroy();
|
||||
else
|
||||
Super.AddMutator(Mut);
|
||||
}
|
||||
|
||||
public function NotifyLogin(Controller C)
|
||||
{
|
||||
Super.NotifyLogin(C);
|
||||
|
||||
CVC.NotifyLogin(C);
|
||||
}
|
||||
|
||||
public function NotifyLogout(Controller C)
|
||||
{
|
||||
Super.NotifyLogout(C);
|
||||
|
||||
CVC.NotifyLogout(C);
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
@ -1,145 +1,145 @@
|
||||
class CVC_LocalMessage extends Object
|
||||
abstract;
|
||||
|
||||
var const String PlayerIsKickProtectedDefault;
|
||||
var private localized String PlayerIsKickProtected;
|
||||
|
||||
var const String PlayerIsStartWaveKickProtectedDefault;
|
||||
var private localized String PlayerIsStartWaveKickProtected;
|
||||
|
||||
var const String PlayerCantStartKickVoteDefault;
|
||||
var private localized String PlayerCantStartKickVote;
|
||||
|
||||
var const String KickVoteNotEnoughPlayersDefault;
|
||||
var private localized String KickVoteNotEnoughPlayers;
|
||||
|
||||
var const String KickVoteStartedDefault;
|
||||
var private localized String KickVoteStarted;
|
||||
|
||||
var const String KickVoteStartedForPlayerDefault;
|
||||
var private localized String KickVoteStartedForPlayer;
|
||||
|
||||
var const String KickVoteNotStartedForPlayerDefault;
|
||||
var private localized String KickVoteNotStartedForPlayer;
|
||||
|
||||
var const String VotedPlayersDefault;
|
||||
var private localized String VotedPlayers;
|
||||
|
||||
var const String DidntVotePlayersDefault;
|
||||
var private localized String DidntVotePlayers;
|
||||
|
||||
enum E_CVC_LocalMessageType
|
||||
{
|
||||
CVC_PlayerIsKickProtected,
|
||||
CVC_PlayerIsStartWaveKickProtected,
|
||||
CVC_PlayerCantStartKickVote,
|
||||
|
||||
CVC_KickVoteNotEnoughPlayers,
|
||||
CVC_KickVoteStarted,
|
||||
CVC_KickVoteStartedForPlayer,
|
||||
CVC_KickVoteNotStartedForPlayer,
|
||||
|
||||
CVC_KickVoteYesReceived,
|
||||
CVC_KickVoteNoReceived,
|
||||
CVC_KickVoteStartedHUD,
|
||||
CVC_KickVoteReceivedHUD,
|
||||
|
||||
CVC_SkipVoteYesReceived,
|
||||
CVC_SkipVoteNoReceived,
|
||||
|
||||
CVC_PauseVoteYesReceived,
|
||||
CVC_PauseVoteNoReceived,
|
||||
|
||||
CVC_VoteProgressHUD,
|
||||
};
|
||||
|
||||
private static function String ReplKicker(String Str, String Kicker)
|
||||
{
|
||||
return Repl(Str, "<kicker>", Kicker, false);
|
||||
}
|
||||
|
||||
private static function String ReplKickee(String Str, String Kickee)
|
||||
{
|
||||
return Repl(Str, "<kickee>", Kickee, false);
|
||||
}
|
||||
|
||||
private static function String ReplWaves(String Str, String Waves)
|
||||
{
|
||||
return Repl(Str, "<waves>", Waves, false);
|
||||
}
|
||||
|
||||
public static function String GetLocalizedString(
|
||||
E_LogLevel LogLevel,
|
||||
E_CVC_LocalMessageType LMT,
|
||||
optional String String1,
|
||||
optional String String2,
|
||||
optional String String3)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (LMT)
|
||||
{
|
||||
case CVC_PlayerIsKickProtected:
|
||||
return ReplKickee(default.PlayerIsKickProtected != "" ? default.PlayerIsKickProtected : default.PlayerIsKickProtectedDefault, String1);
|
||||
|
||||
case CVC_PlayerIsStartWaveKickProtected:
|
||||
return ReplWaves(ReplKickee(default.PlayerIsStartWaveKickProtected != "" ? default.PlayerIsStartWaveKickProtected : default.PlayerIsStartWaveKickProtectedDefault, String1), String2);
|
||||
|
||||
case CVC_PlayerCantStartKickVote:
|
||||
return ReplWaves(default.PlayerCantStartKickVote != "" ? default.PlayerCantStartKickVote : default.PlayerCantStartKickVoteDefault, String1);
|
||||
|
||||
case CVC_KickVoteNotEnoughPlayers:
|
||||
return ReplWaves(default.KickVoteNotEnoughPlayers != "" ? default.KickVoteNotEnoughPlayers : default.KickVoteNotEnoughPlayersDefault, String1);
|
||||
|
||||
case CVC_KickVoteYesReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.YesString);
|
||||
|
||||
case CVC_KickVoteNoReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.NoString);
|
||||
|
||||
case CVC_KickVoteStartedHUD:
|
||||
return ReplKickee(ReplKicker((default.KickVoteStarted != "" ? default.KickVoteStarted : default.KickVoteStartedDefault), String1), String2) $ "\n" $ class'KFCommon_LocalizedStrings'.default.YesString $ ":" @ String3;
|
||||
|
||||
case CVC_KickVoteReceivedHUD:
|
||||
return class'KFCommon_LocalizedStrings'.default.YesString $ ":" @ String1 $ "\n" $ class'KFCommon_LocalizedStrings'.default.NoString $ ":" @ String2;
|
||||
|
||||
case CVC_KickVoteStarted:
|
||||
return ReplKickee(ReplKicker((default.KickVoteStarted != "" ? default.KickVoteStarted : default.KickVoteStartedDefault), String1), String2);
|
||||
|
||||
case CVC_KickVoteStartedForPlayer:
|
||||
return ReplKicker((default.KickVoteStartedForPlayer != "" ? default.KickVoteStartedForPlayer : default.KickVoteStartedForPlayerDefault), String1);
|
||||
|
||||
case CVC_KickVoteNotStartedForPlayer:
|
||||
return ReplKicker((default.KickVoteNotStartedForPlayer != "" ? default.KickVoteNotStartedForPlayer : default.KickVoteNotStartedForPlayerDefault), String1);
|
||||
|
||||
case CVC_SkipVoteYesReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.YesString);
|
||||
|
||||
case CVC_SkipVoteNoReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.NoString);
|
||||
|
||||
case CVC_PauseVoteYesReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.YesString);
|
||||
|
||||
case CVC_PauseVoteNoReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.NoString);
|
||||
|
||||
case CVC_VoteProgressHUD:
|
||||
return (default.DidntVotePlayers != "" ? default.DidntVotePlayers : default.DidntVotePlayersDefault) @ String2 $ (String1 != "" ? ("\n" $ (default.VotedPlayers != "" ? default.VotedPlayers : default.VotedPlayersDefault) @ String1) : "");
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
PlayerIsKickProtectedDefault = "<kickee> is protected from kick"
|
||||
PlayerIsStartWaveKickProtectedDefault = "You can't kick <kickee> right now. He can be kicked when he plays at least <waves> wave(s)"
|
||||
PlayerCantStartKickVoteDefault = "You can't start kick vote now. You can start kick vote when you play at least <waves> wave(s)"
|
||||
KickVoteNotEnoughPlayersDefault = "Not enough players to start vote (only players who have played at least <waves> wave(s) can vote)"
|
||||
KickVoteStartedDefault = "<kicker> has started a vote to kick <kickee>"
|
||||
KickVoteStartedForPlayerDefault = "<kicker> started voting to kick you"
|
||||
KickVoteNotStartedForPlayerDefault = "<kicker> tried to kick you"
|
||||
VotedPlayersDefault = "Voted:"
|
||||
DidntVotePlayersDefault = "Didn't vote:"
|
||||
class CVC_LocalMessage extends Object
|
||||
abstract;
|
||||
|
||||
var const String PlayerIsKickProtectedDefault;
|
||||
var private localized String PlayerIsKickProtected;
|
||||
|
||||
var const String PlayerIsStartWaveKickProtectedDefault;
|
||||
var private localized String PlayerIsStartWaveKickProtected;
|
||||
|
||||
var const String PlayerCantStartKickVoteDefault;
|
||||
var private localized String PlayerCantStartKickVote;
|
||||
|
||||
var const String KickVoteNotEnoughPlayersDefault;
|
||||
var private localized String KickVoteNotEnoughPlayers;
|
||||
|
||||
var const String KickVoteStartedDefault;
|
||||
var private localized String KickVoteStarted;
|
||||
|
||||
var const String KickVoteStartedForPlayerDefault;
|
||||
var private localized String KickVoteStartedForPlayer;
|
||||
|
||||
var const String KickVoteNotStartedForPlayerDefault;
|
||||
var private localized String KickVoteNotStartedForPlayer;
|
||||
|
||||
var const String VotedPlayersDefault;
|
||||
var private localized String VotedPlayers;
|
||||
|
||||
var const String DidntVotePlayersDefault;
|
||||
var private localized String DidntVotePlayers;
|
||||
|
||||
enum E_CVC_LocalMessageType
|
||||
{
|
||||
CVC_PlayerIsKickProtected,
|
||||
CVC_PlayerIsStartWaveKickProtected,
|
||||
CVC_PlayerCantStartKickVote,
|
||||
|
||||
CVC_KickVoteNotEnoughPlayers,
|
||||
CVC_KickVoteStarted,
|
||||
CVC_KickVoteStartedForPlayer,
|
||||
CVC_KickVoteNotStartedForPlayer,
|
||||
|
||||
CVC_KickVoteYesReceived,
|
||||
CVC_KickVoteNoReceived,
|
||||
CVC_KickVoteStartedHUD,
|
||||
CVC_KickVoteReceivedHUD,
|
||||
|
||||
CVC_SkipVoteYesReceived,
|
||||
CVC_SkipVoteNoReceived,
|
||||
|
||||
CVC_PauseVoteYesReceived,
|
||||
CVC_PauseVoteNoReceived,
|
||||
|
||||
CVC_VoteProgressHUD,
|
||||
};
|
||||
|
||||
private static function String ReplKicker(String Str, String Kicker)
|
||||
{
|
||||
return Repl(Str, "<kicker>", Kicker, false);
|
||||
}
|
||||
|
||||
private static function String ReplKickee(String Str, String Kickee)
|
||||
{
|
||||
return Repl(Str, "<kickee>", Kickee, false);
|
||||
}
|
||||
|
||||
private static function String ReplWaves(String Str, String Waves)
|
||||
{
|
||||
return Repl(Str, "<waves>", Waves, false);
|
||||
}
|
||||
|
||||
public static function String GetLocalizedString(
|
||||
E_LogLevel LogLevel,
|
||||
E_CVC_LocalMessageType LMT,
|
||||
optional String String1,
|
||||
optional String String2,
|
||||
optional String String3)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (LMT)
|
||||
{
|
||||
case CVC_PlayerIsKickProtected:
|
||||
return ReplKickee(default.PlayerIsKickProtected != "" ? default.PlayerIsKickProtected : default.PlayerIsKickProtectedDefault, String1);
|
||||
|
||||
case CVC_PlayerIsStartWaveKickProtected:
|
||||
return ReplWaves(ReplKickee(default.PlayerIsStartWaveKickProtected != "" ? default.PlayerIsStartWaveKickProtected : default.PlayerIsStartWaveKickProtectedDefault, String1), String2);
|
||||
|
||||
case CVC_PlayerCantStartKickVote:
|
||||
return ReplWaves(default.PlayerCantStartKickVote != "" ? default.PlayerCantStartKickVote : default.PlayerCantStartKickVoteDefault, String1);
|
||||
|
||||
case CVC_KickVoteNotEnoughPlayers:
|
||||
return ReplWaves(default.KickVoteNotEnoughPlayers != "" ? default.KickVoteNotEnoughPlayers : default.KickVoteNotEnoughPlayersDefault, String1);
|
||||
|
||||
case CVC_KickVoteYesReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.YesString);
|
||||
|
||||
case CVC_KickVoteNoReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.NoString);
|
||||
|
||||
case CVC_KickVoteStartedHUD:
|
||||
return ReplKickee(ReplKicker((default.KickVoteStarted != "" ? default.KickVoteStarted : default.KickVoteStartedDefault), String1), String2) $ "\n" $ class'KFCommon_LocalizedStrings'.default.YesString $ ":" @ String3;
|
||||
|
||||
case CVC_KickVoteReceivedHUD:
|
||||
return class'KFCommon_LocalizedStrings'.default.YesString $ ":" @ String1 $ "\n" $ class'KFCommon_LocalizedStrings'.default.NoString $ ":" @ String2;
|
||||
|
||||
case CVC_KickVoteStarted:
|
||||
return ReplKickee(ReplKicker((default.KickVoteStarted != "" ? default.KickVoteStarted : default.KickVoteStartedDefault), String1), String2);
|
||||
|
||||
case CVC_KickVoteStartedForPlayer:
|
||||
return ReplKicker((default.KickVoteStartedForPlayer != "" ? default.KickVoteStartedForPlayer : default.KickVoteStartedForPlayerDefault), String1);
|
||||
|
||||
case CVC_KickVoteNotStartedForPlayer:
|
||||
return ReplKicker((default.KickVoteNotStartedForPlayer != "" ? default.KickVoteNotStartedForPlayer : default.KickVoteNotStartedForPlayerDefault), String1);
|
||||
|
||||
case CVC_SkipVoteYesReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.YesString);
|
||||
|
||||
case CVC_SkipVoteNoReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.NoString);
|
||||
|
||||
case CVC_PauseVoteYesReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.YesString);
|
||||
|
||||
case CVC_PauseVoteNoReceived:
|
||||
return (String1 $ ":" @ class'KFCommon_LocalizedStrings'.default.NoString);
|
||||
|
||||
case CVC_VoteProgressHUD:
|
||||
return (default.DidntVotePlayers != "" ? default.DidntVotePlayers : default.DidntVotePlayersDefault) @ String2 $ (String1 != "" ? ("\n" $ (default.VotedPlayers != "" ? default.VotedPlayers : default.VotedPlayersDefault) @ String1) : "");
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
PlayerIsKickProtectedDefault = "<kickee> is protected from kick"
|
||||
PlayerIsStartWaveKickProtectedDefault = "You can't kick <kickee> right now. He can be kicked when he plays at least <waves> wave(s)"
|
||||
PlayerCantStartKickVoteDefault = "You can't start kick vote now. You can start kick vote when you play at least <waves> wave(s)"
|
||||
KickVoteNotEnoughPlayersDefault = "Not enough players to start vote (only players who have played at least <waves> wave(s) can vote)"
|
||||
KickVoteStartedDefault = "<kicker> has started a vote to kick <kickee>"
|
||||
KickVoteStartedForPlayerDefault = "<kicker> started voting to kick you"
|
||||
KickVoteNotStartedForPlayerDefault = "<kicker> tried to kick you"
|
||||
VotedPlayersDefault = "Voted:"
|
||||
DidntVotePlayersDefault = "Didn't vote:"
|
||||
}
|
@ -1,123 +1,123 @@
|
||||
class CVC_RepInfo extends ReplicationInfo;
|
||||
|
||||
const CVCLMT = class'CVC_LocalMessage';
|
||||
|
||||
var public E_LogLevel LogLevel;
|
||||
var public CVC CVC;
|
||||
var public int StartWave;
|
||||
|
||||
var private KFPlayerController KFPC;
|
||||
|
||||
replication
|
||||
{
|
||||
if (bNetInitial && Role == ROLE_Authority)
|
||||
LogLevel;
|
||||
}
|
||||
|
||||
public simulated function bool SafeDestroy()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (bPendingDelete || bDeleteMe || Destroy());
|
||||
}
|
||||
|
||||
public reliable client function WriteToChatLocalized(E_CVC_LocalMessageType LMT, optional String HexColor, optional String String1, optional String String2, optional String String3)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
WriteToChat(CVCLMT.static.GetLocalizedString(LogLevel, LMT, String1, String2, String3), HexColor);
|
||||
}
|
||||
|
||||
public reliable client function WriteToChat(String Message, optional String HexColor)
|
||||
{
|
||||
local KFGFxHudWrapper HUD;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (GetKFPC() == None) return;
|
||||
|
||||
if (KFPC.MyGFxManager.PartyWidget != None && KFPC.MyGFxManager.PartyWidget.PartyChatWidget != None)
|
||||
{
|
||||
KFPC.MyGFxManager.PartyWidget.PartyChatWidget.AddChatMessage(Message, HexColor);
|
||||
}
|
||||
|
||||
HUD = KFGFxHudWrapper(KFPC.myHUD);
|
||||
if (HUD != None && HUD.HUDMovie != None && HUD.HUDMovie.HudChatBox != None)
|
||||
{
|
||||
HUD.HUDMovie.HudChatBox.AddChatMessage(Message, HexColor);
|
||||
}
|
||||
}
|
||||
|
||||
public reliable client function WriteToHUDLocalized(E_CVC_LocalMessageType LMT, optional String String1, optional String String2, optional String String3, optional float DisplayTime = 0.0f)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
WriteToHUD(CVCLMT.static.GetLocalizedString(LogLevel, LMT, String1, String2, String3), DisplayTime);
|
||||
}
|
||||
|
||||
public reliable client function WriteToHUD(String Message, optional float DisplayTime = 0.0f)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (GetKFPC() == None) return;
|
||||
|
||||
if (DisplayTime == 0.0f)
|
||||
{
|
||||
DisplayTime = CalcDisplayTime(Message);
|
||||
}
|
||||
|
||||
if (KFPC.MyGFxHUD != None)
|
||||
{
|
||||
KFPC.MyGFxHUD.DisplayMapText(Message, DisplayTime, false);
|
||||
}
|
||||
}
|
||||
|
||||
public reliable client function DefferedClearMessageHUD(optional float Time = 0.0f)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
SetTimer(Time, false, nameof(ClearMessageHUD));
|
||||
}
|
||||
|
||||
public reliable client function ClearMessageHUD()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (GetKFPC() == None) return;
|
||||
|
||||
if (KFPC.MyGFxHUD != None && KFPC.MyGFxHUD.MapTextWidget != None)
|
||||
{
|
||||
KFPC.MyGFxHUD.MapTextWidget.StoredMessageList.Length = 0;
|
||||
KFPC.MyGFxHUD.MapTextWidget.HideMessage();
|
||||
}
|
||||
}
|
||||
|
||||
private function float CalcDisplayTime(String Message)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return FClamp(Len(Message) / 20.0f, 3, 30);
|
||||
}
|
||||
|
||||
public simulated function KFPlayerController GetKFPC()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (KFPC != None) return KFPC;
|
||||
|
||||
KFPC = KFPlayerController(Owner);
|
||||
|
||||
if (KFPC == None && ROLE < ROLE_Authority)
|
||||
{
|
||||
KFPC = KFPlayerController(GetALocalPlayerController());
|
||||
}
|
||||
|
||||
return KFPC;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
bAlwaysRelevant = false
|
||||
bOnlyRelevantToOwner = true
|
||||
bSkipActorPropertyReplication = false
|
||||
}
|
||||
class CVC_RepInfo extends ReplicationInfo;
|
||||
|
||||
const CVCLMT = class'CVC_LocalMessage';
|
||||
|
||||
var public E_LogLevel LogLevel;
|
||||
var public CVC CVC;
|
||||
var public int StartWave;
|
||||
|
||||
var private KFPlayerController KFPC;
|
||||
|
||||
replication
|
||||
{
|
||||
if (bNetInitial && Role == ROLE_Authority)
|
||||
LogLevel;
|
||||
}
|
||||
|
||||
public simulated function bool SafeDestroy()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return (bPendingDelete || bDeleteMe || Destroy());
|
||||
}
|
||||
|
||||
public reliable client function WriteToChatLocalized(E_CVC_LocalMessageType LMT, optional String HexColor, optional String String1, optional String String2, optional String String3)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
WriteToChat(CVCLMT.static.GetLocalizedString(LogLevel, LMT, String1, String2, String3), HexColor);
|
||||
}
|
||||
|
||||
public reliable client function WriteToChat(String Message, optional String HexColor)
|
||||
{
|
||||
local KFGFxHudWrapper HUD;
|
||||
|
||||
`Log_Trace();
|
||||
|
||||
if (GetKFPC() == None) return;
|
||||
|
||||
if (KFPC.MyGFxManager.PartyWidget != None && KFPC.MyGFxManager.PartyWidget.PartyChatWidget != None)
|
||||
{
|
||||
KFPC.MyGFxManager.PartyWidget.PartyChatWidget.AddChatMessage(Message, HexColor);
|
||||
}
|
||||
|
||||
HUD = KFGFxHudWrapper(KFPC.myHUD);
|
||||
if (HUD != None && HUD.HUDMovie != None && HUD.HUDMovie.HudChatBox != None)
|
||||
{
|
||||
HUD.HUDMovie.HudChatBox.AddChatMessage(Message, HexColor);
|
||||
}
|
||||
}
|
||||
|
||||
public reliable client function WriteToHUDLocalized(E_CVC_LocalMessageType LMT, optional String String1, optional String String2, optional String String3, optional float DisplayTime = 0.0f)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
WriteToHUD(CVCLMT.static.GetLocalizedString(LogLevel, LMT, String1, String2, String3), DisplayTime);
|
||||
}
|
||||
|
||||
public reliable client function WriteToHUD(String Message, optional float DisplayTime = 0.0f)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (GetKFPC() == None) return;
|
||||
|
||||
if (DisplayTime == 0.0f)
|
||||
{
|
||||
DisplayTime = CalcDisplayTime(Message);
|
||||
}
|
||||
|
||||
if (KFPC.MyGFxHUD != None)
|
||||
{
|
||||
KFPC.MyGFxHUD.DisplayMapText(Message, DisplayTime, false);
|
||||
}
|
||||
}
|
||||
|
||||
public reliable client function DefferedClearMessageHUD(optional float Time = 0.0f)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
SetTimer(Time, false, nameof(ClearMessageHUD));
|
||||
}
|
||||
|
||||
public reliable client function ClearMessageHUD()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (GetKFPC() == None) return;
|
||||
|
||||
if (KFPC.MyGFxHUD != None && KFPC.MyGFxHUD.MapTextWidget != None)
|
||||
{
|
||||
KFPC.MyGFxHUD.MapTextWidget.StoredMessageList.Length = 0;
|
||||
KFPC.MyGFxHUD.MapTextWidget.HideMessage();
|
||||
}
|
||||
}
|
||||
|
||||
private function float CalcDisplayTime(String Message)
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
return FClamp(Len(Message) / 20.0f, 3, 30);
|
||||
}
|
||||
|
||||
public simulated function KFPlayerController GetKFPC()
|
||||
{
|
||||
`Log_Trace();
|
||||
|
||||
if (KFPC != None) return KFPC;
|
||||
|
||||
KFPC = KFPlayerController(Owner);
|
||||
|
||||
if (KFPC == None && ROLE < ROLE_Authority)
|
||||
{
|
||||
KFPC = KFPlayerController(GetALocalPlayerController());
|
||||
}
|
||||
|
||||
return KFPC;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
bAlwaysRelevant = false
|
||||
bOnlyRelevantToOwner = true
|
||||
bSkipActorPropertyReplication = false
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,82 +1,82 @@
|
||||
class KickProtected extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config bool NotifyPlayerAboutKickAttempt;
|
||||
var private config Array<String> PlayerID;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Array<UniqueNetId> Load(E_LogLevel LogLevel)
|
||||
{
|
||||
local Array<UniqueNetId> UIDs;
|
||||
local UniqueNetId UID;
|
||||
local String ID;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
foreach default.PlayerID(ID)
|
||||
{
|
||||
if (AnyToUID(ID, UID, LogLevel))
|
||||
{
|
||||
UIDs.AddItem(UID);
|
||||
}
|
||||
else
|
||||
{
|
||||
`Log_Warn("Can't load PlayerID:" @ ID);
|
||||
}
|
||||
}
|
||||
|
||||
return UIDs;
|
||||
}
|
||||
|
||||
private static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.NotifyPlayerAboutKickAttempt = true;
|
||||
default.PlayerID.Length = 0;
|
||||
default.PlayerID.AddItem("76561190000000000");
|
||||
default.PlayerID.AddItem("0x0000000000000000");
|
||||
}
|
||||
|
||||
private static function bool IsUID(String ID, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
return (Left(ID, 2) ~= "0x");
|
||||
}
|
||||
|
||||
private static function bool AnyToUID(String ID, out UniqueNetId UID, E_LogLevel LogLevel)
|
||||
{
|
||||
local OnlineSubsystem OS;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
OS = class'GameEngine'.static.GetOnlineSubsystem();
|
||||
|
||||
if (OS == None) return false;
|
||||
|
||||
return IsUID(ID, LogLevel) ? OS.StringToUniqueNetId(ID, UID) : OS.Int64ToUniqueNetId(ID, UID);
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class KickProtected extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config bool NotifyPlayerAboutKickAttempt;
|
||||
var private config Array<String> PlayerID;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Array<UniqueNetId> Load(E_LogLevel LogLevel)
|
||||
{
|
||||
local Array<UniqueNetId> UIDs;
|
||||
local UniqueNetId UID;
|
||||
local String ID;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
foreach default.PlayerID(ID)
|
||||
{
|
||||
if (AnyToUID(ID, UID, LogLevel))
|
||||
{
|
||||
UIDs.AddItem(UID);
|
||||
}
|
||||
else
|
||||
{
|
||||
`Log_Warn("Can't load PlayerID:" @ ID);
|
||||
}
|
||||
}
|
||||
|
||||
return UIDs;
|
||||
}
|
||||
|
||||
private static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.NotifyPlayerAboutKickAttempt = true;
|
||||
default.PlayerID.Length = 0;
|
||||
default.PlayerID.AddItem("76561190000000000");
|
||||
default.PlayerID.AddItem("0x0000000000000000");
|
||||
}
|
||||
|
||||
private static function bool IsUID(String ID, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
return (Left(ID, 2) ~= "0x");
|
||||
}
|
||||
|
||||
private static function bool AnyToUID(String ID, out UniqueNetId UID, E_LogLevel LogLevel)
|
||||
{
|
||||
local OnlineSubsystem OS;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
OS = class'GameEngine'.static.GetOnlineSubsystem();
|
||||
|
||||
if (OS == None) return false;
|
||||
|
||||
return IsUID(ID, LogLevel) ? OS.StringToUniqueNetId(ID, UID) : OS.Int64ToUniqueNetId(ID, UID);
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,52 +1,52 @@
|
||||
class KickVote extends BaseVote
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config bool bHudNotificationsOnlyOnTraderTime;
|
||||
var public config int MinVotingPlayersToStartKickVote;
|
||||
var public config int MaxKicks;
|
||||
var public config bool bLogKickVote;
|
||||
var public config String WarningColorHex;
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (default.MinVotingPlayersToStartKickVote < 2)
|
||||
{
|
||||
`Log_Error("MinVotingPlayersToStartKickVote" @ "(" $ default.MinVotingPlayersToStartKickVote $ ")" @ "must be greater than 1");
|
||||
default.MinVotingPlayersToStartKickVote = 2;
|
||||
}
|
||||
|
||||
if (default.MaxKicks < 1)
|
||||
{
|
||||
`Log_Error("MaxKicks" @ "(" $ default.MaxKicks $ ")" @ "must be greater than 0");
|
||||
default.MaxKicks = 2;
|
||||
}
|
||||
|
||||
if (!IsValidHexColor(default.WarningColorHex, LogLevel))
|
||||
{
|
||||
`Log_Error("WarningColorHex" @ "(" $ default.WarningColorHex $ ")" @ "is not valid hex color");
|
||||
default.WarningColorHex = class'KFLocalMessage'.default.PriorityColor;
|
||||
}
|
||||
|
||||
Super.Load(LogLevel);
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
Super.ApplyDefault(LogLevel);
|
||||
|
||||
default.bHudNotificationsOnlyOnTraderTime = true;
|
||||
default.MinVotingPlayersToStartKickVote = 2;
|
||||
default.MaxKicks = 2;
|
||||
default.DefferedClearHUD = 2.0f;
|
||||
default.WarningColorHex = class'KFLocalMessage'.default.PriorityColor;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class KickVote extends BaseVote
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config bool bHudNotificationsOnlyOnTraderTime;
|
||||
var public config int MinVotingPlayersToStartKickVote;
|
||||
var public config int MaxKicks;
|
||||
var public config bool bLogKickVote;
|
||||
var public config String WarningColorHex;
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (default.MinVotingPlayersToStartKickVote < 2)
|
||||
{
|
||||
`Log_Error("MinVotingPlayersToStartKickVote" @ "(" $ default.MinVotingPlayersToStartKickVote $ ")" @ "must be greater than 1");
|
||||
default.MinVotingPlayersToStartKickVote = 2;
|
||||
}
|
||||
|
||||
if (default.MaxKicks < 1)
|
||||
{
|
||||
`Log_Error("MaxKicks" @ "(" $ default.MaxKicks $ ")" @ "must be greater than 0");
|
||||
default.MaxKicks = 2;
|
||||
}
|
||||
|
||||
if (!IsValidHexColor(default.WarningColorHex, LogLevel))
|
||||
{
|
||||
`Log_Error("WarningColorHex" @ "(" $ default.WarningColorHex $ ")" @ "is not valid hex color");
|
||||
default.WarningColorHex = class'KFLocalMessage'.default.PriorityColor;
|
||||
}
|
||||
|
||||
Super.Load(LogLevel);
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
Super.ApplyDefault(LogLevel);
|
||||
|
||||
default.bHudNotificationsOnlyOnTraderTime = true;
|
||||
default.MinVotingPlayersToStartKickVote = 2;
|
||||
default.MaxKicks = 2;
|
||||
default.DefferedClearHUD = 2.0f;
|
||||
default.WarningColorHex = class'KFLocalMessage'.default.PriorityColor;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,57 +1,57 @@
|
||||
class MapStat extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config bool bEnable;
|
||||
var public config String SortPolicy;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Locs(default.SortPolicy))
|
||||
{
|
||||
case "counterasc": return;
|
||||
case "counterdesc": return;
|
||||
case "nameasc": return;
|
||||
case "namedesc": return;
|
||||
case "playtimetotalasc": return;
|
||||
case "playtimetotaldesc": return;
|
||||
case "playtimeavgasc": return;
|
||||
case "playtimeavgdesc": return;
|
||||
}
|
||||
|
||||
`Log_Error("Can't load SortPolicy (" $ default.SortPolicy $ "), must be one of: CounterAsc CounterDesc NameAsc NameDesc PlaytimeTotalAsc PlaytimeTotalDesc PlaytimeAvgAsc PlaytimeAvgDesc");
|
||||
default.SortPolicy = "CounterDesc";
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.bEnable = false;
|
||||
default.SortPolicy = "CounterDesc";
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class MapStat extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config bool bEnable;
|
||||
var public config String SortPolicy;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Locs(default.SortPolicy))
|
||||
{
|
||||
case "counterasc": return;
|
||||
case "counterdesc": return;
|
||||
case "nameasc": return;
|
||||
case "namedesc": return;
|
||||
case "playtimetotalasc": return;
|
||||
case "playtimetotaldesc": return;
|
||||
case "playtimeavgasc": return;
|
||||
case "playtimeavgdesc": return;
|
||||
}
|
||||
|
||||
`Log_Error("Can't load SortPolicy (" $ default.SortPolicy $ "), must be one of: CounterAsc CounterDesc NameAsc NameDesc PlaytimeTotalAsc PlaytimeTotalDesc PlaytimeAvgAsc PlaytimeAvgDesc");
|
||||
default.SortPolicy = "CounterDesc";
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.bEnable = false;
|
||||
default.SortPolicy = "CounterDesc";
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,70 +1,70 @@
|
||||
class MapStats extends Object
|
||||
config(MapStats);
|
||||
|
||||
struct MapStatEntry
|
||||
{
|
||||
var String Name; // map
|
||||
var int Counter; // play count
|
||||
var int PlayTimeTotal; // minutes total
|
||||
var int PlayTimeAvg; // minutes per map
|
||||
};
|
||||
var config array<MapStatEntry> MapStat;
|
||||
|
||||
static delegate int CounterAsc (MapStatEntry A, MapStatEntry B) { return B.Counter < A.Counter ? -1 : 0; }
|
||||
static delegate int CounterDesc (MapStatEntry A, MapStatEntry B) { return A.Counter < B.Counter ? -1 : 0; }
|
||||
static delegate int NameAsc (MapStatEntry A, MapStatEntry B) { return B.Name < A.Name ? -1 : 0; }
|
||||
static delegate int NameDesc (MapStatEntry A, MapStatEntry B) { return A.Name < B.Name ? -1 : 0; }
|
||||
static delegate int PlayTimeTotalAsc (MapStatEntry A, MapStatEntry B) { return B.PlayTimeTotal < A.PlayTimeTotal ? -1 : 0; }
|
||||
static delegate int PlayTimeTotalDesc (MapStatEntry A, MapStatEntry B) { return A.PlayTimeTotal < B.PlayTimeTotal ? -1 : 0; }
|
||||
static delegate int PlayTimeAvgAsc (MapStatEntry A, MapStatEntry B) { return B.PlayTimeAvg < A.PlayTimeAvg ? -1 : 0; }
|
||||
static delegate int PlayTimeAvgDesc (MapStatEntry A, MapStatEntry B) { return A.PlayTimeAvg < B.PlayTimeAvg ? -1 : 0; }
|
||||
|
||||
static function SortMapStat(String SortPolicy, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Locs(SortPolicy))
|
||||
{
|
||||
case "counterasc": default.MapStat.Sort(CounterAsc); break;
|
||||
case "counterdesc": default.MapStat.Sort(CounterDesc); break;
|
||||
case "nameasc": default.MapStat.Sort(NameAsc); break;
|
||||
case "namedesc": default.MapStat.Sort(NameDesc); break;
|
||||
case "playtimetotalasc": default.MapStat.Sort(PlayTimeTotalAsc); break;
|
||||
case "playtimetotaldesc": default.MapStat.Sort(PlayTimeTotalDesc); break;
|
||||
case "playtimeavgasc": default.MapStat.Sort(PlayTimeAvgAsc); break;
|
||||
case "playtimeavgdesc": default.MapStat.Sort(PlayTimeAvgDesc); break;
|
||||
}
|
||||
}
|
||||
|
||||
static function IncMapStat(String Map, int PlayTime, String SortPolicy, E_LogLevel LogLevel)
|
||||
{
|
||||
local int MapStatEntryIndex;
|
||||
local MapStatEntry NewEntry;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
MapStatEntryIndex = default.MapStat.Find('Name', Map);
|
||||
if (MapStatEntryIndex == INDEX_NONE)
|
||||
{
|
||||
NewEntry.Name = Map;
|
||||
NewEntry.Counter = 1;
|
||||
NewEntry.PlayTimeTotal = PlayTime;
|
||||
NewEntry.PlayTimeAvg = PlayTime;
|
||||
default.MapStat.AddItem(NewEntry);
|
||||
}
|
||||
else
|
||||
{
|
||||
default.MapStat[MapStatEntryIndex].Counter++;
|
||||
default.MapStat[MapStatEntryIndex].PlayTimeTotal += PlayTime;
|
||||
default.MapStat[MapStatEntryIndex].PlayTimeAvg = default.MapStat[MapStatEntryIndex].PlayTimeTotal / default.MapStat[MapStatEntryIndex].Counter;
|
||||
}
|
||||
|
||||
SortMapStat(SortPolicy, LogLevel);
|
||||
|
||||
StaticSaveConfig();
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class MapStats extends Object
|
||||
config(MapStats);
|
||||
|
||||
struct MapStatEntry
|
||||
{
|
||||
var String Name; // map
|
||||
var int Counter; // play count
|
||||
var int PlayTimeTotal; // minutes total
|
||||
var int PlayTimeAvg; // minutes per map
|
||||
};
|
||||
var config array<MapStatEntry> MapStat;
|
||||
|
||||
static delegate int CounterAsc (MapStatEntry A, MapStatEntry B) { return B.Counter < A.Counter ? -1 : 0; }
|
||||
static delegate int CounterDesc (MapStatEntry A, MapStatEntry B) { return A.Counter < B.Counter ? -1 : 0; }
|
||||
static delegate int NameAsc (MapStatEntry A, MapStatEntry B) { return B.Name < A.Name ? -1 : 0; }
|
||||
static delegate int NameDesc (MapStatEntry A, MapStatEntry B) { return A.Name < B.Name ? -1 : 0; }
|
||||
static delegate int PlayTimeTotalAsc (MapStatEntry A, MapStatEntry B) { return B.PlayTimeTotal < A.PlayTimeTotal ? -1 : 0; }
|
||||
static delegate int PlayTimeTotalDesc (MapStatEntry A, MapStatEntry B) { return A.PlayTimeTotal < B.PlayTimeTotal ? -1 : 0; }
|
||||
static delegate int PlayTimeAvgAsc (MapStatEntry A, MapStatEntry B) { return B.PlayTimeAvg < A.PlayTimeAvg ? -1 : 0; }
|
||||
static delegate int PlayTimeAvgDesc (MapStatEntry A, MapStatEntry B) { return A.PlayTimeAvg < B.PlayTimeAvg ? -1 : 0; }
|
||||
|
||||
static function SortMapStat(String SortPolicy, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Locs(SortPolicy))
|
||||
{
|
||||
case "counterasc": default.MapStat.Sort(CounterAsc); break;
|
||||
case "counterdesc": default.MapStat.Sort(CounterDesc); break;
|
||||
case "nameasc": default.MapStat.Sort(NameAsc); break;
|
||||
case "namedesc": default.MapStat.Sort(NameDesc); break;
|
||||
case "playtimetotalasc": default.MapStat.Sort(PlayTimeTotalAsc); break;
|
||||
case "playtimetotaldesc": default.MapStat.Sort(PlayTimeTotalDesc); break;
|
||||
case "playtimeavgasc": default.MapStat.Sort(PlayTimeAvgAsc); break;
|
||||
case "playtimeavgdesc": default.MapStat.Sort(PlayTimeAvgDesc); break;
|
||||
}
|
||||
}
|
||||
|
||||
static function IncMapStat(String Map, int PlayTime, String SortPolicy, E_LogLevel LogLevel)
|
||||
{
|
||||
local int MapStatEntryIndex;
|
||||
local MapStatEntry NewEntry;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
MapStatEntryIndex = default.MapStat.Find('Name', Map);
|
||||
if (MapStatEntryIndex == INDEX_NONE)
|
||||
{
|
||||
NewEntry.Name = Map;
|
||||
NewEntry.Counter = 1;
|
||||
NewEntry.PlayTimeTotal = PlayTime;
|
||||
NewEntry.PlayTimeAvg = PlayTime;
|
||||
default.MapStat.AddItem(NewEntry);
|
||||
}
|
||||
else
|
||||
{
|
||||
default.MapStat[MapStatEntryIndex].Counter++;
|
||||
default.MapStat[MapStatEntryIndex].PlayTimeTotal += PlayTime;
|
||||
default.MapStat[MapStatEntryIndex].PlayTimeAvg = default.MapStat[MapStatEntryIndex].PlayTimeTotal / default.MapStat[MapStatEntryIndex].Counter;
|
||||
}
|
||||
|
||||
SortMapStat(SortPolicy, LogLevel);
|
||||
|
||||
StaticSaveConfig();
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,57 +1,57 @@
|
||||
class MapVote extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config String DefaultNextMap; // Any, Official, Custom, KF-<MapName>
|
||||
var public config bool bRandomizeNextMap;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
local String LowerDefaultNextMap;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
LowerDefaultNextMap = Locs(default.DefaultNextMap);
|
||||
|
||||
switch (LowerDefaultNextMap)
|
||||
{
|
||||
case "any": return;
|
||||
case "official": return;
|
||||
case "custom": return;
|
||||
default: if (Left(LowerDefaultNextMap, 3) == "kf-") return;
|
||||
}
|
||||
|
||||
`Log_Error("Can't load DefaultNextMap (" $ default.DefaultNextMap $ "), must be one of: Any Official Custom KF-<MapName>");
|
||||
default.DefaultNextMap = "Any";
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.bRandomizeNextMap = true;
|
||||
default.DefaultNextMap = "Any";
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class MapVote extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config String DefaultNextMap; // Any, Official, Custom, KF-<MapName>
|
||||
var public config bool bRandomizeNextMap;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
local String LowerDefaultNextMap;
|
||||
|
||||
`Log_TraceStatic();
|
||||
|
||||
LowerDefaultNextMap = Locs(default.DefaultNextMap);
|
||||
|
||||
switch (LowerDefaultNextMap)
|
||||
{
|
||||
case "any": return;
|
||||
case "official": return;
|
||||
case "custom": return;
|
||||
default: if (Left(LowerDefaultNextMap, 3) == "kf-") return;
|
||||
}
|
||||
|
||||
`Log_Error("Can't load DefaultNextMap (" $ default.DefaultNextMap $ "), must be one of: Any Official Custom KF-<MapName>");
|
||||
default.DefaultNextMap = "Any";
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.bRandomizeNextMap = true;
|
||||
default.DefaultNextMap = "Any";
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,19 +1,19 @@
|
||||
class PauseVote extends BaseVote
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
Super.ApplyDefault(LogLevel);
|
||||
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.GameColor;
|
||||
default.bChatNotifications = false;
|
||||
default.bHudNotifications = false;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class PauseVote extends BaseVote
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
Super.ApplyDefault(LogLevel);
|
||||
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.GameColor;
|
||||
default.bChatNotifications = false;
|
||||
default.bHudNotifications = false;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,19 +1,19 @@
|
||||
class SkipTraderVote extends BaseVote
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
Super.ApplyDefault(LogLevel);
|
||||
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.GameColor;
|
||||
default.bChatNotifications = false;
|
||||
default.bHudNotifications = false;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class SkipTraderVote extends BaseVote
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
Super.ApplyDefault(LogLevel);
|
||||
|
||||
default.PositiveColorHex = class'KFLocalMessage'.default.GameColor;
|
||||
default.bChatNotifications = false;
|
||||
default.bHudNotifications = false;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,54 +1,54 @@
|
||||
class StartWaveKickProtection extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config int Waves;
|
||||
var public config int MinLevel;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (default.Waves < 0)
|
||||
{
|
||||
`Log_Error("Waves" @ "(" $ default.Waves $ ")" @ "must be greater than or equal 0");
|
||||
default.Waves = 0;
|
||||
}
|
||||
|
||||
if (default.MinLevel < 0 || default.MinLevel > 25)
|
||||
{
|
||||
`Log_Error("MinLevel" @ "(" $ default.MinLevel $ ")" @ "must be in range 0-25");
|
||||
default.MinLevel = 0;
|
||||
}
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.Waves = 0;
|
||||
default.MinLevel = 0;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class StartWaveKickProtection extends Object
|
||||
config(CVC)
|
||||
abstract;
|
||||
|
||||
var public config int Waves;
|
||||
var public config int MinLevel;
|
||||
|
||||
public static function InitConfig(int Version, int LatestVersion, E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
switch (Version)
|
||||
{
|
||||
case `NO_CONFIG:
|
||||
ApplyDefault(LogLevel);
|
||||
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (LatestVersion != Version)
|
||||
{
|
||||
StaticSaveConfig();
|
||||
}
|
||||
}
|
||||
|
||||
public static function Load(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
if (default.Waves < 0)
|
||||
{
|
||||
`Log_Error("Waves" @ "(" $ default.Waves $ ")" @ "must be greater than or equal 0");
|
||||
default.Waves = 0;
|
||||
}
|
||||
|
||||
if (default.MinLevel < 0 || default.MinLevel > 25)
|
||||
{
|
||||
`Log_Error("MinLevel" @ "(" $ default.MinLevel $ ")" @ "must be in range 0-25");
|
||||
default.MinLevel = 0;
|
||||
}
|
||||
}
|
||||
|
||||
protected static function ApplyDefault(E_LogLevel LogLevel)
|
||||
{
|
||||
`Log_TraceStatic();
|
||||
|
||||
default.Waves = 0;
|
||||
default.MinLevel = 0;
|
||||
}
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,21 +1,21 @@
|
||||
class _Logger extends Object
|
||||
abstract;
|
||||
|
||||
enum E_LogLevel
|
||||
{
|
||||
LL_WrongLevel,
|
||||
LL_None,
|
||||
LL_Fatal,
|
||||
LL_Error,
|
||||
LL_Warning,
|
||||
LL_Kick,
|
||||
LL_Info,
|
||||
LL_Debug,
|
||||
LL_Trace,
|
||||
LL_All
|
||||
};
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
class _Logger extends Object
|
||||
abstract;
|
||||
|
||||
enum E_LogLevel
|
||||
{
|
||||
LL_WrongLevel,
|
||||
LL_None,
|
||||
LL_Fatal,
|
||||
LL_Error,
|
||||
LL_Warning,
|
||||
LL_Kick,
|
||||
LL_Info,
|
||||
LL_Debug,
|
||||
LL_Trace,
|
||||
LL_All
|
||||
};
|
||||
|
||||
defaultproperties
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1,2 +1,2 @@
|
||||
// Constants
|
||||
`define NO_CONFIG 0
|
||||
// Constants
|
||||
`define NO_CONFIG 0
|
||||
|
@ -1,3 +1,3 @@
|
||||
// Imports
|
||||
`include(Logger.uci)
|
||||
`include(Constants.uci)
|
||||
// Imports
|
||||
`include(Logger.uci)
|
||||
`include(Constants.uci)
|
||||
|
@ -1,16 +1,16 @@
|
||||
// Logger
|
||||
`define Log_Tag 'CVC'
|
||||
|
||||
`define LocationStatic "`{ClassName}::" $ GetFuncName()
|
||||
|
||||
`define Log_Base(msg, cond) `log(`msg `if(`cond), `cond`{endif}, `Log_Tag)
|
||||
|
||||
`define Log_Fatal(msg) `log("FATAL:" @ `msg, (LogLevel >= LL_Fatal), `Log_Tag)
|
||||
`define Log_Error(msg) `log("ERROR:" @ `msg, (LogLevel >= LL_Error), `Log_Tag)
|
||||
`define Log_Warn(msg) `log("WARN:" @ `msg, (LogLevel >= LL_Warning), `Log_Tag)
|
||||
`define Log_Kick(msg) `log("KICK:" @ `msg, (LogLevel >= LL_Kick), `Log_Tag)
|
||||
`define Log_Info(msg) `log("INFO:" @ `msg, (LogLevel >= LL_Info), `Log_Tag)
|
||||
`define Log_Debug(msg) `log("DEBUG:" @ `msg, (LogLevel >= LL_Debug), `Log_Tag)
|
||||
|
||||
`define Log_Trace(msg) `log("TRACE:" @ `Location `if(`msg) @ `msg`{endif}, (LogLevel >= LL_Trace), `Log_Tag)
|
||||
`define Log_TraceStatic(msg) `log("TRACE:" @ `LocationStatic `if(`msg) @ `msg`{endif}, (LogLevel >= LL_Trace), `Log_Tag)
|
||||
// Logger
|
||||
`define Log_Tag 'CVC'
|
||||
|
||||
`define LocationStatic "`{ClassName}::" $ GetFuncName()
|
||||
|
||||
`define Log_Base(msg, cond) `log(`msg `if(`cond), `cond`{endif}, `Log_Tag)
|
||||
|
||||
`define Log_Fatal(msg) `log("FATAL:" @ `msg, (LogLevel >= LL_Fatal), `Log_Tag)
|
||||
`define Log_Error(msg) `log("ERROR:" @ `msg, (LogLevel >= LL_Error), `Log_Tag)
|
||||
`define Log_Warn(msg) `log("WARN:" @ `msg, (LogLevel >= LL_Warning), `Log_Tag)
|
||||
`define Log_Kick(msg) `log("KICK:" @ `msg, (LogLevel >= LL_Kick), `Log_Tag)
|
||||
`define Log_Info(msg) `log("INFO:" @ `msg, (LogLevel >= LL_Info), `Log_Tag)
|
||||
`define Log_Debug(msg) `log("DEBUG:" @ `msg, (LogLevel >= LL_Debug), `Log_Tag)
|
||||
|
||||
`define Log_Trace(msg) `log("TRACE:" @ `Location `if(`msg) @ `msg`{endif}, (LogLevel >= LL_Trace), `Log_Tag)
|
||||
`define Log_TraceStatic(msg) `log("TRACE:" @ `LocationStatic `if(`msg) @ `msg`{endif}, (LogLevel >= LL_Trace), `Log_Tag)
|
||||
|
Binary file not shown.
Binary file not shown.
@ -7,7 +7,7 @@ StripSource="True"
|
||||
|
||||
# Mutators to be compiled
|
||||
# Specify them with a space as a separator,
|
||||
# Mutators will be compiled in the specified order
|
||||
# Mutators will be compiled in the specified order
|
||||
PackageBuildOrder="CVC"
|
||||
|
||||
|
||||
@ -16,7 +16,7 @@ PackageBuildOrder="CVC"
|
||||
# Packages you want to brew using @peelz's patched KFEditor.
|
||||
# Useful for cases where regular brew doesn't put *.upk inside the package.
|
||||
# Specify them with a space as a separator,
|
||||
# The order doesn't matter
|
||||
# The order doesn't matter
|
||||
PackagePeelzBrew=""
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ PackagePeelzBrew=""
|
||||
|
||||
# Mutators that will be uploaded to the workshop
|
||||
# Specify them with a space as a separator,
|
||||
# The order doesn't matter
|
||||
# The order doesn't matter
|
||||
PackageUpload="CVC"
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user