User Tools

Site Tools


gamedev:service_eossdk

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
gamedev:service_eossdk [2024/09/08 14:50] – created dragonlordgamedev:service_eossdk [2024/09/08 15:55] (current) dragonlord
Line 1: Line 1:
-{{tag>dragonscript utils}}+{{tag>service epic eos dragonscript}}
 <WRAP youarehere> <WRAP youarehere>
-[[:start|Start Page]] >> [[:gamedev|Game Development with the Drag[en]gine]] >> **EPIC EOS SDK**+[[:start|Start Page]] >> [[:gamedev|Game Development with the Drag[en]gine]] >> [[:gamedev:servicemodules#service_listing|Service Listing]] >> **EPIC EOS SDK**
 </WRAP> </WRAP>
  
Line 27: Line 27:
 ===== Automatic ===== ===== Automatic =====
  
-The #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@# class automatically creates the EOSSDK service instance if the following values are present in the ''configuration.ptree.xml'' file:+The #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@# class automatically creates the ServiceEos service instance if the following values are present in the ''configuration.ptree.xml'' file:
 ^ Tag ^ Value ^ ^ Tag ^ Value ^
 | eos.productName | Game product name | | eos.productName | Game product name |
Line 53: Line 53:
 </code> </code>
  
-If the provided initialization data is incorrect creating the EOSSDK service fails. This does not fail starting the application. Wait until all the services have finished initializing:+If the provided initialization data is incorrect creating the ServiceEos service fails. This does not fail starting the application. Wait until all the services have finished initializing:
 <code ds> <code ds>
 func void initGame() func void initGame()
Line 72: Line 72:
 <code ds> <code ds>
    if getBaseGameServices().getEos() != null    if getBaseGameServices().getEos() != null
-      // EOSSDK is ready to be used+      // ServiceEos is ready to be used
    end    end
 </code> </code>
Line 78: Line 78:
 ===== Manual ===== ===== Manual =====
  
-The EOSSDK service can be manually created either by using the ''new'' constructor on the #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceEos,ServiceEos~@# class using #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceEos_1_1InitParameters,ServiceEos.InitParameters~@# setup with the initialization data or by calling ''initEos()'' on #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@#. Using ''initEos'' is preferred if manual creation is required.+The SteamEos service can be manually created either by using the ''new'' constructor on the #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceEos,ServiceEos~@# class using #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceEos_1_1InitParameters,ServiceEos.InitParameters~@# setup with the initialization data or by calling ''initEos()'' on #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@#. Using ''initEos'' is preferred if manual creation is required.
  
 ====== ServiceUser ====== ====== ServiceUser ======
Line 100: Line 100:
 ===== Authentication Provider ===== ===== Authentication Provider =====
  
-The service module provides ''Authentification Provider'' support to other modules. The provider has the unique identifier ''epic''. This feature allows other service modules to link accounts to the logged in Epic Games user. For this to work you have to call ''getAuthToken()'' to asynchronously retrieve an authentification token. Once received in the listener this token can be used on other service modules supporting linking with Epic Games user accounts.+The service module provides ''Authentication Provider'' support to other modules. The provider has the unique identifier ''epic''. This feature allows other service modules to link accounts to the logged in Epic Games user. For this to work you have to call ''getAuthToken()'' to asynchronously retrieve an authentication token. Once received in the listener this token can be used on other service modules supporting linking with Epic Games user accounts.
  
 ====== ServiceStats ====== ====== ServiceStats ======
gamedev/service_eossdk.1725807032.txt.gz · Last modified: 2024/09/08 14:50 by dragonlord