2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_javascript.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
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 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_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 {
|
2017-04-24 21:41:39 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
VideoMode video_mode;
|
2017-07-25 20:55:44 +02:00
|
|
|
Vector2 windowed_size;
|
2016-11-26 13:13:16 +01:00
|
|
|
bool window_maximized;
|
2018-08-12 15:39:32 +02:00
|
|
|
bool entering_fullscreen;
|
|
|
|
bool just_exited_fullscreen;
|
2018-07-08 02:23:19 +02:00
|
|
|
|
|
|
|
InputDefault *input;
|
|
|
|
Ref<InputEventKey> deferred_key_event;
|
2017-04-29 21:35:31 +02:00
|
|
|
CursorShape cursor_shape;
|
2018-11-28 17:04:37 +01:00
|
|
|
String cursors[CURSOR_MAX];
|
2019-07-08 22:37:18 +02:00
|
|
|
Map<CursorShape, Vector<Variant> > cursors_cache;
|
2018-07-08 02:23:19 +02:00
|
|
|
Point2 touches[32];
|
|
|
|
|
2018-07-20 18:16:09 +02:00
|
|
|
Point2i last_click_pos;
|
2020-01-17 14:10:50 +01:00
|
|
|
double 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;
|
2018-07-08 02:23:19 +02:00
|
|
|
AudioDriverJavaScript audio_driver_javascript;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
bool idb_available;
|
|
|
|
int64_t sync_wait_time;
|
|
|
|
int64_t last_sync_check_time;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static EM_BOOL fullscreen_change_callback(int p_event_type, const EmscriptenFullscreenChangeEvent *p_event, void *p_user_data);
|
2015-09-12 15:54:47 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static EM_BOOL keydown_callback(int p_event_type, const EmscriptenKeyboardEvent *p_event, void *p_user_data);
|
|
|
|
static EM_BOOL keypress_callback(int p_event_type, const EmscriptenKeyboardEvent *p_event, void *p_user_data);
|
|
|
|
static EM_BOOL keyup_callback(int p_event_type, const EmscriptenKeyboardEvent *p_event, void *p_user_data);
|
2016-01-21 02:23:15 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static EM_BOOL mousemove_callback(int p_event_type, const EmscriptenMouseEvent *p_event, void *p_user_data);
|
|
|
|
static EM_BOOL mouse_button_callback(int p_event_type, const EmscriptenMouseEvent *p_event, void *p_user_data);
|
2017-04-29 04:54:48 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static EM_BOOL wheel_callback(int p_event_type, const EmscriptenWheelEvent *p_event, void *p_user_data);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static EM_BOOL touch_press_callback(int p_event_type, const EmscriptenTouchEvent *p_event, void *p_user_data);
|
|
|
|
static EM_BOOL touchmove_callback(int p_event_type, const EmscriptenTouchEvent *p_event, void *p_user_data);
|
|
|
|
|
|
|
|
static EM_BOOL gamepad_change_callback(int p_event_type, const EmscriptenGamepadEvent *p_event, void *p_user_data);
|
|
|
|
void process_joypads();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
static void main_loop_callback();
|
|
|
|
|
|
|
|
static void file_access_close_callback(const String &p_file, int p_flags);
|
|
|
|
|
|
|
|
protected:
|
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:
|
|
|
|
// Override return type to make writing static callbacks less tedious.
|
|
|
|
static OS_JavaScript *get_singleton();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
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;
|
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);
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
void run_async();
|
2014-02-10 02:10:30 +01:00
|
|
|
bool main_loop_iterate();
|
|
|
|
|
2020-01-23 01:25:47 +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);
|
2018-10-29 21:15:15 +01:00
|
|
|
virtual Error kill(const ProcessID &p_pid);
|
|
|
|
virtual int get_process_id() const;
|
|
|
|
|
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;
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual bool can_draw() const;
|
2016-01-21 02:23:15 +01:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
virtual String get_resource_dir() const;
|
|
|
|
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
|
|
|
void set_idb_available(bool p_idb_available);
|
|
|
|
virtual bool is_userfs_persistent() const;
|
2017-10-02 16:09:24 +02:00
|
|
|
|
2018-07-08 02:23:19 +02:00
|
|
|
OS_JavaScript(int p_argc, char *p_argv[]);
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|