I'm a doctor, not a mechanic
UE3:OnlineGameSearch (UT3)
Contents
- 1 Properties
- 1.1 AdditionalSearchCriteria
- 1.2 bIsDedicatedServerSearchInProgress
- 1.3 bIsLanQuery
- 1.4 bIsListenServerSearchInProgress
- 1.5 bIsListPlaySearchInProgress
- 1.6 bIsSearchInProgress
- 1.7 bShouldIncludeDedicatedServers
- 1.8 bShouldIncludeListenServers
- 1.9 bShouldIncludeListPlayServers
- 1.10 bUsesArbitration
- 1.11 FilterQuery
- 1.12 GameSettingsClass
- 1.13 MaxSearchResults
- 1.14 NamedProperties
- 1.15 NumListPlayServersAvailable
- 1.16 Query
- 1.17 Results
- 2 Enums
- 3 Structs
- Package:
- Engine
- Direct subclass:
- UTGameSearchCommon
- This class in other games:
- UDK
This is an auto-generated page and may need human attention. Please remove the {{autogenerated}} tag if the page seems reasonably complete or replace it with the {{expand}} tag if the page is not yet complete. |
Holds the base settings for an online game search
Properties
AdditionalSearchCriteria
Type: string
String that is tacked onto the end of the search query
bIsDedicatedServerSearchInProgress
Type: bool
Modifiers: const
Whether the search object in question has a dedicated server search in progress or not
bIsLanQuery
Type: bool
Modifiers: databinding
Whether the query is intended for LAN matches or not
bIsListenServerSearchInProgress
Type: bool
Modifiers: const
Whether the search object in question has a listen server search in progress or not
bIsListPlaySearchInProgress
Type: bool
Modifiers: const
Whether the search object in question has a list play search in progress or not
bIsSearchInProgress
Type: bool
Modifiers: const
Whether the search object in question is in progress or not. This is the union of the other flags
bShouldIncludeDedicatedServers
Type: bool
Modifiers: databinding
Whether the search should include dedicated servers or not
bShouldIncludeListenServers
Type: bool
Modifiers: databinding
Whether the search should include listen servers or not
Default value: True
bShouldIncludeListPlayServers
Type: bool
Modifiers: databinding
Whether the search should include list play servers or not
bUsesArbitration
Type: bool
Modifiers: databinding
Whether to use arbitration or not
FilterQuery
Type: OnlineGameSearchQuery
Modifiers: const
Holds the query to use when filtering servers and they require non-predefined queries
GameSettingsClass
Type: class<OnlineGameSettings>
The class to create for each returned result from the search
Default value: Class'Engine.OnlineGameSettings'
MaxSearchResults
Type: int
Max number of queries returned by the matchmaking service
Default value: 25
NamedProperties
Type: array<NamedObjectProperty>
The list of named properties to search on
NumListPlayServersAvailable
Type: int
Modifiers: databinding
The total number of list play servers available if a list play search
Query
Type: Settings.LocalizedStringSetting
The query to use for finding matching servers
Results
Type: array<OnlineGameSearchResult>
Modifiers: const
The list of servers and their settings that match the search
Enums
EOnlineGameSearchComparisonType
The type of comparison to perform on the search entry
- OGSCT_Equals
- OGSCT_NotEquals
- OGSCT_GreaterThan
- OGSCT_GreaterThanEquals
- OGSCT_LessThan
- OGSCT_LessThanEquals
EOnlineGameSearchEntryType
The type of data to use to fill out an online parameter
- OGSET_Property
- A property is used to filter with
- OGSET_LocalizedSetting
- A localized setting is used to filter with
- OGSET_ObjectProperty
- A property on the game settings object to filter with
EOnlineGameSearchSortType
Used to indicate which way to sort a result set
- OGSSO_Ascending
- OGSSO_Descending
Structs
NamedObjectProperty
Modifiers: native
Used to search for named properties on game setting objects
- name ObjectPropertyName
- The name of the property to search with
- string ObjectPropertyValue
- The string value to compare against
OnlineGameSearchORClause
Modifiers: native
Matches parameters using a series of OR comparisons
- array<OnlineGameSearchParameter> OrParams
- The list of parameters to compare and use as an OR clause
OnlineGameSearchParameter
Modifiers: native
Struct used to describe a search criteria
- int EntryId
- The Id of the property or localized string
- name ObjectPropertyName
- The name of the property to search with
- EOnlineGameSearchEntryType EntryType
- Whether this parameter to compare against comes from a property or a localized setting
- EOnlineGameSearchComparisonType ComparisonType
- The type of comparison to perform
OnlineGameSearchQuery
Modifiers: native
Struct used to describe a query
- array<OnlineGameSearchORClause> OrClauses
- A set of OR clauses that are ANDed together to filter potential servers
- array<OnlineGameSearchSortClause> SortClauses
- A list of sort operations used to order the servers that match the filtering
OnlineGameSearchResult
Modifiers: native
Struct used to return matching servers
- OnlineGameSettings GameSettings
- The settings used by this particular server
- pointer{void} PlatformData
- 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!
OnlineGameSearchSortClause
Modifiers: native
Struct used to describe the sorting of items
- int EntryId
- The Id of the property or localized string
- name ObjectPropertyName
- The name of the property to search with
- EOnlineGameSearchEntryType EntryType
- Whether this parameter to compare against comes from a property or a localized setting
- EOnlineGameSearchSortType SortType
- The type of comparison to perform