Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
Holds the base settings for an online game search
Core.Object | +-- Engine.Settings | +-- Engine.OnlineGameSearch
UTGameSearchCommon
Constants Summary |
---|
Inherited Contants from Core.Object |
---|
DegToRad, INDEX_NONE, MaxInt, Pi, RadToDeg |
Inherited Variables from Engine.Settings |
---|
LocalizedSettings, LocalizedSettingsMappings, Properties, PropertyMappings |
Inherited Variables from Core.Object |
---|
Class, HashNext, HashOuterNext, Linker, LinkerIndex, Name, NetIndex, ObjectArchetype, ObjectFlags, ObjectInternalInteger, Outer, StateFrame, VfTableObject |
Enumerations Summary | ||
---|---|---|
EOnlineGameSearchComparisonType OGSCT_Equals, OGSCT_NotEquals, OGSCT_GreaterThan, OGSCT_GreaterThanEquals, OGSCT_LessThan, OGSCT_LessThanEquals | ||
EOnlineGameSearchEntryType OGSET_Property, OGSET_LocalizedSetting, OGSET_ObjectProperty | ||
EOnlineGameSearchSortType OGSSO_Ascending, OGSSO_Descending |
Inherited Enumerations from Engine.Settings |
---|
EOnlineDataAdvertisementType, EPropertyValueMappingType, ESettingsDataType |
Inherited Enumerations from Core.Object |
---|
EAxis, EInputEvent, EInterpCurveMode, EInterpMethodType, ETickingGroup |
Structures Summary | ||
---|---|---|
ClientOnlineGameSearchOrClause OrParams | ||
ClientOnlineGameSearchParameter ComparisonDelegate | ||
NamedObjectProperty ObjectPropertyName, ObjectPropertyValue | ||
OnlineGameSearchORClause OrParams | ||
OnlineGameSearchParameter EntryId, ObjectPropertyName, EntryType, ComparisonType | ||
OnlineGameSearchQuery OrClauses, SortClauses | ||
OnlineGameSearchResult GameSettings, PlatformData, ServerSearchData | ||
OnlineGameSearchSortClause EntryId, ObjectPropertyName, EntryType, SortType | ||
RawOnlineGameSearchOrClause OrParams | ||
RawOnlineGameSearchParameter ComparisonOperator | ||
RawOnlineGameSearchParameterTemplate EntryId, ObjectPropertyName, EntryType, EntryValue, ComparedValue |
Delegates Summary | ||
---|---|---|
![]() | bool | OnComparePropertyValue (string PropertyValue, string ComparedValue)) |
Functions Summary | ||
---|---|---|
![]() | ResetFilters ())) |
Variables Detail |
---|
String that is tacked onto the end of the search query
Whether the search object in question has a dedicated server search in progress or not
Whether or not this is a full server refresh (as compared to just a single server update)
Whether the query is intended for LAN matches or not
Whether the search object in question has a listen server search in progress or not
Whether the search object in question has a list play search in progress or not
Whether the search object in question is in progress or not. This is the union of the other flags
Whether the search should include dedicated servers or not
Whether the search should include listen servers or not
Whether the search should include list play servers or not
Whether to use arbitration or not
A list of clientside filters which are ANDed together
Holds the query to use when filtering servers and they require non-predefined queries
The class to create for each returned result from the search
Max number of queries returned by the matchmaking service
The list of named properties to search on
The total number of list play servers available if a list play search
The query to use for finding matching servers
A list of additional manually defined queries which are ANDed together
If 'FilterQuery'+'RawFilterQueries' exceeds Gamespy's query limit (512 bytes), the excess queries from 'RawFilterQueries' are put here for clientside filtering
The list of servers and their settings that match the search
Platform specific data related to the game search
Enumerations Detail |
---|
OGSCT_Equals, OGSCT_NotEquals, OGSCT_GreaterThan, OGSCT_GreaterThanEquals, OGSCT_LessThan, OGSCT_LessThanEquals};
The type of comparison to perform on the search entry
The type of data to use to fill out an online parameter
Used to indicate which way to sort a result set
Structures Detail |
---|
Matches parameters using a series of OR comparisions
OrParams:The list of parameters to compare and use as an OR clause
var delegate<OnComparePropertyValue> ComparisonDelegate;};
Struct used to define a clientside filter, which is based upon the 'raw' game search parameter
ComparisonDelegate:The delegate which is used to compare the parameter values, this must be set when adding to 'ClientsideFilters'
Used to search for named properties on game setting objects
ObjectPropertyName:The name of the property to search withObjectPropertyValue:The string value to compare against
Matches parameters using a series of OR comparisons
OrParams:The list of parameters to compare and use as an OR clause
var EOnlineGameSearchComparisonType ComparisonType;};
var int EntryId;
var EOnlineGameSearchEntryType EntryType;
var name ObjectPropertyName;
Struct used to describe a search criteria
ComparisonType:The type of comparison to performEntryId:The Id of the property or localized stringEntryType:Whether this parameter to compare against comes from a property or a localized settingObjectPropertyName:The name of the property to search with
var array<OnlineGameSearchORClause> OrClauses;};
var array<OnlineGameSearchSortClause> SortClauses;
Struct used to describe a query
OrClauses:A set of OR clauses that are ANDed together to filter potential serversSortClauses:A list of sort operations used to order the servers that match the filtering
var const OnlineGameSettings GameSettings;};
var const native pointer PlatformData;
var const native pointer ServerSearchData;
Struct used to return matching servers
GameSettings:The settings used by this particular serverPlatformData:Platform/online provider specific data NOTE: It is imperative that the subsystem be called to clean this data up or the PlatformData will leak memory!ServerSearchData:Platform/online provider specific data
var int EntryId;};
var EOnlineGameSearchEntryType EntryType;
var name ObjectPropertyName;
var EOnlineGameSearchSortType SortType;
Struct used to describe the sorting of items
EntryId:The Id of the property or localized stringEntryType:Whether this parameter to compare against comes from a property or a localized settingObjectPropertyName:The name of the property to search withSortType:The type of comparison to perform
Matches raw parameters using a series of OR comparisons
OrParams:The list of raw parameters to compare and use as an OR clause
var string ComparisonOperator;};
Struct used to define a 'raw' game search parameter, which is sent to the Gamespy master server (or evaluated clientside, if the query limit is reached)
ComparisonOperator:NOTE: For the LIKE and NOT LIKE operators, you will need to add a space at the start of this string
var string ComparedValue;};
var int EntryId;
var EOnlineGameSearchEntryType EntryType;
var string EntryValue;
var name ObjectPropertyName;
Template struct used to define a search parameter with manually defined comparision operator and value fields
ComparedValue:The value to be compared against (N.B. For string comparisons, % is a wildcard, e.g. '%test%')EntryId:The Id of the property or localized string to be comparedEntryType:Whether this parameter to compare against comes from a property or a localized settingEntryValue:If set, this string overrides the above variables, and will represent the server property that will be comparedObjectPropertyName:The name of the property to search with
Delegates Detail |
---|
Delegate template for comparing game search parameter values
Functions Detail |
---|
Defaultproperties |
---|
defaultproperties { MaxSearchResults=25 bShouldIncludeListenServers=True GameSettingsClass=Class'Engine.OnlineGameSettings' Name="Default__OnlineGameSearch" ObjectArchetype=Settings'Engine.Default__Settings' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |