The Platform Interface sits at the heart of the Epic Online Services (EOS) SDK and holds the handles you need to access every other interface and keep them all running. When your application starts up, you can initialize the SDK and get a handle to the Platform Interface. This handle is usable for the lifetime of the SDK.
Initializing the SDK
The first step to using the Epic Online Services (EOS) SDK is to initialize it. During initialization, your code will identify your product and have the opportunity to set up custom memory allocation functions.
Configuring and Creating the SDK
Initialize the EOS SDK by calling EOS_Initialize
with an EOS_InitializeOptions
data structure. Populate the structure as follows:
Property | Value |
---|---|
ApiVersion | EOS_INITIALIZE_API_LATEST |
ProductName | The name of the product using the SDK. The name string must not be empty and supports a maximum of 64 characters in length. |
ProductVersion | The product version of the application using the SDK |
Reserved | NULL |
AllocateMemoryFunction | Your custom malloc function, of type EOS_AllocateMemoryFunc , or NULL This function must return pointers that honor memory alignment. |
ReallocateMemoryFunction | Your custom realloc function, of type EOS_ReallocateMemoryFunc , or NULL |
ReleaseMemoryFunction | Your custom free function, of type EOS_ReleaseMemoryFunc , or NULL |
SystemInitializeOptions | A field for any system-specific initialization. If provided then the information will be passed to the EOS_<system>_InitializeOptions structure, where <system> is the system being initialized. |
OverrideThreadAffinity | A field for any thread affinity initialization that is EOS_Initialize_ThreadAffinity type. The information, if it is provided, will be used when creating any threads during the operation of the EOS SDK. When set to null, the EOS SDK will use a default scheme for determining thread affinity. The EOS_Initialize_ThreadAffinity structure is a set of affinity masks which identify categories of threads to use. |
EOS_Initialize
returns an EOS_EResult
to indicate success or failure. The value will be EOS_Success
if the SDK initialized successfully; otherwise, the value will indicate an error, such as EOS_AlreadyConfigured
. After initializing the SDK, you can create a Platform Interface.
Requesting Access to the Console SDK
The Developer Portal supports console developers who want to use the EOS SDK, including the ability to authenticate users on the PlayStation Network and XBox Live online services. However, developers must first confirm their status with the console platform holders. Each platform holder offers their own procedures for confirmation.
-
Nintendo Switch: Sign into your account on the Nintendo Developer Portal and click through Getting Started > Nintendo Switch Middleware > Unreal Engine: Learn More. Complete and submit the form.
-
PlayStation 4, PlayStation 5: Sign into your account on the PlayStation Partners Portal, go to the PlayStation 4 DevNet, and click through Development > Tools & Middleware > Tools & Middleware directory > Epic Online Services. Click the Confirm Status button.
-
Xbox One and Series X: Contact your Microsoft account representative and ask them to send an email to consoles@unrealengine.com, confirming your status and referencing your email address.
Once you have confirmed your status, you are eligible to receive access to, and support for, the console SDK. Eligibility includes Unreal Engine partners, either under EULA or under a custom license, and non-Unreal Engine partners.
Logging Callbacks
The SDK logs useful information at various levels of verbosity. Registering a callback with EOS_Logging_SetCallback
will allow access to this output. Implement a function of type EOS_LogMessageFunc
to receive the EOS_LogMessage
data structure.
- Category: A string corresponding to the category of the log message (see the EOS_ELogCategory API reference)
- Message: The message itself, as a string.
- Level: The verbosity level of the log message (see the EOS_ELogLevel API reference)
You may use EOS_Logging_SetLogLevel
to adjust logging detail level.
Platform Interface
The Platform Interface provides access to all other EOS SDK interfaces, and keeps them running. Once you have created the platform interface, you can use it to retrieve handles to other interfaces, or tell it to run its per-frame update code, known as ticking.
Creating the Platform Interface
Create the Platform Interface by calling the EOS_Platform_Create
function with an EOS_Platform_Options
structure containing the following information:
Property | Value |
---|---|
ApiVersion | EOS_PLATFORM_OPTIONS_API_LATEST |
Reserved | NULL |
ProductId | The Product ID of the game, provided by Epic Games |
SandboxId | The Sandbox ID of the game, provided by Epic Games |
ClientCredentials | The Client ID and Client Secret pair assigned to the host application Publicly exposed applications, such as the end-user game client, will use different credentials than a trusted game server backend. |
bIsServer | Set to EOS_False if the application is running as a client with a local user. Set to EOS_True for a dedicated game server. |
EncryptionKey | 256-bit Encryption Key for file encryption in hexadecimal format (64 hex chars) |
OverrideCountryCode | The override country code for the logged-in user |
OverrideLocaleCode | The override local code for the logged-in user |
DeploymentId | The Deployment ID of the game, provided by Epic Games |
Flags | Platform creation flags, expressed as a bitwise-or union of EOS_PF_ flags |
CacheDirectory | Absolute path to the folder that is going to be used for caching temporary data |
TickBudgetInMilliseconds | A budget, measured in milliseconds, for EOS_Platform_Tick to do its work. When the budget is met or exceeded (or if no work is available), EOS_Platform_Tick will return. This allows your game to amortize the cost of SDK work across multiple frames in the event that a lot of work is queued for processing. Zero is interpreted as "perform all available work". |
RTCOptions | Pointer to EOS_Platform_RTCOptions structure for using Real Time Communication features. Use NULL to disable the RTC features, such as Voice. |
IntegratedPlatformOptionsContainerHandle | A handle that contains all the options for setting up integrated platforms. When set to NULL, the default integrated platform behavior for the host platform will be used. |
Upon success, EOS_Platform_Create
will return a handle to the Platform Interface, of type EOS_HPlatform
.
In applications that support multiple views, such as editors, you may want to create multiple Platform Interface handles. This is not necessary to support multiple users playing on the same device, such as splitscreen games. The SDK supports multiple Platform Interface instances, each with its own internal state. Other interfaces that you retrieve will be unique to the Platform Interface from which you retrieve them. Do not attempt to initialize more than one instance of the SDK itself.
Using the Platform Interface
Once you have an EOS_HPlatform
handle, you can use it to gain access to the other EOS SDK interfaces through their handle access functions:
Interface | Access Function |
---|---|
Achievements | EOS_Platform_GetAchievementsInterface |
Anti-Cheat | EOS_Platform_GetAntiCheatClientInterface |
EOS_Platform_GetAntiCheatServerInterface | |
Authentication | EOS_Platform_GetAuthInterface |
Connect | EOS_Platform_GetConnectInterface |
Custom Invites | EOS_Platform_GetCustomInvitesInterface |
Ecommerce | EOS_Platform_GetEcomInterface |
Friends | EOS_Platform_GetFriendsInterface |
Leaderboards | EOS_Platform_GetLeaderboardsInterface |
Lobby | EOS_Platform_GetLobbyInterface |
Metrics | EOS_Platform_GetMetricsInterface |
Mods | EOS_Platforms_GetModsInterface |
P2P | EOS_Platform_GetP2PInterface |
Player Data Storage | EOS_Platform_GetPlayerDataStorageInterface |
Presence | EOS_Platform_GetPresenceInterface |
Progression Snapshot | EOS_Platform_GetProgressionSnapshotInterface |
Real Time Communications (RTC) | EOS_Platform_GetRTCInterface |
EOS_Platform_GetRTCAdminInterface | |
Reports | EOS_Platform_GetReportsInterface |
Sanctions | EOS_Platform_GetSanctionsInterface |
Sessions | EOS_Platform_GetSessionsInfoInterface |
Stats | EOS_Platform_GetStatsInterface |
Title Storage | EOS_Platform_GetTitleStorageInterface |
User Info | EOS_Platform_GetUserInfoInterface |
In addition to gaining access to the other interfaces, the Platform Interface keeps them all running. Call EOS_Platform_Tick
from your game's main loop every frame to make sure that asynchronous functions continue updating.
Restarting the App with the Launcher
By passing an EOS_HPlatform
handle into EOS_Platform_CheckForLauncherAndRestart
, EOS will check whether the app was launched through the Launcher. If it wasn't, it will restart the app through the Launcher. This returns an EOS_EResult
with the following codes:
EOS_Success
: The app is being relaunched with the Launcher. The current app process must be terminated as soon as possible to make way for the newly launched process.EOS_NoChange
: If the app was already launched through the Launcher, no additional action needs to be taken.EOS_UnexpectedError
: The LauncherCheck module failed to initialize, or the module tried and failed to restart the app.
This function is only relevant for apps that are published on the store and therefore are already accessible through the Launcher.
Shutting Down the SDK
To close the game, you must release the memory held by the Platform Interface as well as the global state held by the SDK. First, pass your EOS_HPlatform
handle to the EOS_Platform_Release
function to shut it down. After that, you can call EOS_Shutdown
to complete the process and shut down.
Once you call EOS_Shutdown, you will not be able to reinitialize the EOS SDK, and any further calls to it will fail.
Application and Network Status
EOS_Platform_SetApplicationStatus
must be called when the application status changes. The application status can be set using the NewStatus
parameter.
The following application states are defined with the EOS_EApplicationStatus
structure:
EOS_AS_BackgroundConstrained | Background constrained. |
EOS_AS_BackgroundUnconstrained | Background unconstrained. |
EOS_AS_BackgroundSuspended | Background suspended. |
EOS_AS_Foreground | Foreground |
EOS_Platform_GetApplicationStatus
can also be used to get the current application status.
The nature of these application changes will depend on the platform (see the platforms-specific documentation for more information).
EOS_Platform_SetNetworkStatus
must be called when the network status changes. The network status can be set using the NewStatus
parameter.
The following network states are defined with the EOS_ENetworkStatus
structure:
EOS_NS_Disabled | Network cannot be used. |
EOS_NS_Offline | We may not be connected to the internet. The network can still be used, but is expected to probably fail. |
EOS_NS_Online | We think we're connected to the internet. |
EOS_Platform_GetNetworkStatus
can also be used to get the current network status.
The nature of these network changes will depend on the platform (see the platforms-specific documents for more information).
Note: On certain platforms the default network state is EOS_NS_Disabled
and EOS_Platform_SetNetworkStatus
needs to be called when the network is available (see the platform-specific documentation for more information).
Native Platform Integration
The SDK provides functionality to integrate automatically with the native platform. These integrations allow the game to:
-
include platform friends in the EOS overlay’s friends list
-
mirror presence state of the local Epic user with their native platform presence
-
replicate game invites of EOS Lobbies and EOS Sessions with the native platform system
-
enable join-via-presence to the local user’s EOS lobby or session for platform friends
-
control system used to show game invite notifications (Game UI, Platform UI, EOS Overlay)
To configure the platform integrations to use:
-
Call
EOS_IntegratedPlatform_CreateIntegratedPlatformOptionsContainer
to create a new temporary container for the platform options. -
Create the platform specific
EOS_IntegratedPlatform_<Platform>_Options
struct to specify desired options to use. -
Call
EOS_IntegratedPlatformOptionsContainer_Add
to register the options for SDK initialization. -
After a successful call to
EOS_Platform_Create
, release the temporary container by callingEOS_IntegratedPlatformOptionsContainer_Release
.