User Tools

Site Tools


gamedev:service_steamsdk

Differences

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

Link to this comparison view

Next revision
Previous revision
gamedev:service_steamsdk [2024/09/08 14:12] – created dragonlordgamedev:service_steamsdk [2024/09/08 15:58] (current) dragonlord
Line 1: Line 1:
-{{tag>dragonscript utils}}+{{tag>service steam steamworks dragonscript}}
 <WRAP youarehere> <WRAP youarehere>
-[[:start|Start Page]] >> [[:gamedev|Game Development with the Drag[en]gine]] >> **Steam SDK**+[[:start|Start Page]] >> [[:gamedev|Game Development with the Drag[en]gine]] >> [[:gamedev:servicemodules#service_listing|Service Listing]] >> **Steam SDK**
 </WRAP> </WRAP>
  
Line 14: Line 14:
   * #@LinkApiDocDEDS2_HTML~interfaceDragengine_1_1Services_1_1Stats_1_1ServiceStats,ServiceStats~@#   * #@LinkApiDocDEDS2_HTML~interfaceDragengine_1_1Services_1_1Stats_1_1ServiceStats,ServiceStats~@#
  
-===== Initialization =====+====== Initialization ======
  
-==== Automatic ====+===== Automatic =====
  
 The #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@# class automatically creates the SteamSDK 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 SteamSDK service instance if the following values are present in the ''configuration.ptree.xml'' file:
Line 34: Line 34:
 </code> </code>
  
-If Steam is not running creating the SteamSDK service fails. This does not fail starting the application. Check first if the SteamSDK service has been created using:+If Steam is not running creating the SteamSDK service fails. This does not fail starting the application. Wait until all the services have finished initializing:
 <code ds> <code ds>
-   if BaseGameApp.getApp().getBaseGameServices().getSteam() != null +func void initGame() 
-      // SteamSDK is ready to be used+   // super call starts automatic initialize services 
 +   super.initGame() 
 +    
 +   // add listener called once all services have finished initialize, no matter if successfull or not 
 +   getBaseGameServices().setActionInitialized(BlockActionListener.new(block ActionEvent event 
 +       // services have initialized 
 +       launchApplication() 
 +   end)) 
 +    
 +   // you can now do other things in the mean time like showing startup logos or videos 
 +end    
 +</code> 
 + 
 +You can then check first if the SteamSDK service has been created using: 
 +<code ds> 
 +   if getBaseGameServices().getSteam() != null 
 +      // ServiceSteam is ready to be used
    end    end
 </code> </code>
  
-==== Manual ====+===== Manual =====
  
 The SteamSDK service can be manually created either by using the ''new'' constructor on the #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceSteam,ServiceSteam~@# class using #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceSteam_1_1InitParameters,ServiceSteam.InitParameters~@# setup with the initialization data or by calling ''initSteam()'' on #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@#. Using ''initSteam'' is preferred if manual creation is required. The SteamSDK service can be manually created either by using the ''new'' constructor on the #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceSteam,ServiceSteam~@# class using #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceSteam_1_1InitParameters,ServiceSteam.InitParameters~@# setup with the initialization data or by calling ''initSteam()'' on #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@#. Using ''initSteam'' is preferred if manual creation is required.
  
-===== Functionality =====+====== ServiceUser ====== 
 + 
 +The service module provides user management support. Supported is only retrieving user information and user resources. 
 + 
 +===== Login =====
  
-==== ServiceUser ====+The user can not be logged in or out since a Steam user is always logged in as soon as Steam is running.
  
-The service module provides user management support. Supported is only retrieving user information and user resources. The user can not be logged in or out since a Steam user is always logged in as soon as Steam is running.+===== Authentication Provider =====
  
-The service module provides also ''Authentification Provider'' support to other modules. The provider has the unique identifier ''steam''. This feature allows other service modules to link accounts to the logged in Steam 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 Steam user accounts.+The service module provides also ''Authentication Provider'' support to other modules. The provider has the unique identifier ''steam''. This feature allows other service modules to link accounts to the logged in Steam 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 Steam user accounts.
  
-==== ServiceStats ====+====== ServiceStats ======
  
 The service module provides achievement and statistics support. Use ''setStatsAndAchievements()'' to set the value of individual statistics. Once the requirements are fulfilled server side the respective achievements will be unlocked. You can also use the same function to manually unlock achievements. Use ''getStatsAndAchievements()'' to retrieve the current stats and achievements state. The service module provides achievement and statistics support. Use ''setStatsAndAchievements()'' to set the value of individual statistics. Once the requirements are fulfilled server side the respective achievements will be unlocked. You can also use the same function to manually unlock achievements. Use ''getStatsAndAchievements()'' to retrieve the current stats and achievements state.
  
gamedev/service_steamsdk.1725804739.txt.gz · Last modified: 2024/09/08 14:12 by dragonlord