2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_android.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef OS_ANDROID_H
|
|
|
|
#define OS_ANDROID_H
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "audio_driver_opensl.h"
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/main_loop.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "drivers/unix/os_unix.h"
|
2017-01-16 19:19:45 +01:00
|
|
|
#include "servers/audio_server.h"
|
2015-09-04 04:24:55 +02:00
|
|
|
|
2019-03-13 13:51:55 +01:00
|
|
|
class GodotJavaWrapper;
|
|
|
|
class GodotIOJavaWrapper;
|
2014-03-14 02:57:24 +01:00
|
|
|
|
2020-03-05 19:00:28 +01:00
|
|
|
struct ANativeWindow;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class OS_Android : public OS_Unix {
|
|
|
|
private:
|
2020-03-27 17:30:18 +01:00
|
|
|
Size2i display_size;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-06-28 04:21:45 +02:00
|
|
|
bool use_apk_expansion;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-27 17:30:18 +01:00
|
|
|
#if defined(OPENGL_ENABLED)
|
2015-12-02 15:15:48 +01:00
|
|
|
bool use_16bits_fbo;
|
2020-03-27 17:30:18 +01:00
|
|
|
const char *gl_extensions;
|
|
|
|
#endif
|
2015-12-02 15:15:48 +01:00
|
|
|
|
2020-03-05 19:00:28 +01:00
|
|
|
#if defined(VULKAN_ENABLED)
|
|
|
|
ANativeWindow *native_window;
|
|
|
|
#endif
|
|
|
|
|
2016-07-02 16:48:02 +02:00
|
|
|
mutable String data_dir_cache;
|
|
|
|
|
2014-03-14 02:57:24 +01:00
|
|
|
AudioDriverOpenSL audio_driver_android;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
MainLoop *main_loop;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-03-13 13:51:55 +01:00
|
|
|
GodotJavaWrapper *godot_java;
|
|
|
|
GodotIOJavaWrapper *godot_io_java;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void initialize_core() override;
|
|
|
|
virtual void initialize() override;
|
2020-03-27 17:30:18 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void initialize_joypads() override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void set_main_loop(MainLoop *p_main_loop) override;
|
|
|
|
virtual void delete_main_loop() override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual void finalize() override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
typedef int64_t ProcessID;
|
|
|
|
|
2020-03-27 17:30:18 +01:00
|
|
|
static OS_Android *get_singleton();
|
2019-03-13 13:51:55 +01:00
|
|
|
GodotJavaWrapper *get_godot_java();
|
|
|
|
GodotIOJavaWrapper *get_godot_io_java();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual bool request_permission(const String &p_name) override;
|
|
|
|
virtual bool request_permissions() override;
|
|
|
|
virtual Vector<String> get_granted_permissions() const override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false) override;
|
2018-01-13 14:40:20 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_name() const override;
|
|
|
|
virtual MainLoop *get_main_loop() const override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void main_loop_begin();
|
|
|
|
bool main_loop_iterate();
|
2017-01-11 20:34:32 +01:00
|
|
|
void main_loop_request_go_back();
|
2014-02-10 02:10:30 +01:00
|
|
|
void main_loop_end();
|
|
|
|
void main_loop_focusout();
|
|
|
|
void main_loop_focusin();
|
|
|
|
|
2020-03-27 17:30:18 +01:00
|
|
|
void set_display_size(const Size2i &p_size);
|
|
|
|
Size2i get_display_size() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2015-12-02 15:15:48 +01:00
|
|
|
void set_context_is_16_bits(bool p_is_16);
|
2020-03-27 17:30:18 +01:00
|
|
|
void set_opengl_extensions(const char *p_gl_extensions);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-05 19:00:28 +01:00
|
|
|
void set_native_window(ANativeWindow *p_native_window);
|
2020-03-27 17:30:18 +01:00
|
|
|
ANativeWindow *get_native_window() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual Error shell_open(String p_uri) override;
|
|
|
|
virtual String get_user_data_dir() const override;
|
2021-06-08 18:43:10 +02:00
|
|
|
virtual String get_external_data_dir() const override;
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_resource_dir() const override;
|
|
|
|
virtual String get_locale() const override;
|
|
|
|
virtual String get_model_name() const override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_unique_id() const override;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual String get_system_dir(SystemDir p_dir) const override;
|
2014-12-02 18:02:41 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
void vibrate_handheld(int p_duration_ms) override;
|
2016-01-24 05:11:59 +01:00
|
|
|
|
2020-12-17 18:15:59 +01:00
|
|
|
virtual bool _check_internal_feature_support(const String &p_feature) override;
|
2019-03-13 13:51:55 +01:00
|
|
|
OS_Android(GodotJavaWrapper *p_godot_java, GodotIOJavaWrapper *p_godot_io_java, bool p_use_apk_expansion);
|
2014-02-10 02:10:30 +01:00
|
|
|
~OS_Android();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|