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

Engine.OnlineStatsWrite

Extends
OnlineStats
Modifiers
native abstract

Stats class that accumulates the stats data before submitting it to the online subsytem for storage.

Core.Object
|   
+-- Engine.OnlineStats
   |   
   +-- Engine.OnlineStatsWrite

Direct Known Subclasses:

UTLeaderboardWriteBase

Constants Summary
Inherited Contants from Core.Object
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg

Variables Summary
array<int>ArbitratedViewIds
array<SettingsProperty>Properties
intRatingId
array<StringIdToStringMapping>StatMappings
array<int>ViewIds
Inherited Variables from Engine.OnlineStats
ViewIdMappings
Inherited Variables from Core.Object
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject

Enumerations Summary
Inherited Enumerations from Core.Object
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup

Structures Summary
Inherited Structures from Core.Object
Box, BoxSphereBounds, Color, Cylinder, double, DynamicMap_Mirror, Guid, IndirectArray_Mirror, InterpCurveFloat, InterpCurvePointFloat, InterpCurvePointQuat, InterpCurvePointTwoVectors, InterpCurvePointVector, InterpCurvePointVector2D, InterpCurveQuat, InterpCurveTwoVectors, InterpCurveVector, InterpCurveVector2D, IntPoint, LinearColor, Map_Mirror, Matrix, MultiMap_Mirror, Plane, pointer, Quat, qword, RawDistribution, RenderCommandFence, Rotator, TextureMipBulkData_Mirror, ThreadSafeCounter, TPOV, TwoVectors, UntypedBulkData_Mirror, Vector, Vector2D, Vector4

Delegates Summary
delegate OnStatsWriteComplete ()

Functions Summary
function DecrementFloatStat (int StatId, ptional float DecBy = 1.0)
function DecrementIntStat (int StatId, ptional int DecBy = 1)
functionbool GetStatId (name StatName, ut int StatId)
functionname GetStatName (int StatId)
function IncrementFloatStat (int StatId, ptional float IncBy = 1.0)
function IncrementIntStat (int StatId, ptional int IncBy = 1)
function SetFloatStat (int StatId, loat Value)
function SetIntStat (int StatId, nt Value)
Inherited Functions from Engine.OnlineStats
GetViewId, GetViewName
Inherited Functions from Core.Object
!, !=, $, $=, %, &, &&, *, **, *=, +, ++, +=, -, --, -=, / , /=, <, <<, <=, ==, >, >=, >>, >>>, @, @=, Abs, Acos, Asc, Asin, Atan, BeginState, ByteToFloat, Caps, Chr, Clamp, ClampLength, ClampRotAxis, ClassIsChildOf, ClearConfig, ClockwiseFrom, ColorToLinearColor, ContinuedState, Cos, Cross, Disable, Dot, DumpStateStack, DynamicLoadObject, Enable, EndState, Exp, FClamp, FCubicInterp, FindDeltaAngle, FindObject, FInterpEaseIn, FInterpEaseInOut, FInterpEaseOut, FInterpTo, FloatToByte, FMax, FMin, FPctByRange, FRand, GetAngularDegreesFromRadians, GetAngularDistance, GetAngularFromDotDist, GetAxes, GetDotDistance, GetEnum, GetFuncName, GetHeadingAngle, GetNetFuncName, GetPackageName, GetPerObjectConfigSections, GetRangePctByValue, GetRangeValueByPct, GetSpecialValue, GetStateName, GetUnAxes, GotoState, InStr, IsA, IsChildState, IsInState, IsNetScript, IsPendingKill, IsUTracing, IsZero, JoinArray, Left, Len, Lerp, Localize, Locs, Loge, LogInternal, MakeColor, MakeLinearColor, Max, Mid, Min, MirrorVectorByNormal, Normal, Normalize, NormalizeRotAxis, OrthoRotation, ParseStringIntoArray, PathName, PausedState, PointDistToLine, PointDistToPlane, PointInBox, PoppedState, PopState, ProjectOnTo, PushedState, PushState, QuatDot, QuatFindBetween, QuatFromAxisAndAngle, QuatFromRotator, QuatInvert, QuatProduct, QuatRotateVector, QuatSlerp, QuatToRotator, Rand, RandRange, RDiff, Repl, Right, RInterpTo, RLerp, RotRand, Round, RSize, RSmerp, SaveConfig, SClampRotAxis, ScriptTrace, SetSpecialValue, SetUTracing, Sin, Split, Sqrt, Square, StaticClearConfig, StaticSaveConfig, Tan, TimeStamp, ToHex, TransformVectorByRotation, UnwindHeading, vect2d, VInterpTo, VLerp, VRand, VSize, VSize2D, VSizeSq, VSizeSq2D, VSmerp, WarnInternal, ^, ^^, |, ||, ~, ~=


Variables Detail

ArbitratedViewIds Source code

var const array<int> ArbitratedViewIds;
This array contains the list of views to write the properties to for arbitrated matches

Properties Source code

var const array<SettingsProperty> Properties;
The array of properties to publish to the stats view

RatingId Source code

var const int RatingId;
This is the property id that is used to rate on

StatMappings Source code

var const array<StringIdToStringMapping> StatMappings;
Maps the stat's column num to the human readable stat name

ViewIds Source code

var const array<int> ViewIds;
This array contains the list of views to write the properties to


Delegates Detail

OnStatsWriteComplete Source code

delegate OnStatsWriteComplete ( )
Delegate used to notify the caller when stats write has completed


Functions Detail

DecrementFloatStat Source code

native function DecrementFloatStat ( int StatId,optional float DecBy = 1.0 )
Decrements a stat of type SDT_Float by the value specified. Does nothing if the stat is not of the right type.
@param StatId the stat to decrement
@param DecBy the value to decrement by

DecrementIntStat Source code

native function DecrementIntStat ( int StatId,optional int DecBy = 1 )
Decrements a stat of type SDT_Int by the value specified. Does nothing if the stat is not of the right type.
@param StatId the stat to decrement
@param DecBy the value to decrement by

GetStatId Source code

native function bool GetStatId ( name StatName,out int StatId )
Searches the stat mappings to find the stat id that matches the name
@param StatName the name of the stat being searched for
@param StatId the out value that gets the id
@return true if it was found, false otherwise

GetStatName Source code

native function name GetStatName ( int StatId )
Searches the stat mappings to find human readable name for the stat id
@param StatId the id of the stats to find the name for
@return true if it was found, false otherwise

IncrementFloatStat Source code

native function IncrementFloatStat ( int StatId,optional float IncBy = 1.0 )
Increments a stat of type SDT_Float by the value specified. Does nothing if the stat is not of the right type.
@param StatId the stat to increment
@param IncBy the value to increment by

IncrementIntStat Source code

native function IncrementIntStat ( int StatId,optional int IncBy = 1 )
Increments a stat of type SDT_Int by the value specified. Does nothing if the stat is not of the right type.
@param StatId the stat to increment
@param IncBy the value to increment by

SetFloatStat Source code

native function SetFloatStat ( int StatId,float Value )
Sets a stat of type SDT_Float to the value specified. Does nothing if the stat is not of the right type.
@param StatId the stat to change the value of
@param Value the new value to assign to the stat

SetIntStat Source code

native function SetIntStat ( int StatId,int Value )
Sets a stat of type SDT_Int to the value specified. Does nothing if the stat is not of the right type.
@param StatId the stat to change the value of
@param Value the new value to assign to the stat


Defaultproperties

defaultproperties
{
   Name="Default__OnlineStatsWrite"
   ObjectArchetype=OnlineStats'Engine.Default__OnlineStats'
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Creation time: sk 18-3-2018 10:00:40.266 - Created with UnCodeX