Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 00081 00082 00083 00084 00085 00086 00087 00088 00089 00090 00091 00092 00093 00094 00095 00096 00097 00098 00099 00100 00101 00102 00103 00104 00105 00106 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. * * Tab page for a user's stats. */ class UTUITabPage_StatsPage extends UTTabPage placeable; /** Reference to the stats datastore. */ var transient UTDataStore_OnlineStats StatsDataStore; /** Refreshing label. */ var transient UILabel RefreshingLabel; /** Reference to the stats interface. */ var transient OnlineStatsInterface StatsInterface; /** Reference to the stats list */ var transient UIList StatsList; /** Callback for when the widget has finished initialized. */ event PostInitialize() { local OnlineSubsystem OnlineSub; Super.PostInitialize(); // Figure out if we have an online subsystem registered OnlineSub = class'GameEngine'.static.GetOnlineSubsystem(); if (OnlineSub != None) { // Grab the game interface to verify the subsystem supports it StatsInterface = OnlineSub.StatsInterface; if(StatsInterface==None) { LogInternal("UTUITabPage_StatsPage::PostInitialize() - Stats Interface is None!"); } } else { LogInternal("UTUITabPage_StatsPage::PostInitialize() - OnlineSub is None!"); } StatsDataStore = UTDataStore_OnlineStats(UTUIScene(GetScene()).FindDataStore('UTLeaderboards')); RefreshingLabel = UILabel(FindChild('lblRefreshing',true)); StatsList = UIList(FindChild('lstStats', true)); } /** * Causes this page to become (or no longer be) the tab control's currently active page. * * @param PlayerIndex the index [into the Engine.GamePlayers array] for the player that wishes to activate this page. * @param bActivate TRUE if this page should become the tab control's active page; FALSE if it is losing the active status. * @param bTakeFocus specify TRUE to give this panel focus once it's active (only relevant if bActivate = true) * * @return TRUE if this page successfully changed its active state; FALSE otherwise. */ event bool ActivatePage( int PlayerIndex, bool bActivate, optional bool bTakeFocus=true ) { local bool bSuccess; bSuccess = Super.ActivatePage(PlayerIndex, bActivate, bTakeFocus); if (bSuccess && bActivate && bTakeFocus) { StatsList.SetFocus(none); } return bSuccess; } /** * Called by the data store when the stats read has completed * * @param bWasSuccessful whether the stats read was successful or not */ function OnStatsReadComplete(bool bWasSuccessful) { local OnlineSubsystem OnlineSub; //We can now remove the "Refreshing" label RefreshingLabel.SetVisibility(false); OnlineSub = class'GameEngine'.static.GetOnlineSubsystem(); if ( OnlineSub != None ) { // Clear the read complete delegate OnlineSub.StatsInterface.ClearReadOnlineStatsCompleteDelegate(OnStatsReadComplete); } } /** Starts the stats read for this page. */ function ReadStats(); defaultproperties { Begin Object Class=UIComp_Event Name=WidgetEventComponent ObjName=WidgetEventComponent Archetype=UIComp_Event'UTGame.Default__UTTabPage:WidgetEventComponent' ObjectArchetype=UIComp_Event'UTGame.Default__UTTabPage:WidgetEventComponent' End Object EventProvider=WidgetEventComponent Name="Default__UTUITabPage_StatsPage" ObjectArchetype=UTTabPage'UTGame.Default__UTTabPage' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |