423 lines
12 KiB
Ucode
423 lines
12 KiB
Ucode
//=============================================================================
|
|
// KFGFxStartGameContainer_Overview
|
|
//=============================================================================
|
|
// Class Description
|
|
//=============================================================================
|
|
// Killing Floor 2
|
|
// Copyright (C) 2015 Tripwire Interactive LLC
|
|
// - Greg Felber 4/23/2014
|
|
//=============================================================================
|
|
|
|
class KFGFxStartContainer_InGameOverview extends KFGFxObject_Container
|
|
dependson(KFUnlockManager);
|
|
|
|
|
|
var KFGFxMenu_StartGame StartMenu;
|
|
var byte LastDifficultyIndex, LastLengthIndex, LastPrivacyIndex;
|
|
|
|
var localized string OverviewString;
|
|
var localized string ChangeString;
|
|
var localized string AuthorString;
|
|
|
|
var localized string SharedByString;
|
|
var localized string SharedContentString;
|
|
var GFxObject SharedContentButton;
|
|
|
|
var GFxObject ServerWelcomeScreen;
|
|
|
|
var bool bContentShared;
|
|
|
|
var KFHTTPImageDownloader ImageDownLoader;
|
|
|
|
var const name ObjectiveClassName;
|
|
|
|
function Initialize( KFGFxObject_Menu NewParentMenu )
|
|
{
|
|
local PlayerController PC;
|
|
|
|
PC = GetPC();
|
|
StartMenu = KFGfxMenu_StartGame(NewParentMenu);
|
|
ServerWelcomeScreen = GetObject("serverWelcomeScreen");
|
|
LocalizeContainer();
|
|
UpdateOverviewInGame();
|
|
SharedContentButton = GetObject("sharedContentButton");
|
|
if(SharedContentButton != none)
|
|
{
|
|
SharedContentButton.SetVisible(PC.WorldInfo.NetMode != NM_Standalone);
|
|
}
|
|
/*if(!PC.WorldInfo.IsConsoleBuild())
|
|
{
|
|
*/
|
|
UpdateSharedContent();
|
|
//}
|
|
// BWJ - 5-5-16 - Hiding this for E3 build. Not guaranteed internet connection to download the images
|
|
if( !class'WorldInfo'.static.IsE3Build() )
|
|
{
|
|
ShowWelcomeScreen();
|
|
}
|
|
}
|
|
|
|
function HideLengthInfo()
|
|
{
|
|
local GFxObject InfoContainer;
|
|
local GFxObject LengthText;
|
|
local GFxObject LengthValueText;
|
|
|
|
|
|
InfoContainer = GetObject("infoContainer");
|
|
|
|
if(InfoContainer != none)
|
|
{
|
|
LengthText = InfoContainer.GetObject("lengthTitle");
|
|
LengthValueText = InfoContainer.GetObject("lengthLabel");
|
|
|
|
LengthText.SetVisible(false);
|
|
LengthValueText.SetVisible(false);
|
|
}
|
|
}
|
|
|
|
function LocalizeContainer()
|
|
{
|
|
local byte i;
|
|
local GFxObject DataProvider, TempObj, LocalizedObject;
|
|
local WorldInfo WI;
|
|
|
|
LocalizedObject = CreateObject("Object");
|
|
|
|
LocalizedObject.SetString("header", OverviewString);
|
|
LocalizedObject.SetString("gameModeTitle", StartMenu.GameModeTitle);
|
|
LocalizedObject.SetString("mapTitle", StartMenu.MapTitle);
|
|
LocalizedObject.SetString("infoTitle", StartMenu.InfoTitle);
|
|
LocalizedObject.SetString("permissionsTitle", StartMenu.PermissionsTitle);
|
|
|
|
|
|
WI = class'WorldInfo'.static.GetWorldInfo();
|
|
if( WI != none && WI.NetMode != NM_Standalone && !GetPC().WorldInfo.IsConsoleBuild() )
|
|
{
|
|
LocalizedObject.SetString("serverTitle", StartMenu.ServerTypeString);
|
|
}
|
|
|
|
LocalizedObject.SetString("difficultyTitle", StartMenu.DifficultyTitle);
|
|
LocalizedObject.SetString("lengthTitle", StartMenu.LengthTitle);
|
|
LocalizedObject.SetString("changeString", ChangeString);
|
|
|
|
LocalizedObject.SetString("confirm", class'KFCommon_LocalizedStrings'.default.ConfirmString);
|
|
LocalizedObject.SetString("sharedContent", SharedContentString);
|
|
|
|
DataProvider = CreateArray();
|
|
|
|
for (i = 0; i < class'KFCommon_LocalizedStrings'.static.GetPermissionStringsArray(GetPC().WorldInfo.IsConsoleBuild()).length; i++)
|
|
{
|
|
TempObj = CreateObject("Object");
|
|
TempObj.SetString("label", class'KFCommon_LocalizedStrings'.static.GetPermissionString(i));
|
|
DataProvider.SetElementObject(i, TempObj);
|
|
}
|
|
|
|
LocalizedObject.SetObject("permissionOptions", DataProvider);
|
|
|
|
if( !class'WorldInfo'.static.IsMenuLevel() )
|
|
{
|
|
LocalizedObject.SetString("authorName", AuthorString$GetPC().WorldInfo.Author);
|
|
}
|
|
|
|
SetObject("localizedText", LocalizedObject);
|
|
|
|
LocalizeWelcomeScreen();
|
|
}
|
|
|
|
function LocalizeWelcomeScreen()
|
|
{
|
|
local GFxObject LocalizedObject;
|
|
|
|
if(ServerWelcomeScreen == none)
|
|
{
|
|
return;
|
|
}
|
|
|
|
LocalizedObject = CreateObject("Object");
|
|
LocalizedObject.SetString("confirm", class'KFCommon_LocalizedStrings'.default.ConfirmString);
|
|
|
|
serverWelcomeScreen.SetObject("localizedText", LocalizedObject);
|
|
|
|
}
|
|
|
|
|
|
function ImageDownloadComplete(bool bWasSuccessful)
|
|
{
|
|
if(bWasSuccessful) {
|
|
ServerWelcomeScreen.SetString("banner", "Img://" $PathName(ImageDownloader.TheTexture));
|
|
ServerWelcomeScreen.ActionScriptVoid("openContainer");
|
|
} else {
|
|
// Failed to download the image ... should we do anything in this case?
|
|
}
|
|
}
|
|
|
|
function ShowWelcomeScreen()
|
|
{
|
|
local KFGameReplicationInfo KFGRI;
|
|
local WorldInfo WI;
|
|
|
|
if(ServerWelcomeScreen == none)
|
|
{
|
|
return;
|
|
}
|
|
|
|
WI = class'WorldInfo'.static.GetWorldInfo();
|
|
|
|
if( WI != none && WI.NetMode != NM_Client )
|
|
{
|
|
`log("WI: " @WI);
|
|
`log("WI.NetMode: " @WI.NetMode);
|
|
return;
|
|
}
|
|
|
|
KFGRI = KFGameReplicationInfo(GetPC().WorldInfo.GRI);
|
|
|
|
if( KFGRI == none )
|
|
{
|
|
return;
|
|
}
|
|
|
|
if(KFGRI.ServerAdInfo.BannerLink != "" && KFGRI.ServerAdInfo.ServerMOTD != "" && !GetPC().WorldInfo.IsConsoleBuild())
|
|
{
|
|
ImageDownloader = new(Outer) class'KFHTTPImageDownloader';
|
|
ImageDownloader.DownloadImageFromURL(KFGRI.ServerAdInfo.BannerLink, ImageDownloadComplete);
|
|
ServerWelcomeScreen.SetString("clanMotto", KFGRI.ServerAdInfo.ClanMotto);
|
|
ServerWelcomeScreen.SetString("messageOfTheDay", Repl(KFGRI.ServerAdInfo.ServerMOTD, "@nl@", Chr(10)));
|
|
ServerWelcomeScreen.SetString("serverName", WI.GRI.ServerName);
|
|
ServerWelcomeScreen.SetString("serverIP", KFGRI.ServerAdInfo.WebsiteLink);
|
|
}
|
|
}
|
|
|
|
function UpdateSharedContent()
|
|
{
|
|
local GFxObject DataProvider, TempWeaponObj;
|
|
local int i, j, itemCount;
|
|
local Class<KFUnlockManager> UnlockManagerClass;
|
|
local string PlayerNameList;
|
|
local KFGameReplicationInfo KFGRI;
|
|
local array<PlayerReplicationInfo> WeaponSharedList;
|
|
local bool bContentPreviouslyShared;
|
|
local bool bIsConsoleBuild;
|
|
|
|
if(class'WorldInfo'.static.IsMenuLevel())
|
|
{
|
|
return;
|
|
}
|
|
|
|
bIsConsoleBuild = GetPC().WorldInfo.IsConsoleBuild();
|
|
|
|
bContentPreviouslyShared = bContentShared;
|
|
|
|
KFGRI = KFGameReplicationInfo(GetPC().WorldInfo.GRI);
|
|
|
|
if(KFGRI == none)
|
|
{
|
|
return;
|
|
}
|
|
|
|
itemCount = 0;
|
|
|
|
UnlockManagerClass = Class'KFUnlockManager';
|
|
|
|
DataProvider = CreateArray();
|
|
|
|
//for each unlock item
|
|
for (i = 0;i < UnlockManagerClass.default.SharedContentList.length; i++)
|
|
{
|
|
//if unlocked
|
|
if (bIsConsoleBuild && ESharedContentUnlock(i) == SCU_Zweihander) //SCU_Zweihander is not supossed to show on console, it is unlocked by default
|
|
{
|
|
continue;
|
|
}
|
|
if(class'KFUnlockManager'.static.IsSharedContentUnlocked(ESharedContentUnlock(i)))
|
|
{
|
|
bContentShared = true;
|
|
TempWeaponObj = CreateObject("Object");
|
|
//formulate details
|
|
TempWeaponObj.SetString("label", Localize(String(UnlockManagerClass.default.SharedContentList[i].Name), "ItemName", "KFGameContent"));
|
|
TempWeaponObj.SetString("sourceText", Localize(String(UnlockManagerClass.default.SharedContentList[i].Name), "SharedUnlockSource", "KFGameContent"));
|
|
TempWeaponObj.SetString("iconPath", "img://"$UnlockManagerClass.default.SharedContentList[i].IconPath);
|
|
|
|
UnlockManagerClass.static.GetSharedContentPlayerList(ESharedContentUnlock(i), WeaponSharedList);
|
|
//for each active PRI
|
|
for (j = 0; j < WeaponSharedList.length; j++)
|
|
{
|
|
if(j == 0)
|
|
{
|
|
PlayerNameList = SharedByString @WeaponSharedList[j].PlayerName;
|
|
}
|
|
else
|
|
{
|
|
PlayerNameList = PlayerNameList $"," @WeaponSharedList[j].PlayerName;
|
|
}
|
|
}
|
|
|
|
TempWeaponObj.SetString("names", PlayerNameList);
|
|
//Add Item to list
|
|
DataProvider.SetElementObject(itemCount, TempWeaponObj);
|
|
itemCount++;
|
|
}
|
|
PlayerNameList = "";
|
|
WeaponSharedList.length = 0;
|
|
}
|
|
|
|
SetObject("sharedContent", DataProvider);
|
|
|
|
if(SharedContentButton != none )
|
|
{
|
|
if(bContentShared != bContentPreviouslyShared)
|
|
{
|
|
SharedContentButton.SetBool("enabled", bContentShared);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function GetKFPRIArray( out array<KFPlayerReplicationInfo> KFPRIArray )
|
|
{
|
|
local PlayerController PC;
|
|
local KFGameReplicationInfo KFGRI;
|
|
|
|
PC = GetPC();
|
|
|
|
if ( PC == none || PC.WorldInfo == none || PC.WorldInfo.GRI == none )
|
|
{
|
|
return;
|
|
}
|
|
|
|
KFGRI = KFGameReplicationInfo( GetPC().WorldInfo.GRI );
|
|
if ( KFGRI != none )
|
|
{
|
|
KFGRI.GetKFPRIArray( KFPRIArray );
|
|
}
|
|
}
|
|
|
|
// The party leader has modified a game option
|
|
function UpdateGameMode( string Mode )
|
|
{
|
|
SetString("gameMode", Mode);
|
|
}
|
|
|
|
// The party leader has modified a game option
|
|
function UpdateMap( string MapName, string MapSource )
|
|
{
|
|
ActionScriptVoid("updateMap");
|
|
}
|
|
|
|
// The party leader has modified a game option
|
|
function UpdateDifficulty( string Difficulty )
|
|
{
|
|
SetString("difficultyText", Difficulty);
|
|
}
|
|
|
|
// The party leader has modified a game option
|
|
function UpdateLength( string Length )
|
|
{
|
|
SetString("lengthText", Length);
|
|
}
|
|
|
|
function UpdateServerType(string ServerType)
|
|
{
|
|
local WorldInfo WI;
|
|
|
|
WI = class'WorldInfo'.static.GetWorldInfo();
|
|
|
|
if( WI != none && WI.NetMode != NM_Standalone && !GetPC().WorldInfo.IsConsoleBuild() )
|
|
{
|
|
SetString("serverType", ServerType);
|
|
}
|
|
}
|
|
|
|
// The party leader has modified a game option
|
|
function UpdatePrivacy( string Privacy )
|
|
{
|
|
SetString("permissionsText", Privacy);
|
|
}
|
|
|
|
function UpdateOverviewInGame()
|
|
{
|
|
local KFGameReplicationInfo KFGRI;
|
|
local string GameDifficultyString;
|
|
local Float CurrentGameDifficulty;
|
|
local int CurrentLengthIndex, CurrentPrivacyIndex;
|
|
local bool bCustomDifficulty;
|
|
local bool bCustomLength;
|
|
|
|
//not using these now
|
|
bCustomLength = false; //not using these now
|
|
bCustomDifficulty = false;
|
|
|
|
|
|
KFGRI = KFGameReplicationInfo(GetPC().WorldInfo.GRI);
|
|
if(KFGRI != none)
|
|
{
|
|
|
|
if (KFGRI != none && KFGRI.GameClass != none && !KFGRI.GameClass.Static.GetShouldShowLength())
|
|
{
|
|
HideLengthInfo();
|
|
}
|
|
SetCurrentMapInfo();
|
|
|
|
// Update Game mode
|
|
UpdateGameMode(KFGRI.GameClass.default.GameName);
|
|
|
|
// Update Difficulty
|
|
CurrentGameDifficulty = KFGRI.GameDifficulty;
|
|
if(LastDifficultyIndex != CurrentGameDifficulty)
|
|
{
|
|
GameDifficultyString = bCustomDifficulty ? Class'KFCommon_LocalizedStrings'.default.CustomString : Class'KFCommon_LocalizedStrings'.static.GetDifficultyString(CurrentGameDifficulty);
|
|
UpdateDifficulty(GameDifficultyString);
|
|
LastDifficultyIndex = CurrentGameDifficulty;
|
|
}
|
|
|
|
CurrentLengthIndex = KFGRI.GameLength;
|
|
if(LastLengthIndex != CurrentLengthIndex)
|
|
{
|
|
// don't show the length category in objective mode
|
|
if (KFGRI.GameClass.Name == ObjectiveClassName)
|
|
{
|
|
UpdateLength("");
|
|
}
|
|
else
|
|
{
|
|
UpdateLength(bCustomLength ? Class'KFCommon_LocalizedStrings'.default.CustomString : class'KFCommon_LocalizedStrings'.static.GetLengthString(CurrentLengthIndex));
|
|
}
|
|
LastLengthIndex = CurrentLengthIndex;
|
|
}
|
|
|
|
UpdateServerType( class'KFCommon_LocalizedStrings'.static.GetServerTypeString(int(KFGRI.bCustom)) );
|
|
|
|
if( StartMenu.OptionsComponent != none )
|
|
{
|
|
CurrentPrivacyIndex = StartMenu.OptionsComponent.GetPrivacyIndex();
|
|
if(LastPrivacyIndex != CurrentPrivacyIndex)
|
|
{
|
|
UpdatePrivacy( class'KFCommon_LocalizedStrings'.static.GetPermissionString(CurrentPrivacyIndex) );
|
|
LastPrivacyIndex = CurrentPrivacyIndex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function SetCurrentMapInfo()
|
|
{
|
|
local string CurrentMapName, FriendlyName, MapSource;
|
|
|
|
CurrentMapName = GetPC().WorldInfo.GetMapName(true);
|
|
MapSource = StartMenu.GetMapSource(CurrentMapName);
|
|
FriendlyName = class'KFCommon_LocalizedStrings'.static.GetFriendlyMapName(CurrentMapName);
|
|
UpdateMap(FriendlyName, MapSource);
|
|
}
|
|
|
|
DefaultProperties
|
|
{
|
|
//defaults
|
|
LastPrivacyIndex=255
|
|
LastLengthIndex=255
|
|
LastDifficultyIndex=255
|
|
|
|
ObjectiveClassName=KFGameInfo_Objective
|
|
}
|
|
|