143 lines
3.8 KiB
Ucode
143 lines
3.8 KiB
Ucode
class SpawnListBossWaves extends Object
|
|
dependson(ZedSpawner)
|
|
config(ZedSpawner);
|
|
|
|
struct S_SpawnEntryCfg
|
|
{
|
|
var String BossClass;
|
|
var String ZedClass;
|
|
var int Delay;
|
|
var int Probability;
|
|
var int SpawnCountBase;
|
|
var int SingleSpawnLimit;
|
|
};
|
|
|
|
var public config bool bStopRegularSpawn;
|
|
var private config Array<S_SpawnEntryCfg> Spawn;
|
|
|
|
public static function InitConfig(int Version, int LatestVersion, KFGI_Access KFGIA, E_LogLevel LogLevel)
|
|
{
|
|
`Log_TraceStatic();
|
|
|
|
switch (Version)
|
|
{
|
|
case `NO_CONFIG:
|
|
ApplyDefault(KFGIA, LogLevel);
|
|
|
|
default: break;
|
|
}
|
|
|
|
if (LatestVersion != Version)
|
|
{
|
|
StaticSaveConfig();
|
|
}
|
|
}
|
|
|
|
private static function ApplyDefault(KFGI_Access KFGIA, E_LogLevel LogLevel)
|
|
{
|
|
local S_SpawnEntryCfg SpawnEntry;
|
|
local Array<class<KFPawn_Monster> > KFPM_Bosses;
|
|
local class<KFPawn_Monster> KFPMC;
|
|
|
|
`Log_TraceStatic();
|
|
|
|
default.Spawn.Length = 0;
|
|
|
|
default.bStopRegularSpawn = true;
|
|
default.Spawn.Length = 0;
|
|
SpawnEntry.ZedClass = "SomePackage.SomeClass";
|
|
SpawnEntry.SpawnCountBase = 2;
|
|
SpawnEntry.SingleSpawnLimit = 1;
|
|
SpawnEntry.Delay = 30;
|
|
SpawnEntry.Probability = 100;
|
|
KFPM_Bosses = KFGIA.GetAIBossClassList(LogLevel);
|
|
foreach KFPM_Bosses(KFPMC)
|
|
{
|
|
SpawnEntry.BossClass = "KFGameContent." $ String(KFPMC);
|
|
default.Spawn.AddItem(SpawnEntry);
|
|
}
|
|
}
|
|
|
|
public static function Array<S_SpawnEntry> Load(E_LogLevel LogLevel)
|
|
{
|
|
local Array<S_SpawnEntry> SpawnList;
|
|
local S_SpawnEntryCfg SpawnEntryCfg;
|
|
local S_SpawnEntry SpawnEntry;
|
|
local int Line;
|
|
local bool Errors;
|
|
|
|
`Log_TraceStatic();
|
|
|
|
`Log_Info("Load boss waves spawn list:");
|
|
foreach default.Spawn(SpawnEntryCfg, Line)
|
|
{
|
|
Errors = false;
|
|
|
|
SpawnEntry.BossClass = class<KFPawn_Monster>(DynamicLoadObject(SpawnEntryCfg.BossClass, class'Class'));
|
|
if (SpawnEntry.BossClass == None)
|
|
{
|
|
`Log_Warn("[" $ Line + 1 $ "]" @ "Can't load boss class:" @ SpawnEntryCfg.BossClass);
|
|
Errors = true;
|
|
}
|
|
|
|
SpawnEntry.ZedClass = class<KFPawn_Monster>(DynamicLoadObject(SpawnEntryCfg.ZedClass, class'Class'));
|
|
if (SpawnEntry.ZedClass == None)
|
|
{
|
|
`Log_Warn("[" $ Line + 1 $ "]" @ "Can't load zed class:" @ SpawnEntryCfg.ZedClass);
|
|
Errors = true;
|
|
}
|
|
|
|
SpawnEntry.RelativeStartDefault = 0.f;
|
|
|
|
SpawnEntry.DelayDefault = SpawnEntryCfg.Delay;
|
|
if (SpawnEntryCfg.Delay <= 0)
|
|
{
|
|
`Log_Warn("[" $ Line + 1 $ "]" @ "Delay" @ "(" $ SpawnEntryCfg.Delay $ ")" @ "must be greater than 0");
|
|
Errors = true;
|
|
}
|
|
|
|
SpawnEntry.Probability = SpawnEntryCfg.Probability / 100.f;
|
|
if (SpawnEntryCfg.Probability <= 0 || SpawnEntryCfg.Probability > 100)
|
|
{
|
|
`Log_Warn("[" $ Line + 1 $ "]" @ "Probability" @ "(" $ SpawnEntryCfg.Probability $ ")" @ "must be greater than 0 and less than or equal 100");
|
|
Errors = true;
|
|
}
|
|
|
|
SpawnEntry.SpawnCountBase = SpawnEntryCfg.SpawnCountBase;
|
|
if (SpawnEntry.SpawnCountBase <= 0)
|
|
{
|
|
`Log_Warn("[" $ Line + 1 $ "]" @ "SpawnCountBase" @ "(" $ SpawnEntryCfg.SpawnCountBase $ ")" @ "must be greater than 0");
|
|
Errors = true;
|
|
}
|
|
|
|
SpawnEntry.SingleSpawnLimitDefault = SpawnEntryCfg.SingleSpawnLimit;
|
|
if (SpawnEntry.SingleSpawnLimit < 0)
|
|
{
|
|
`Log_Warn("[" $ Line + 1 $ "]" @ "SingleSpawnLimit" @ "(" $ SpawnEntryCfg.SingleSpawnLimit $ ")" @ "must be equal or greater than 0");
|
|
Errors = true;
|
|
}
|
|
|
|
if (!Errors)
|
|
{
|
|
SpawnList.AddItem(SpawnEntry);
|
|
`Log_Debug("[" $ Line + 1 $ "]" @ "Loaded successfully: (" $ SpawnEntryCfg.BossClass $ ")" @ SpawnEntryCfg.ZedClass);
|
|
}
|
|
}
|
|
|
|
if (SpawnList.Length == default.Spawn.Length)
|
|
{
|
|
`Log_Info("Boss spawn list loaded successfully (" $ default.Spawn.Length @ "entries)");
|
|
}
|
|
else
|
|
{
|
|
`Log_Info("Boss spawn list: loaded" @ SpawnList.Length @ "of" @ default.Spawn.Length @ "entries");
|
|
}
|
|
|
|
return SpawnList;
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
|
|
}
|