2023-01-10 15:26:54 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* os_javascript.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef OS_JAVASCRIPT_H
|
|
|
|
#define OS_JAVASCRIPT_H
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "audio_driver_javascript.h"
|
2018-10-01 21:35:55 +02:00
|
|
|
#include "drivers/unix/os_unix.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "main/input_default.h"
|
2017-01-16 19:19:45 +01:00
|
|
|
#include "servers/audio_server.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
#include "servers/visual/rasterizer.h"
|
|
|
|
|
2017-01-16 19:19:45 +01:00
|
|
|
#include <emscripten/html5.h>
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class OS_JavaScript : public OS_Unix {
|
2020-10-17 23:31:30 +02:00
|
|
|
private:
|
2021-09-10 21:46:22 +02:00
|
|
|
struct JSTouchEvent {
|
|
|
|
uint32_t identifier[32] = { 0 };
|
|
|
|
double coords[64] = { 0 };
|
|
|
|
};
|
|
|
|
JSTouchEvent touch_event;
|
|
|
|
|
|
|
|
struct JSKeyEvent {
|
|
|
|
char code[32] = { 0 };
|
|
|
|
char key[32] = { 0 };
|
|
|
|
uint8_t modifiers[4] = { 0 };
|
|
|
|
};
|
|
|
|
JSKeyEvent key_event;
|
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
VideoMode video_mode;
|
2020-02-07 01:18:11 +01:00
|
|
|
bool transparency_enabled;
|
2018-07-08 02:23:19 +02:00
|
|
|
|
2020-01-19 11:44:19 +01:00
|
|
|
EMSCRIPTEN_WEBGL_CONTEXT_HANDLE webgl_ctx;
|
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
InputDefault *input;
|
2017-04-29 21:35:31 +02:00
|
|
|
CursorShape cursor_shape;
|
2018-07-08 02:23:19 +02:00
|
|
|
Point2 touches[32];
|
|
|
|
|
2020-10-17 23:31:30 +02:00
|
|
|
char canvas_id[256];
|
|
|
|
bool cursor_inside_canvas;
|
2018-07-20 18:16:09 +02:00
|
|
|
Point2i last_click_pos;
|
2021-09-10 21:46:22 +02:00
|
|
|
uint64_t last_click_ms;
|
2018-07-20 18:16:09 +02:00
|
|
|
int last_click_button_index;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
MainLoop *main_loop;
|
2019-01-20 00:13:20 +01:00
|
|
|
int video_driver_index;
|
2021-09-12 19:23:30 +02:00
|
|
|
List<AudioDriverJavaScript *> audio_drivers;
|
2020-01-19 11:44:19 +01:00
|
|
|
VisualServer *visual_server;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2023-05-22 15:41:09 +02:00
|
|
|
bool tts;
|
2020-07-27 13:53:03 +02:00
|
|
|
bool swap_ok_cancel;
|
2018-07-08 02:23:19 +02:00
|
|
|
bool idb_available;
|
2020-09-18 19:15:53 +02:00
|
|
|
bool idb_needs_sync;
|
2020-10-17 23:31:30 +02:00
|
|
|
bool idb_is_syncing;
|
2022-01-31 15:28:12 +01:00
|
|
|
bool pwa_is_waiting;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-23 14:02:12 +02:00
|
|
|
Map<int, CharString> utterance_ids;
|
|
|
|
Array voices;
|
|
|
|
|
2021-09-12 12:19:33 +02:00
|
|
|
static void fullscreen_change_callback(int p_fullscreen);
|
2021-09-10 21:46:22 +02:00
|
|
|
static int mouse_button_callback(int p_pressed, int p_button, double p_x, double p_y, int p_modifiers);
|
|
|
|
static void mouse_move_callback(double p_x, double p_y, double p_rel_x, double p_rel_y, int p_modifiers);
|
|
|
|
static int mouse_wheel_callback(double p_delta_x, double p_delta_y);
|
|
|
|
static void key_callback(int p_pressed, int p_repeat, int p_modifiers);
|
|
|
|
static void touch_callback(int p_type, int p_count);
|
2018-07-08 02:23:19 +02:00
|
|
|
|
2020-12-17 13:37:50 +01:00
|
|
|
static void gamepad_callback(int p_index, int p_connected, const char *p_id, const char *p_guid);
|
2021-03-08 23:16:51 +01:00
|
|
|
static void input_text_callback(const char *p_text, int p_cursor);
|
2018-07-08 02:23:19 +02:00
|
|
|
void process_joypads();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static void file_access_close_callback(const String &p_file, int p_flags);
|
|
|
|
|
2020-10-17 23:31:30 +02:00
|
|
|
static void request_quit_callback();
|
2021-10-05 13:10:47 +02:00
|
|
|
static void window_blur_callback();
|
2020-10-17 23:31:30 +02:00
|
|
|
static void drop_files_callback(char **p_filev, int p_filec);
|
|
|
|
static void send_notification_callback(int p_notification);
|
|
|
|
static void fs_sync_callback();
|
|
|
|
static void update_clipboard_callback(const char *p_text);
|
2022-01-31 15:28:12 +01:00
|
|
|
static void update_pwa_state_callback();
|
2022-05-23 14:02:12 +02:00
|
|
|
static void _js_utterance_callback(int p_event, int p_id, int p_pos);
|
|
|
|
static void update_voices_callback(int p_size, const char **p_voice);
|
2020-10-17 23:31:30 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
protected:
|
2020-06-29 18:51:53 +02:00
|
|
|
void resume_audio();
|
|
|
|
|
2018-07-19 23:58:15 +02:00
|
|
|
virtual int get_current_video_driver() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void initialize_core();
|
2018-01-03 18:26:44 +01:00
|
|
|
virtual Error initialize(const VideoMode &p_desired, int p_video_driver, int p_audio_driver);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_main_loop(MainLoop *p_main_loop);
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void delete_main_loop();
|
|
|
|
|
|
|
|
virtual void finalize();
|
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool _check_internal_feature_support(const String &p_feature);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
public:
|
2020-06-29 18:54:20 +02:00
|
|
|
bool check_size_force_redraw();
|
2022-01-31 15:28:12 +01:00
|
|
|
bool pwa_needs_update() const { return pwa_is_waiting; }
|
|
|
|
Error pwa_update();
|
2023-01-09 21:30:42 +01:00
|
|
|
void force_fs_sync();
|
2020-01-19 11:44:19 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
// Override return type to make writing static callbacks less tedious.
|
|
|
|
static OS_JavaScript *get_singleton();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-23 14:02:12 +02:00
|
|
|
virtual bool tts_is_speaking() const;
|
|
|
|
virtual bool tts_is_paused() const;
|
|
|
|
virtual Array tts_get_voices() const;
|
|
|
|
|
|
|
|
virtual void tts_speak(const String &p_text, const String &p_voice, int p_volume = 50, float p_pitch = 1.f, float p_rate = 1.f, int p_utterance_id = 0, bool p_interrupt = false);
|
|
|
|
virtual void tts_pause();
|
|
|
|
virtual void tts_resume();
|
|
|
|
virtual void tts_stop();
|
|
|
|
|
2021-03-08 23:16:51 +01:00
|
|
|
virtual bool has_virtual_keyboard() const;
|
2022-07-07 20:22:28 +02:00
|
|
|
virtual void show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect = Rect2(), VirtualKeyboardType p_type = KEYBOARD_TYPE_DEFAULT, int p_max_input_length = -1, int p_cursor_start = -1, int p_cursor_end = -1);
|
2021-03-08 23:16:51 +01:00
|
|
|
virtual void hide_virtual_keyboard();
|
|
|
|
|
2020-07-27 13:53:03 +02:00
|
|
|
virtual bool get_swap_ok_cancel();
|
2020-01-19 11:44:19 +01:00
|
|
|
virtual void swap_buffers();
|
2017-03-05 16:44:50 +01:00
|
|
|
virtual void set_video_mode(const VideoMode &p_video_mode, int p_screen = 0);
|
|
|
|
virtual VideoMode get_video_mode(int p_screen = 0) const;
|
|
|
|
virtual void get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen = 0) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-11-26 13:13:16 +01:00
|
|
|
virtual void set_window_size(const Size2);
|
2015-04-02 20:03:14 +02:00
|
|
|
virtual Size2 get_window_size() const;
|
2016-11-26 13:13:16 +01:00
|
|
|
virtual void set_window_maximized(bool p_enabled);
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool is_window_maximized() const;
|
|
|
|
virtual void set_window_fullscreen(bool p_enabled);
|
2016-11-26 13:13:16 +01:00
|
|
|
virtual bool is_window_fullscreen() const;
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual Size2 get_screen_size(int p_screen = -1) const;
|
2021-02-05 19:56:56 +01:00
|
|
|
virtual int get_screen_dpi(int p_screen = -1) const;
|
|
|
|
virtual float get_screen_scale(int p_screen = -1) const;
|
|
|
|
virtual float get_screen_max_scale() const;
|
2016-11-26 13:13:16 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual Point2 get_mouse_position() const;
|
|
|
|
virtual int get_mouse_button_state() const;
|
|
|
|
virtual void set_cursor_shape(CursorShape p_shape);
|
2022-10-04 12:49:02 +02:00
|
|
|
virtual CursorShape get_cursor_shape() const;
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual void set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot);
|
|
|
|
virtual void set_mouse_mode(MouseMode p_mode);
|
|
|
|
virtual MouseMode get_mouse_mode() const;
|
2017-07-25 20:55:44 +02:00
|
|
|
|
2020-02-07 01:18:11 +01:00
|
|
|
virtual bool get_window_per_pixel_transparency_enabled() const;
|
|
|
|
virtual void set_window_per_pixel_transparency_enabled(bool p_enabled);
|
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool has_touchscreen_ui_hint() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool is_joy_known(int p_device);
|
|
|
|
virtual String get_joy_guid(int p_device) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual int get_video_driver_count() const;
|
|
|
|
virtual const char *get_video_driver_name(int p_driver) const;
|
2017-10-02 16:09:24 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual int get_audio_driver_count() const;
|
|
|
|
virtual const char *get_audio_driver_name(int p_driver) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-05-28 12:59:29 +02:00
|
|
|
virtual void set_clipboard(const String &p_text);
|
2019-05-29 21:30:29 +02:00
|
|
|
virtual String get_clipboard() const;
|
2019-05-28 12:59:29 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual MainLoop *get_main_loop() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
bool main_loop_iterate();
|
|
|
|
|
2021-12-16 12:08:09 +01:00
|
|
|
virtual Error execute(const String &p_path, const List<String> &p_arguments, bool p_blocking = true, ProcessID *r_child_id = NULL, String *r_pipe = NULL, int *r_exitcode = NULL, bool read_stderr = false, Mutex *p_pipe_mutex = NULL, bool p_open_console = false);
|
2018-10-29 21:15:15 +01:00
|
|
|
virtual Error kill(const ProcessID &p_pid);
|
|
|
|
virtual int get_process_id() const;
|
2021-08-13 05:36:23 +02:00
|
|
|
bool is_process_running(const ProcessID &p_pid) const;
|
2021-02-15 15:48:06 +01:00
|
|
|
int get_processor_count() const;
|
2023-09-27 15:17:02 +02:00
|
|
|
String get_unique_id() const;
|
2018-10-29 21:15:15 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual void alert(const String &p_alert, const String &p_title = "ALERT!");
|
|
|
|
virtual void set_window_title(const String &p_title);
|
2018-09-16 19:37:36 +02:00
|
|
|
virtual void set_icon(const Ref<Image> &p_icon);
|
2016-11-18 18:52:44 +01:00
|
|
|
String get_executable_path() const;
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual Error shell_open(String p_uri);
|
2019-05-20 19:36:24 +02:00
|
|
|
virtual String get_name() const;
|
2020-06-29 21:00:20 +02:00
|
|
|
virtual void add_frame_delay(bool p_can_draw) {}
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool can_draw() const;
|
2022-07-27 12:51:40 +02:00
|
|
|
virtual void vibrate_handheld(int p_duration_ms);
|
2016-01-21 02:23:15 +01:00
|
|
|
|
2020-01-19 11:44:19 +01:00
|
|
|
virtual String get_cache_path() const;
|
|
|
|
virtual String get_config_path() const;
|
|
|
|
virtual String get_data_path() const;
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual String get_user_data_dir() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2017-09-12 21:09:06 +02:00
|
|
|
virtual OS::PowerState get_power_state();
|
2016-07-23 13:15:55 +02:00
|
|
|
virtual int get_power_seconds_left();
|
|
|
|
virtual int get_power_percent_left();
|
2016-01-21 02:23:15 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool is_userfs_persistent() const;
|
2020-12-05 00:43:02 +01:00
|
|
|
Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path);
|
2020-10-17 23:31:30 +02:00
|
|
|
OS_JavaScript();
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2022-07-25 12:33:41 +02:00
|
|
|
#endif // OS_JAVASCRIPT_H
|