creating_android_modules.rst 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. .. _doc_creating_android_modules:
  2. Creating Android modules
  3. ========================
  4. Introduction
  5. ------------
  6. Making video games portable is all fine and dandy, until mobile
  7. gaming monetization shows up.
  8. This area is complex, usually a mobile game that monetizes needs
  9. special connections to a server for thingst like:
  10. - Analytics
  11. - In-app purchases
  12. - Receipt validation
  13. - Install tracking
  14. - Ads
  15. - Video ads
  16. - Cross-promotion
  17. - In-game soft & hard currencies
  18. - Promo codes
  19. - A/B testing
  20. - Login
  21. - Cloud saves
  22. - Leaderboards and scores
  23. - User support & feedback
  24. - Posting to Facebook, Twitter, etc.
  25. - Push notifications
  26. On iOS, you can write a C++ module and take advantage of the C++/ObjC
  27. intercommunication.
  28. On Android, interfacing with C++ through JNI (Java Native Interface) isn't as convenient.
  29. Maybe REST?
  30. -----------
  31. Most of these APIs allow communication via REST/JSON APIs. Godot has
  32. great support for HTTP, HTTPS and JSON, so consider this as an option
  33. that works on every platform. Only write the code once and you are set
  34. to go.
  35. Android module
  36. --------------
  37. Writing an Android module is similar to :ref:`doc_custom_modules_in_c++`, but
  38. needs a few more steps.
  39. Make sure you are familiar with building your own :ref:`Android export templates <doc_compiling_for_android>`,
  40. as well as creating :ref:`doc_custom_modules_in_c++`.
  41. config.py
  42. ~~~~~~~~~
  43. In the config.py for the module, some extra functions are provided for
  44. convenience. First, it's often wise to detect if Android is the target platform
  45. being built for and only enable building in this case:
  46. .. code:: python
  47. def can_build(plat):
  48. return plat=="android"
  49. If more than one platform can be built (typical if implementing the
  50. module also for iOS), check manually for Android in the configure
  51. functions for Android (or other platform-specific) code:
  52. .. code:: python
  53. def can_build(plat):
  54. return plat=="android" or plat=="iphone"
  55. def configure(env):
  56. if env['platform'] == 'android':
  57. # android specific code
  58. Java singleton
  59. --------------
  60. An Android module will usually have a singleton class that will load it,
  61. this class inherits from ``Godot.SingletonBase``. Resource identifiers for
  62. any additional resources you have provided for the module will be in the
  63. ``com.godot.game.R`` class, so you'll likely want to import it.
  64. A singleton object template follows:
  65. .. code:: java
  66. package org.godotengine.godot;
  67. import com.godot.game.R;
  68. public class MySingleton extends Godot.SingletonBase {
  69. public int myFunction(String p_str) {
  70. // a function to bind
  71. }
  72. static public Godot.SingletonBase initialize(Activity p_activity) {
  73. return new MySingleton(p_activity);
  74. }
  75. public MySingleton(Activity p_activity) {
  76. //register class name and functions to bind
  77. registerClass("MySingleton", new String[]{"myFunction"});
  78. // you might want to try initializing your singleton here, but android
  79. // threads are weird and this runs in another thread, so you usually have to do
  80. activity.runOnUiThread(new Runnable() {
  81. public void run() {
  82. //useful way to get config info from project.godot
  83. String key = GodotLib.getGlobal("plugin/api_key");
  84. SDK.initializeHere();
  85. }
  86. });
  87. }
  88. // forwarded callbacks you can reimplement, as SDKs often need them
  89. protected void onMainActivityResult(int requestCode, int resultCode, Intent data) {}
  90. protected void onMainPause() {}
  91. protected void onMainResume() {}
  92. protected void onMainDestroy() {}
  93. protected void onGLDrawFrame(GL10 gl) {}
  94. protected void onGLSurfaceChanged(GL10 gl, int width, int height) {} // singletons will always miss first onGLSurfaceChanged call
  95. }
  96. Calling back to Godot from Java is a little more difficult. The instance
  97. ID of the script must be known first, this is obtained by calling
  98. ``get_instance_ID()`` on the script. This returns an integer that can be
  99. passed to Java.
  100. From Java, use the ``calldeferred`` function to communicate back with Godot.
  101. Java will most likely run in a separate thread, so calls are deferred:
  102. .. code:: java
  103. GodotLib.calldeferred(<instanceid>, "<function>", new Object[]{param1,param2,etc});
  104. Add this singleton to the build of the project by adding the following
  105. to config.py:
  106. .. code:: python
  107. def can_build(plat):
  108. return plat=="android" or plat=="iphone"
  109. def configure(env):
  110. if env['platform'] == 'android':
  111. # will copy this to the java folder
  112. env.android_add_java_dir("Directory that contain MySingleton.java")
  113. AndroidManifest
  114. ---------------
  115. Some SDKs need custom values in AndroidManifest.xml. Permissions can be
  116. edited from the godot exporter so there is no need to add those, but
  117. maybe other functionalities are needed.
  118. Create the custom chunk of android manifest and put it inside the
  119. module, add it like this:
  120. .. code:: python
  121. def can_build(plat):
  122. return plat=="android" or plat=="iphone"
  123. def configure(env):
  124. if env['platform'] == 'android':
  125. # will copy this to the java folder
  126. env.android_add_java_dir("Directory that contains MySingelton.java")
  127. env.android_add_to_manifest("AndroidManifestChunk.xml")
  128. Resources
  129. ---------
  130. In order to provide additional resources with your module you have to
  131. add something like this:
  132. .. code:: python
  133. def configure(env):
  134. if env['platform'] == 'android':
  135. # [...]
  136. env.android_add_res_dir("Directory that contains resource subdirectories (values, drawable, etc.)")
  137. Now you can refer to those resources by their id (``R.string.my_string``, and the like)
  138. by importing the ``com.godot.game.R`` class in your Java code.
  139. SDK library
  140. -----------
  141. So, finally it's time to add the SDK library. The library can come in
  142. two flavors, a JAR file or an Android project for ant. JAR is the
  143. easiest to integrate, put it in the module directory and add it:
  144. .. code:: python
  145. def can_build(plat):
  146. return plat=="android" or plat=="iphone"
  147. def configure(env):
  148. if env['platform'] == 'android':
  149. # will copy this to the java folder
  150. env.android_add_java_dir("Directory that contains MySingelton.java")
  151. env.android_add_to_manifest("AndroidManifestChunk.xml")
  152. env.android_add_dependency("compile files('something_local.jar')") # if you have a jar, the path is relative to platform/android/java/gradlew, so it will start with ../../../modules/module_name/
  153. env.android_add_maven_repository("maven url") #add a maven url
  154. env.android_add_dependency("compile 'com.google.android.gms:play-services-ads:8'") #get dependency from maven repository
  155. SDK project
  156. -----------
  157. When this is an Android project, things usually get more complex. Copy
  158. the project folder inside the module directory and configure it:
  159. ::
  160. c:\godot\modules\mymodule\sdk-1.2> android -p . -t 15
  161. As of this writing, Godot uses minsdk 10 and target sdk 15. If this ever
  162. changes, it should be reflected in the manifest template:
  163. `AndroidManifest.xml.template <https://github.com/godotengine/godot/blob/master/platform/android/AndroidManifest.xml.template>`
  164. Then, add the module folder to the project:
  165. .. code:: python
  166. def can_build(plat):
  167. return plat=="android" or plat=="iphone"
  168. def configure(env):
  169. if env['platform'] == 'android':
  170. # will copy this to the java folder
  171. env.android_module_file("MySingleton.java")
  172. env.android_module_manifest("AndroidManifestChunk.xml")
  173. env.android_module_source("sdk-1.2","")
  174. Building
  175. --------
  176. As you probably modify the contents of the module, and modify your .java
  177. inside the module, you need the module to be built with the rest of
  178. Godot, so compile android normally.
  179. ::
  180. c:\godot> scons p=android
  181. This will cause your module to be included, the .jar will be copied to
  182. the java folder, the .java will be copied to the sources folder, etc.
  183. Each time you modify the .java, scons must be called.
  184. Afterwards, continue the steps for compiling android :ref:`doc_compiling_for_android`.
  185. Using the module
  186. ~~~~~~~~~~~~~~~~
  187. To use the module from GDScript, first enable the singleton by adding
  188. the following line to project.godot:
  189. ::
  190. [android]
  191. modules="org/godotengine/godot/MySingleton"
  192. More than one singleton module can be enabled by separating with commas:
  193. ::
  194. [android]
  195. modules="org/godotengine/godot/MySingleton,corg/godotengine/godot/MyOtherSingleton"
  196. Then request the singleton Java object from Globals like this:
  197. ::
  198. # in any file
  199. var singleton = null
  200. func _init():
  201. singleton = Globals.get_singleton("MySingleton")
  202. print(singleton.myFunction("Hello"))
  203. Troubleshooting
  204. ---------------
  205. Godot crashes upon load
  206. ~~~~~~~~~~~~~~~~~~~~~~~
  207. Check ``adb logcat`` for possible problems, then:
  208. - Make sure libgodot_android.so is in the ``libs/armeabi`` folder
  209. - Check that the methods used in the Java singleton only use simple
  210. Java datatypes, more complex ones are not supported.
  211. Future
  212. ------
  213. Godot has an experimental Java API Wrapper that allows to use the
  214. entire Java API from GDScript.
  215. It's simple to use and it's used like this:
  216. ::
  217. class = JavaClassWrapper.wrap(<javaclass as text>)
  218. This is most likely not functional yet, if you want to test it and help
  219. us make it work, contact us through the `developer mailing
  220. list <https://groups.google.com/forum/#!forum/godot-engine>`__.