| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  openxr_android_extension.cpp                                          */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "openxr_android_extension.h"
 | 
					
						
							| 
									
										
										
										
											2023-06-13 16:56:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "../openxr_api.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | #include "java_godot_wrapper.h"
 | 
					
						
							|  |  |  | #include "os_android.h"
 | 
					
						
							|  |  |  | #include "thread_jandroid.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | #include <jni.h>
 | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | #include <openxr/openxr.h>
 | 
					
						
							|  |  |  | #include <openxr/openxr_platform.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRAndroidExtension *OpenXRAndroidExtension::singleton = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | OpenXRAndroidExtension *OpenXRAndroidExtension::get_singleton() { | 
					
						
							|  |  |  | 	return singleton; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-29 16:34:25 +11:00
										 |  |  | OpenXRAndroidExtension::OpenXRAndroidExtension() { | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 	singleton = this; | 
					
						
							| 
									
										
										
										
											2022-12-29 16:34:25 +11:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | HashMap<String, bool *> OpenXRAndroidExtension::get_requested_extensions() { | 
					
						
							|  |  |  | 	HashMap<String, bool *> request_extensions; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-29 16:39:35 +02:00
										 |  |  | 	request_extensions[XR_KHR_ANDROID_CREATE_INSTANCE_EXTENSION_NAME] = &create_instance_extension_available; | 
					
						
							| 
									
										
										
										
											2022-12-29 16:34:25 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return request_extensions; | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | void OpenXRAndroidExtension::on_before_instance_created() { | 
					
						
							| 
									
										
										
										
											2023-01-07 18:41:58 +01:00
										 |  |  | 	if (XR_FAILED(EXT_TRY_INIT_XR_FUNC(xrInitializeLoaderKHR))) { | 
					
						
							|  |  |  | 		// XR_KHR_loader_init not supported on this platform
 | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2022-11-29 20:45:01 -06:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2023-01-07 18:41:58 +01:00
										 |  |  | 	loader_init_extension_available = true; | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | 	JNIEnv *env = get_jni_env(); | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 	JavaVM *vm; | 
					
						
							|  |  |  | 	env->GetJavaVM(&vm); | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | 	jobject activity_object = env->NewGlobalRef(static_cast<OS_Android *>(OS::get_singleton())->get_godot_java()->get_activity()); | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	XrLoaderInitInfoAndroidKHR loader_init_info_android = { | 
					
						
							|  |  |  | 		.type = XR_TYPE_LOADER_INIT_INFO_ANDROID_KHR, | 
					
						
							|  |  |  | 		.next = nullptr, | 
					
						
							|  |  |  | 		.applicationVM = vm, | 
					
						
							|  |  |  | 		.applicationContext = activity_object | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-09-24 13:56:00 +02:00
										 |  |  | 	XrResult result = xrInitializeLoaderKHR((const XrLoaderInitInfoBaseHeaderKHR *)&loader_init_info_android); | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | 	ERR_FAIL_COND_MSG(XR_FAILED(result), "Failed to call xrInitializeLoaderKHR"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-29 16:39:35 +02:00
										 |  |  | // We're keeping the Android create info struct here to avoid including openxr_platform.h in a header, which would break other extensions.
 | 
					
						
							| 
									
										
										
										
											2022-12-15 12:24:08 +01:00
										 |  |  | // This is reasonably safe as the struct is only used during initialization and the extension is a singleton.
 | 
					
						
							| 
									
										
										
										
											2022-10-29 16:39:35 +02:00
										 |  |  | static XrInstanceCreateInfoAndroidKHR instance_create_info; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *OpenXRAndroidExtension::set_instance_create_info_and_get_next_pointer(void *p_next_pointer) { | 
					
						
							|  |  |  | 	if (!create_instance_extension_available) { | 
					
						
							| 
									
										
										
										
											2023-01-07 18:41:58 +01:00
										 |  |  | 		if (!loader_init_extension_available) { | 
					
						
							|  |  |  | 			WARN_PRINT("No Android extensions available, couldn't pass JVM and Activity to OpenXR"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-10-29 16:39:35 +02:00
										 |  |  | 		return nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	JNIEnv *env = get_jni_env(); | 
					
						
							|  |  |  | 	JavaVM *vm; | 
					
						
							|  |  |  | 	env->GetJavaVM(&vm); | 
					
						
							|  |  |  | 	jobject activity_object = env->NewGlobalRef(static_cast<OS_Android *>(OS::get_singleton())->get_godot_java()->get_activity()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	instance_create_info = { | 
					
						
							|  |  |  | 		.type = XR_TYPE_INSTANCE_CREATE_INFO_ANDROID_KHR, | 
					
						
							|  |  |  | 		.next = p_next_pointer, | 
					
						
							|  |  |  | 		.applicationVM = vm, | 
					
						
							|  |  |  | 		.applicationActivity = activity_object | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	return &instance_create_info; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-14 12:44:12 +11:00
										 |  |  | OpenXRAndroidExtension::~OpenXRAndroidExtension() { | 
					
						
							|  |  |  | 	singleton = nullptr; | 
					
						
							|  |  |  | } |