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

234 lines
6.0 KiB
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// KFGFxPostGameContainer_MapVote
//=============================================================================
// Class Description
//=============================================================================
// Killing Floor 2
// Copyright (C) 2015 Tripwire Interactive LLC
// - Zane Gholson 05/19/2015
//=============================================================================
class KFGFxPostGameContainer_MapVote extends KFGFxObject_Container;
var localized string YourVoteString;
var localized string TopVotesString;
var string MapVoteString; //localized in parent and parent passes it to this class
2022-05-11 15:13:25 +00:00
// Maps to skip
const MapBiolapse = 'KF-Biolapse';
const MapNightmare = 'KF-Nightmare';
const MapPowerCore = 'KF-PowerCore_Holdout';
const MapDescent = 'KF-TheDescent';
const MapKrampus = 'KF-KrampusLair';
2023-05-11 15:55:04 +00:00
const MapSantas = 'KF-SantasWorkshop';
2022-05-11 15:13:25 +00:00
const MapSteam = 'KF-SteamFortress';
2023-05-11 15:55:04 +00:00
const MapElysium = 'KF-Elysium';
2022-05-11 15:13:25 +00:00
2020-12-13 15:01:13 +00:00
//==============================================================
// Initialization
//==============================================================
function Initialize( KFGFxObject_Menu NewParentMenu )
{
super.Initialize( NewParentMenu );
LocalizeText();
SetMapOptions();
}
function LocalizeText()
{
local GFxObject TextObject;
TextObject = CreateObject("Object");
TextObject.SetString("yourVote", YourVoteString);
TextObject.SetString("mapList", MapVoteString);
TextObject.SetString("topVotes", TopVotesString);
SetObject("localizedText", TextObject);
}
function SetMapOptions()
{
local GFxObject MapList;
local GFxObject MapObject;
2021-06-02 20:06:18 +00:00
local int i, Counter;
2020-12-13 15:01:13 +00:00
local array<string> ServerMapList;
local KFGameReplicationInfo KFGRI;
2021-11-16 17:03:42 +00:00
local bool IsWeeklyMode;
2024-01-23 16:25:12 +00:00
local bool IsBoom, IsScavenger, IsBossRush, IsGunGame, IsContaminationMode, IsBountyHunt;
2022-05-11 15:13:25 +00:00
local name MapName;
2020-12-13 15:01:13 +00:00
KFGRI = KFGameReplicationInfo(GetPC().WorldInfo.GRI);
2021-06-02 20:06:18 +00:00
Counter = 0;
2022-05-11 15:13:25 +00:00
2024-01-23 16:25:12 +00:00
if (KFGRI != none && KFGRI.VoteCollector != none)
2020-12-13 15:01:13 +00:00
{
2024-01-23 16:25:12 +00:00
ServerMapList = KFGRI.VoteCollector.MapList;
2023-09-21 19:31:11 +00:00
2024-01-23 16:25:12 +00:00
IsWeeklyMode = KFGRI.bIsWeeklyMode;
2022-05-11 15:13:25 +00:00
2023-09-21 19:31:11 +00:00
IsBoom = false;
IsScavenger = false;
IsBossRush = false;
IsGunGame = false;
IsContaminationMode = false;
IsBountyHunt = false;
switch (KFGRI.CurrentWeeklyIndex)
{
2024-01-23 16:25:12 +00:00
case 0: IsBoom = true; break;
2023-09-21 19:31:11 +00:00
case 11: IsScavenger = true; break;
case 14: IsBossRush = true; break;
case 16: IsGunGame = true; break;
case 19: IsContaminationMode = true; break;
case 20: IsBountyHunt = true; break;
}
2020-12-13 15:01:13 +00:00
MapList = CreateArray();
for (i = 0; i < ServerMapList.length; i++)
{
2022-05-11 15:13:25 +00:00
MapName = name(ServerMapList[i]);
2023-05-11 15:55:04 +00:00
2024-01-23 16:25:12 +00:00
if (IsWeeklyMode)
{
if (MapName == MapSantas)
{
continue;
}
}
if (IsWeeklyMode && IsBoom)
2023-09-21 19:31:11 +00:00
{
2024-01-23 16:25:12 +00:00
if (MapName == MapSteam)
{
continue;
}
2023-09-21 19:31:11 +00:00
}
2024-01-23 16:25:12 +00:00
if (IsWeeklyMode && (IsScavenger || IsBossRush || IsGunGame))
2021-11-16 17:03:42 +00:00
{
2024-01-23 16:25:12 +00:00
if (MapName == MapBiolapse ||
MapName == MapNightmare ||
MapName == MapPowerCore ||
MapName == MapDescent ||
MapName == MapKrampus)
{
continue;
}
2021-11-16 17:03:42 +00:00
}
2023-05-11 15:55:04 +00:00
if (IsWeeklyMode && IsContaminationMode)
{
if (MapName == MapBiolapse ||
MapName == MapNightmare ||
MapName == MapPowerCore ||
MapName == MapDescent ||
MapName == MapKrampus ||
MapName == MapElysium ||
MapName == MapSantas)
{
continue;
}
}
2023-09-21 19:31:11 +00:00
if (IsWeeklyMode && IsBountyHunt)
{
if (MapName == MapBiolapse ||
MapName == MapNightmare ||
MapName == MapPowerCore ||
MapName == MapDescent ||
MapName == MapKrampus ||
MapName == MapElysium ||
MapName == MapSteam)
{
continue;
}
}
2024-01-23 16:25:12 +00:00
if (IsWeeklyMode && IsBossRush)
2021-06-02 20:06:18 +00:00
{
2024-01-23 16:25:12 +00:00
if (MapName == MapSteam)
{
continue;
}
2021-06-02 20:06:18 +00:00
}
2020-12-13 15:01:13 +00:00
MapObject = CreateObject("Object");
MapObject.SetString("label", class'KFCommon_LocalizedStrings'.static.GetFriendlyMapName(ServerMapList[i]) );
MapObject.SetString("mapSource", GetMapSource(ServerMapList[i]) );
2021-06-02 20:06:18 +00:00
MapObject.SetInt("mapindex", i);
MapList.SetElementObject(Counter, MapObject);
Counter++;
2020-12-13 15:01:13 +00:00
}
}
SetObject("mapChoices", MapList);
}
function RecieveTopMaps(const out TopVotes VoteObject)
{
//For array of objects based on the index pass for map at position.
local GFxObject MapList;
local KFGameReplicationInfo KFGRI;
KFGRI = KFGameReplicationInfo(GetPC().WorldInfo.GRI);
if(KFGRI != none && KFGRI.VoteCollector != none)
{
//gfx
MapList = CreateArray();
if(VoteObject.Map1Name != "" && VoteObject.Map1Votes > 0)
{
MapList.SetElementObject(0, IndexToTopMapObject(VoteObject.Map1Name, VoteObject.Map1Votes));
}
if(VoteObject.Map2Name != "" && VoteObject.Map2Votes > 0)
{
MapList.SetElementObject(1, IndexToTopMapObject(VoteObject.Map2Name, VoteObject.Map2Votes));
}
if(VoteObject.Map3Name != "" && VoteObject.Map3Votes > 0)
{
MapList.SetElementObject(2, IndexToTopMapObject(VoteObject.Map3Name, VoteObject.Map3Votes));
}
}
SetObject("currentVotes", MapList);
}
function GFxObject IndexToTopMapObject(string MapName, int VoteCount)
{
local GFxObject MapObject;
MapObject = CreateObject("Object");
MapObject.SetString("label", class'KFCommon_LocalizedStrings'.static.GetFriendlyMapName(MapName) );
MapObject.SetString("secondaryText", String(VoteCount));
MapObject.SetString("mapSource", GetMapSource(MapName));
return MapObject;
}
function string GetMapSource(string MapName)
{
local KFMapSummary MapData;
MapData = class'KFUIDataStore_GameResource'.static.GetMapSummaryFromMapName(MapName);
if ( MapData != none )
{
return "img://" $MapData.ScreenshotPathName;
}
else
{
// Failed to find map image, use the default instead
MapData = class'KFUIDataStore_GameResource'.static.GetMapSummaryFromMapName("KF-Default");
if ( MapData != none )
{
return "img://" $MapData.ScreenshotPathName;
}
}
}
DefaultProperties
{
}