Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

Engine.UIDataStore_GameState


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
/**
 * Tracks all data about the current game state, such as players, objectives, time remaining, current scores, etc. Game data stores
 * can be nested, in that a GameState data store can contain references to other game state data stores. This is useful for
 * isolating the weapon data store associated with a particular player, for example.
 * Game data stores are further divided into two components:
 * <p>
 * Game state data providers:	Provides state and static data about a particular instance of a data source, such as a player, weapon,
 * 								pickup, or game objective. Data providers can generally not be referenced directly by the UI. Instead,
 *								they are normally accessed through a game state data store, such as the game state data store associated
 *								with the owning player, or the current game info instance.
 * Game state data stores:		Acts as the first layer between the game and the UI. Each data store contains a collection of game state
 *								data providers, which provide the data for instances of a game object
 *
 * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved.
 */
class UIDataStore_GameState extends UIDataStore
	native(inherit)
	abstract;

delegate OnRefreshDataFieldValue();

/**
 * Called when the current map is being unloaded.  Cleans up any references which would prevent garbage collection.
 *
 * @return	TRUE indicates that this data store should be automatically unregistered when this game session ends.
 */
function bool NotifyGameSessionEnded()
{
	// game state data stores should always be unregistered when the match is over.
	return true;
}

defaultproperties
{
   Name="Default__UIDataStore_GameState"
   ObjectArchetype=UIDataStore'Engine.Default__UIDataStore'
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: tr 31-1-2018 17:18:10.000 - Creation time: sk 18-3-2018 10:01:16.871 - Created with UnCodeX