java_godot_lib_jni.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /*************************************************************************/
  2. /* java_godot_lib_jni.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "java_godot_lib_jni.h"
  31. #include "java_godot_io_wrapper.h"
  32. #include "java_godot_wrapper.h"
  33. #include "android/asset_manager_jni.h"
  34. #include "android_input_handler.h"
  35. #include "api/java_class_wrapper.h"
  36. #include "api/jni_singleton.h"
  37. #include "core/config/engine.h"
  38. #include "core/config/project_settings.h"
  39. #include "core/input/input.h"
  40. #include "dir_access_jandroid.h"
  41. #include "display_server_android.h"
  42. #include "file_access_android.h"
  43. #include "file_access_filesystem_jandroid.h"
  44. #include "jni_utils.h"
  45. #include "main/main.h"
  46. #include "net_socket_android.h"
  47. #include "os_android.h"
  48. #include "string_android.h"
  49. #include "thread_jandroid.h"
  50. #include "tts_android.h"
  51. #include <android/input.h>
  52. #include <unistd.h>
  53. #include <android/native_window_jni.h>
  54. static JavaClassWrapper *java_class_wrapper = nullptr;
  55. static OS_Android *os_android = nullptr;
  56. static AndroidInputHandler *input_handler = nullptr;
  57. static GodotJavaWrapper *godot_java = nullptr;
  58. static GodotIOJavaWrapper *godot_io_java = nullptr;
  59. static SafeNumeric<int> step; // Shared between UI and render threads
  60. static Size2 new_size;
  61. static Vector3 accelerometer;
  62. static Vector3 gravity;
  63. static Vector3 magnetometer;
  64. static Vector3 gyroscope;
  65. extern "C" {
  66. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_setVirtualKeyboardHeight(JNIEnv *env, jclass clazz, jint p_height) {
  67. if (godot_io_java) {
  68. godot_io_java->set_vk_height(p_height);
  69. }
  70. }
  71. JNIEXPORT jboolean JNICALL Java_org_godotengine_godot_GodotLib_initialize(JNIEnv *env, jclass clazz, jobject p_activity, jobject p_godot_instance, jobject p_asset_manager, jobject p_godot_io, jobject p_net_utils, jobject p_directory_access_handler, jobject p_file_access_handler, jboolean p_use_apk_expansion, jobject p_godot_tts) {
  72. JavaVM *jvm;
  73. env->GetJavaVM(&jvm);
  74. // create our wrapper classes
  75. godot_java = new GodotJavaWrapper(env, p_activity, p_godot_instance);
  76. godot_io_java = new GodotIOJavaWrapper(env, p_godot_io);
  77. init_thread_jandroid(jvm, env);
  78. jobject amgr = env->NewGlobalRef(p_asset_manager);
  79. FileAccessAndroid::asset_manager = AAssetManager_fromJava(env, amgr);
  80. DirAccessJAndroid::setup(p_directory_access_handler);
  81. FileAccessFilesystemJAndroid::setup(p_file_access_handler);
  82. NetSocketAndroid::setup(p_net_utils);
  83. TTS_Android::setup(p_godot_tts);
  84. os_android = new OS_Android(godot_java, godot_io_java, p_use_apk_expansion);
  85. return godot_java->on_video_init(env);
  86. }
  87. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_ondestroy(JNIEnv *env, jclass clazz) {
  88. // lets cleanup
  89. if (java_class_wrapper) {
  90. memdelete(java_class_wrapper);
  91. }
  92. if (godot_io_java) {
  93. delete godot_io_java;
  94. }
  95. if (godot_java) {
  96. delete godot_java;
  97. }
  98. if (input_handler) {
  99. delete input_handler;
  100. }
  101. if (os_android) {
  102. os_android->main_loop_end();
  103. delete os_android;
  104. }
  105. }
  106. JNIEXPORT jboolean JNICALL Java_org_godotengine_godot_GodotLib_setup(JNIEnv *env, jclass clazz, jobjectArray p_cmdline) {
  107. setup_android_thread();
  108. const char **cmdline = nullptr;
  109. jstring *j_cmdline = nullptr;
  110. int cmdlen = 0;
  111. if (p_cmdline) {
  112. cmdlen = env->GetArrayLength(p_cmdline);
  113. if (cmdlen) {
  114. cmdline = (const char **)memalloc((cmdlen + 1) * sizeof(const char *));
  115. ERR_FAIL_NULL_V_MSG(cmdline, false, "Out of memory.");
  116. cmdline[cmdlen] = nullptr;
  117. j_cmdline = (jstring *)memalloc(cmdlen * sizeof(jstring));
  118. ERR_FAIL_NULL_V_MSG(j_cmdline, false, "Out of memory.");
  119. for (int i = 0; i < cmdlen; i++) {
  120. jstring string = (jstring)env->GetObjectArrayElement(p_cmdline, i);
  121. const char *rawString = env->GetStringUTFChars(string, nullptr);
  122. cmdline[i] = rawString;
  123. j_cmdline[i] = string;
  124. }
  125. }
  126. }
  127. Error err = Main::setup(OS_Android::ANDROID_EXEC_PATH, cmdlen, (char **)cmdline, false);
  128. if (cmdline) {
  129. if (j_cmdline) {
  130. for (int i = 0; i < cmdlen; ++i) {
  131. env->ReleaseStringUTFChars(j_cmdline[i], cmdline[i]);
  132. }
  133. memfree(j_cmdline);
  134. }
  135. memfree(cmdline);
  136. }
  137. // Note: --help and --version return ERR_HELP, but this should be translated to 0 if exit codes are propagated.
  138. if (err != OK) {
  139. return false;
  140. }
  141. java_class_wrapper = memnew(JavaClassWrapper(godot_java->get_activity()));
  142. GDREGISTER_CLASS(JNISingleton);
  143. return true;
  144. }
  145. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_resize(JNIEnv *env, jclass clazz, jobject p_surface, jint p_width, jint p_height) {
  146. if (os_android) {
  147. os_android->set_display_size(Size2i(p_width, p_height));
  148. // No need to reset the surface during startup
  149. if (step.get() > 0) {
  150. if (p_surface) {
  151. ANativeWindow *native_window = ANativeWindow_fromSurface(env, p_surface);
  152. os_android->set_native_window(native_window);
  153. DisplayServerAndroid::get_singleton()->reset_window();
  154. DisplayServerAndroid::get_singleton()->notify_surface_changed(p_width, p_height);
  155. }
  156. }
  157. }
  158. }
  159. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_newcontext(JNIEnv *env, jclass clazz, jobject p_surface) {
  160. if (os_android) {
  161. if (step.get() == 0) {
  162. // During startup
  163. if (p_surface) {
  164. ANativeWindow *native_window = ANativeWindow_fromSurface(env, p_surface);
  165. os_android->set_native_window(native_window);
  166. }
  167. } else {
  168. // Rendering context recreated because it was lost; restart app to let it reload everything
  169. step.set(-1); // Ensure no further steps are attempted and no further events are sent
  170. os_android->main_loop_end();
  171. godot_java->restart(env);
  172. }
  173. }
  174. }
  175. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_back(JNIEnv *env, jclass clazz) {
  176. if (step.get() == 0) {
  177. return;
  178. }
  179. if (DisplayServerAndroid *dsa = Object::cast_to<DisplayServerAndroid>(DisplayServer::get_singleton())) {
  180. dsa->send_window_event(DisplayServer::WINDOW_EVENT_GO_BACK_REQUEST);
  181. }
  182. }
  183. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_ttsCallback(JNIEnv *env, jclass clazz, jint event, jint id, jint pos) {
  184. TTS_Android::_java_utterance_callback(event, id, pos);
  185. }
  186. JNIEXPORT jboolean JNICALL Java_org_godotengine_godot_GodotLib_step(JNIEnv *env, jclass clazz) {
  187. if (step.get() == -1) {
  188. return true;
  189. }
  190. if (step.get() == 0) {
  191. // Since Godot is initialized on the UI thread, main_thread_id was set to that thread's id,
  192. // but for Godot purposes, the main thread is the one running the game loop
  193. Main::setup2(Thread::get_caller_id());
  194. input_handler = new AndroidInputHandler();
  195. step.increment();
  196. return true;
  197. }
  198. if (step.get() == 1) {
  199. if (!Main::start()) {
  200. return true; // should exit instead and print the error
  201. }
  202. godot_java->on_godot_setup_completed(env);
  203. os_android->main_loop_begin();
  204. godot_java->on_godot_main_loop_started(env);
  205. step.increment();
  206. }
  207. DisplayServerAndroid::get_singleton()->process_accelerometer(accelerometer);
  208. DisplayServerAndroid::get_singleton()->process_gravity(gravity);
  209. DisplayServerAndroid::get_singleton()->process_magnetometer(magnetometer);
  210. DisplayServerAndroid::get_singleton()->process_gyroscope(gyroscope);
  211. bool should_swap_buffers = false;
  212. if (os_android->main_loop_iterate(&should_swap_buffers)) {
  213. godot_java->force_quit(env);
  214. }
  215. return should_swap_buffers;
  216. }
  217. // Called on the UI thread
  218. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_dispatchMouseEvent(JNIEnv *env, jclass clazz, jint p_event_type, jint p_button_mask, jfloat p_x, jfloat p_y, jfloat p_delta_x, jfloat p_delta_y, jboolean p_double_click, jboolean p_source_mouse_relative) {
  219. if (step.get() <= 0) {
  220. return;
  221. }
  222. input_handler->process_mouse_event(p_event_type, p_button_mask, Point2(p_x, p_y), Vector2(p_delta_x, p_delta_y), p_double_click, p_source_mouse_relative);
  223. }
  224. // Called on the UI thread
  225. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_dispatchTouchEvent(JNIEnv *env, jclass clazz, jint ev, jint pointer, jint pointer_count, jfloatArray position) {
  226. if (step.get() <= 0) {
  227. return;
  228. }
  229. Vector<AndroidInputHandler::TouchPos> points;
  230. for (int i = 0; i < pointer_count; i++) {
  231. jfloat p[3];
  232. env->GetFloatArrayRegion(position, i * 3, 3, p);
  233. AndroidInputHandler::TouchPos tp;
  234. tp.pos = Point2(p[1], p[2]);
  235. tp.id = (int)p[0];
  236. points.push_back(tp);
  237. }
  238. input_handler->process_touch_event(ev, pointer, points);
  239. }
  240. // Called on the UI thread
  241. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_magnify(JNIEnv *env, jclass clazz, jfloat p_x, jfloat p_y, jfloat p_factor) {
  242. if (step.get() <= 0) {
  243. return;
  244. }
  245. input_handler->process_magnify(Point2(p_x, p_y), p_factor);
  246. }
  247. // Called on the UI thread
  248. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_pan(JNIEnv *env, jclass clazz, jfloat p_x, jfloat p_y, jfloat p_delta_x, jfloat p_delta_y) {
  249. if (step.get() <= 0) {
  250. return;
  251. }
  252. input_handler->process_pan(Point2(p_x, p_y), Vector2(p_delta_x, p_delta_y));
  253. }
  254. // Called on the UI thread
  255. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_joybutton(JNIEnv *env, jclass clazz, jint p_device, jint p_button, jboolean p_pressed) {
  256. if (step.get() <= 0) {
  257. return;
  258. }
  259. AndroidInputHandler::JoypadEvent jevent;
  260. jevent.device = p_device;
  261. jevent.type = AndroidInputHandler::JOY_EVENT_BUTTON;
  262. jevent.index = p_button;
  263. jevent.pressed = p_pressed;
  264. input_handler->process_joy_event(jevent);
  265. }
  266. // Called on the UI thread
  267. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_joyaxis(JNIEnv *env, jclass clazz, jint p_device, jint p_axis, jfloat p_value) {
  268. if (step.get() <= 0) {
  269. return;
  270. }
  271. AndroidInputHandler::JoypadEvent jevent;
  272. jevent.device = p_device;
  273. jevent.type = AndroidInputHandler::JOY_EVENT_AXIS;
  274. jevent.index = p_axis;
  275. jevent.value = p_value;
  276. input_handler->process_joy_event(jevent);
  277. }
  278. // Called on the UI thread
  279. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_joyhat(JNIEnv *env, jclass clazz, jint p_device, jint p_hat_x, jint p_hat_y) {
  280. if (step.get() <= 0) {
  281. return;
  282. }
  283. AndroidInputHandler::JoypadEvent jevent;
  284. jevent.device = p_device;
  285. jevent.type = AndroidInputHandler::JOY_EVENT_HAT;
  286. HatMask hat = HatMask::CENTER;
  287. if (p_hat_x != 0) {
  288. if (p_hat_x < 0) {
  289. hat |= HatMask::LEFT;
  290. } else {
  291. hat |= HatMask::RIGHT;
  292. }
  293. }
  294. if (p_hat_y != 0) {
  295. if (p_hat_y < 0) {
  296. hat |= HatMask::UP;
  297. } else {
  298. hat |= HatMask::DOWN;
  299. }
  300. }
  301. jevent.hat = hat;
  302. input_handler->process_joy_event(jevent);
  303. }
  304. // Called on the UI thread
  305. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_joyconnectionchanged(JNIEnv *env, jclass clazz, jint p_device, jboolean p_connected, jstring p_name) {
  306. if (os_android) {
  307. String name = jstring_to_string(p_name, env);
  308. Input::get_singleton()->joy_connection_changed(p_device, p_connected, name);
  309. }
  310. }
  311. // Called on the UI thread
  312. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_key(JNIEnv *env, jclass clazz, jint p_keycode, jint p_physical_keycode, jint p_unicode, jboolean p_pressed) {
  313. if (step.get() <= 0) {
  314. return;
  315. }
  316. input_handler->process_key_event(p_keycode, p_physical_keycode, p_unicode, p_pressed);
  317. }
  318. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_accelerometer(JNIEnv *env, jclass clazz, jfloat x, jfloat y, jfloat z) {
  319. accelerometer = Vector3(x, y, z);
  320. }
  321. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_gravity(JNIEnv *env, jclass clazz, jfloat x, jfloat y, jfloat z) {
  322. gravity = Vector3(x, y, z);
  323. }
  324. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_magnetometer(JNIEnv *env, jclass clazz, jfloat x, jfloat y, jfloat z) {
  325. magnetometer = Vector3(x, y, z);
  326. }
  327. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_gyroscope(JNIEnv *env, jclass clazz, jfloat x, jfloat y, jfloat z) {
  328. gyroscope = Vector3(x, y, z);
  329. }
  330. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_focusin(JNIEnv *env, jclass clazz) {
  331. if (step.get() <= 0) {
  332. return;
  333. }
  334. os_android->main_loop_focusin();
  335. }
  336. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_focusout(JNIEnv *env, jclass clazz) {
  337. if (step.get() <= 0) {
  338. return;
  339. }
  340. os_android->main_loop_focusout();
  341. }
  342. JNIEXPORT jstring JNICALL Java_org_godotengine_godot_GodotLib_getGlobal(JNIEnv *env, jclass clazz, jstring path) {
  343. String js = jstring_to_string(path, env);
  344. return env->NewStringUTF(GLOBAL_GET(js).operator String().utf8().get_data());
  345. }
  346. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_callobject(JNIEnv *env, jclass clazz, jlong ID, jstring method, jobjectArray params) {
  347. Object *obj = ObjectDB::get_instance(ObjectID(ID));
  348. ERR_FAIL_NULL(obj);
  349. int res = env->PushLocalFrame(16);
  350. ERR_FAIL_COND(res != 0);
  351. String str_method = jstring_to_string(method, env);
  352. int count = env->GetArrayLength(params);
  353. Variant *vlist = (Variant *)alloca(sizeof(Variant) * count);
  354. Variant **vptr = (Variant **)alloca(sizeof(Variant *) * count);
  355. for (int i = 0; i < count; i++) {
  356. jobject jobj = env->GetObjectArrayElement(params, i);
  357. Variant v;
  358. if (jobj) {
  359. v = _jobject_to_variant(env, jobj);
  360. }
  361. memnew_placement(&vlist[i], Variant);
  362. vlist[i] = v;
  363. vptr[i] = &vlist[i];
  364. env->DeleteLocalRef(jobj);
  365. }
  366. Callable::CallError err;
  367. obj->callp(str_method, (const Variant **)vptr, count, err);
  368. env->PopLocalFrame(nullptr);
  369. }
  370. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_calldeferred(JNIEnv *env, jclass clazz, jlong ID, jstring method, jobjectArray params) {
  371. Object *obj = ObjectDB::get_instance(ObjectID(ID));
  372. ERR_FAIL_NULL(obj);
  373. int res = env->PushLocalFrame(16);
  374. ERR_FAIL_COND(res != 0);
  375. String str_method = jstring_to_string(method, env);
  376. int count = env->GetArrayLength(params);
  377. Variant *args = (Variant *)alloca(sizeof(Variant) * count);
  378. const Variant **argptrs = (const Variant **)alloca(sizeof(Variant *) * count);
  379. for (int i = 0; i < count; i++) {
  380. jobject jobj = env->GetObjectArrayElement(params, i);
  381. if (jobj) {
  382. args[i] = _jobject_to_variant(env, jobj);
  383. }
  384. env->DeleteLocalRef(jobj);
  385. argptrs[i] = &args[i];
  386. }
  387. MessageQueue::get_singleton()->push_callp(obj, str_method, (const Variant **)argptrs, count);
  388. env->PopLocalFrame(nullptr);
  389. }
  390. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_requestPermissionResult(JNIEnv *env, jclass clazz, jstring p_permission, jboolean p_result) {
  391. String permission = jstring_to_string(p_permission, env);
  392. if (permission == "android.permission.RECORD_AUDIO" && p_result) {
  393. AudioDriver::get_singleton()->capture_start();
  394. }
  395. if (os_android->get_main_loop()) {
  396. os_android->get_main_loop()->emit_signal(SNAME("on_request_permissions_result"), permission, p_result == JNI_TRUE);
  397. }
  398. }
  399. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_onRendererResumed(JNIEnv *env, jclass clazz) {
  400. if (step.get() <= 0) {
  401. return;
  402. }
  403. // We force redraw to ensure we render at least once when resuming the app.
  404. Main::force_redraw();
  405. if (os_android->get_main_loop()) {
  406. os_android->get_main_loop()->notification(MainLoop::NOTIFICATION_APPLICATION_RESUMED);
  407. }
  408. }
  409. JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_onRendererPaused(JNIEnv *env, jclass clazz) {
  410. if (step.get() <= 0) {
  411. return;
  412. }
  413. if (os_android->get_main_loop()) {
  414. os_android->get_main_loop()->notification(MainLoop::NOTIFICATION_APPLICATION_PAUSED);
  415. }
  416. }
  417. }