os_uwp.h 9.1 KB

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