Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
gamedev:service_msgdk [2024/09/08 15:09] – dragonlord | gamedev:service_msgdk [2024/09/08 15:55] (current) – dragonlord |
---|
{{tag>dragonscript utils}} | {{tag>service microsoft gdk xboxlive dragonscript}} |
<WRAP youarehere> | <WRAP youarehere> |
[[:start|Start Page]] >> [[:gamedev|Game Development with the Drag[en]gine]] >> **Microsoft GDK** | [[:start|Start Page]] >> [[:gamedev|Game Development with the Drag[en]gine]] >> [[:gamedev:servicemodules#service_listing|Service Listing]] >> **Microsoft GDK** |
</WRAP> | </WRAP> |
| |
</code> | </code> |
| |
If the provided initialization data is incorrect creating the MSGDK 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 ServiceMsgdk 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() |
<code ds> | <code ds> |
if getBaseGameServices().getMsgdk() != null | if getBaseGameServices().getMsgdk() != null |
// MSGDK is ready to be used | // ServiceMsgdk is ready to be used |
end | end |
</code> | </code> |
===== Manual ===== | ===== Manual ===== |
| |
The MSGDK service can be manually created either by using the ''new'' constructor on the #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceMsgdk,ServiceMsgdk~@# class using #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceEos_1_1InitParameters,ServiceMsgdk.InitParameters~@# setup with the initialization data or by calling ''initMsgdk()'' on #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@#. Using ''initMsgdk'' is preferred if manual creation is required. | The ServiceMsgdk service can be manually created either by using the ''new'' constructor on the #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceMsgdk,ServiceMsgdk~@# class using #@LinkApiDocDEDS2_HTML~classDragengine_1_1Services_1_1ServiceMsgdk_1_1InitParameters,ServiceMsgdk.InitParameters~@# setup with the initialization data or by calling ''initMsgdk()'' on #@LinkApiDocDEDS2_HTML~classDragengine_1_1BaseGameApp,BaseGameApp~@#. Using ''initMsgdk'' is preferred if manual creation is required. |
| |
====== ServiceUser ====== | ====== ServiceUser ====== |