os_uwp.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /**************************************************************************/
  2. /* os_uwp.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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. #ifndef OS_UWP_H
  31. #define OS_UWP_H
  32. #include "context_egl_uwp.h"
  33. #include "joypad_uwp.h"
  34. #include "core/input/input.h"
  35. #include "core/math/transform_2d.h"
  36. #include "core/os/os.h"
  37. #include "core/string/ustring.h"
  38. #include "drivers/xaudio2/audio_driver_xaudio2.h"
  39. #include "servers/audio_server.h"
  40. #include "servers/rendering/renderer_compositor.h"
  41. #include "servers/rendering_server.h"
  42. #include <io.h>
  43. #include <stdio.h>
  44. #define WIN32_LEAN_AND_MEAN
  45. #include <windows.h>
  46. class OS_UWP : public OS {
  47. public:
  48. struct KeyEvent {
  49. enum MessageType {
  50. KEY_EVENT_MESSAGE,
  51. CHAR_EVENT_MESSAGE
  52. };
  53. bool alt = false, shift = false, control = false;
  54. MessageType type = KEY_EVENT_MESSAGE;
  55. bool pressed = false;
  56. Key keycode = Key::NONE;
  57. unsigned int physical_keycode = 0;
  58. unsigned int unicode = 0;
  59. bool echo = false;
  60. CorePhysicalKeyStatus status;
  61. };
  62. private:
  63. enum {
  64. JOYPADS_MAX = 8,
  65. JOY_AXIS_COUNT = 6,
  66. MAX_JOY_AXIS = 32768, // I've no idea
  67. KEY_EVENT_BUFFER_SIZE = 512
  68. };
  69. FILE *stdo = nullptr;
  70. KeyEvent key_event_buffer[KEY_EVENT_BUFFER_SIZE];
  71. int key_event_pos;
  72. uint64_t ticks_start;
  73. uint64_t ticks_per_second;
  74. bool minimized;
  75. bool old_invalid;
  76. bool outside;
  77. int old_x, old_y;
  78. Point2i center;
  79. RenderingServer *rendering_server = nullptr;
  80. int pressrc;
  81. ContextEGL_UWP *gl_context = nullptr;
  82. Windows::UI::Core::CoreWindow ^ window;
  83. VideoMode video_mode;
  84. int video_driver_index;
  85. MainLoop *main_loop = nullptr;
  86. AudioDriverXAudio2 audio_driver;
  87. MouseMode mouse_mode;
  88. bool alt_mem;
  89. bool gr_mem;
  90. bool shift_mem;
  91. bool control_mem;
  92. bool meta_mem;
  93. MouseButton last_button_state = MouseButton::NONE;
  94. CursorShape cursor_shape;
  95. InputDefault *input = nullptr;
  96. JoypadUWP ^ joypad;
  97. Windows::System::Display::DisplayRequest ^ display_request;
  98. ref class ManagedType {
  99. public:
  100. property bool alert_close_handle;
  101. property Platform::String ^ clipboard;
  102. void alert_close(Windows::UI::Popups::IUICommand ^ command);
  103. void on_clipboard_changed(Platform::Object ^ sender, Platform::Object ^ ev);
  104. void update_clipboard();
  105. void on_accelerometer_reading_changed(Windows::Devices::Sensors::Accelerometer ^ sender, Windows::Devices::Sensors::AccelerometerReadingChangedEventArgs ^ args);
  106. void on_magnetometer_reading_changed(Windows::Devices::Sensors::Magnetometer ^ sender, Windows::Devices::Sensors::MagnetometerReadingChangedEventArgs ^ args);
  107. void on_gyroscope_reading_changed(Windows::Devices::Sensors::Gyrometer ^ sender, Windows::Devices::Sensors::GyrometerReadingChangedEventArgs ^ args);
  108. /** clang-format breaks this, it does not understand this token. */
  109. /* clang-format off */
  110. internal:
  111. ManagedType() { alert_close_handle = false; }
  112. property OS_UWP* os;
  113. /* clang-format on */
  114. };
  115. ManagedType ^ managed_object;
  116. Windows::Devices::Sensors::Accelerometer ^ accelerometer;
  117. Windows::Devices::Sensors::Magnetometer ^ magnetometer;
  118. Windows::Devices::Sensors::Gyrometer ^ gyrometer;
  119. // functions used by main to initialize/deinitialize the OS
  120. protected:
  121. virtual int get_video_driver_count() const;
  122. virtual int get_current_video_driver() const;
  123. virtual void initialize_core();
  124. virtual Error initialize(const VideoMode &p_desired, int p_video_driver, int p_audio_driver);
  125. virtual void set_main_loop(MainLoop *p_main_loop);
  126. virtual void delete_main_loop();
  127. virtual void finalize();
  128. virtual void finalize_core();
  129. void process_events();
  130. void process_key_events();
  131. public:
  132. // Event to send to the app wrapper
  133. HANDLE mouse_mode_changed;
  134. virtual void alert(const String &p_alert, const String &p_title = "ALERT!");
  135. String get_stdin_string();
  136. void set_mouse_mode(MouseMode p_mode);
  137. MouseMode get_mouse_mode() const;
  138. virtual Point2 get_mouse_position() const;
  139. virtual MouseButton get_mouse_button_state() const;
  140. virtual void set_window_title(const String &p_title);
  141. virtual void set_video_mode(const VideoMode &p_video_mode, int p_screen = 0);
  142. virtual VideoMode get_video_mode(int p_screen = 0) const;
  143. virtual void get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen = 0) const;
  144. virtual Size2 get_window_size() const;
  145. virtual void set_window_size(const Size2 p_size);
  146. virtual void set_window_fullscreen(bool p_enabled);
  147. virtual bool is_window_fullscreen() const;
  148. virtual void set_keep_screen_on(bool p_enabled);
  149. virtual MainLoop *get_main_loop() const;
  150. virtual String get_name() const;
  151. virtual String get_distribution_name() const;
  152. virtual String get_version() const;
  153. virtual DateTime get_datetime(bool p_utc) const;
  154. virtual TimeZoneInfo get_time_zone_info() const;
  155. virtual uint64_t get_unix_time() const;
  156. virtual Error set_cwd(const String &p_cwd);
  157. virtual void delay_usec(uint32_t p_usec) const;
  158. virtual uint64_t get_ticks_usec() const;
  159. virtual Error execute(const String &p_path, const List<String> &p_arguments, String *r_pipe = nullptr, int *r_exitcode = nullptr, bool read_stderr = false, Mutex *p_pipe_mutex = nullptr, bool p_open_console = false);
  160. virtual Error create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id = nullptr, bool p_open_console = false);
  161. virtual Error kill(const ProcessID &p_pid);
  162. virtual bool is_process_running(const ProcessID &p_pid) const;
  163. virtual bool has_environment(const String &p_var) const;
  164. virtual String get_environment(const String &p_var) const;
  165. virtual bool set_environment(const String &p_var, const String &p_value) const;
  166. virtual void set_clipboard(const String &p_text);
  167. virtual String get_clipboard() const;
  168. void set_cursor_shape(CursorShape p_shape);
  169. CursorShape get_cursor_shape() const;
  170. virtual void set_custom_mouse_cursor(const Ref<Resource> &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot);
  171. void set_icon(const Ref<Image> &p_icon);
  172. virtual String get_executable_path() const;
  173. virtual String get_locale() const;
  174. virtual void move_window_to_foreground();
  175. virtual String get_user_data_dir() const;
  176. virtual bool _check_internal_feature_support(const String &p_feature);
  177. void set_window(Windows::UI::Core::CoreWindow ^ p_window);
  178. void screen_size_changed();
  179. virtual void release_rendering_thread();
  180. virtual void make_rendering_thread();
  181. virtual void swap_buffers();
  182. virtual bool has_touchscreen_ui_hint() const;
  183. virtual bool has_virtual_keyboard() const;
  184. 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);
  185. virtual void hide_virtual_keyboard();
  186. virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false, String *r_resolved_path = nullptr);
  187. virtual Error close_dynamic_library(void *p_library_handle);
  188. virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false);
  189. virtual Error shell_open(String p_uri);
  190. void run();
  191. virtual bool get_swap_cancel_ok() { return true; }
  192. void input_event(const Ref<InputEvent> &p_event);
  193. void queue_key_event(KeyEvent &p_event);
  194. OS_UWP();
  195. ~OS_UWP();
  196. };
  197. #endif // OS_UWP_H