os_javascript.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*************************************************************************/
  2. /* os_javascript.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* http://www.godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2015 Juan Linietsky, Ariel Manzur. */
  9. /* */
  10. /* Permission is hereby granted, free of charge, to any person obtaining */
  11. /* a copy of this software and associated documentation files (the */
  12. /* "Software"), to deal in the Software without restriction, including */
  13. /* without limitation the rights to use, copy, modify, merge, publish, */
  14. /* distribute, sublicense, and/or sell copies of the Software, and to */
  15. /* permit persons to whom the Software is furnished to do so, subject to */
  16. /* the following conditions: */
  17. /* */
  18. /* The above copyright notice and this permission notice shall be */
  19. /* included in all copies or substantial portions of the Software. */
  20. /* */
  21. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  22. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  23. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  24. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  25. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  26. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  27. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  28. /*************************************************************************/
  29. #ifndef OS_JAVASCRIPT_H
  30. #define OS_JAVASCRIPT_H
  31. #include "os/input.h"
  32. #include "drivers/unix/os_unix.h"
  33. #include "os/main_loop.h"
  34. #include "servers/physics/physics_server_sw.h"
  35. #include "servers/spatial_sound/spatial_sound_server_sw.h"
  36. #include "servers/spatial_sound_2d/spatial_sound_2d_server_sw.h"
  37. #include "servers/audio/audio_server_sw.h"
  38. #include "servers/physics_2d/physics_2d_server_sw.h"
  39. #include "servers/visual/rasterizer.h"
  40. #include "audio_server_javascript.h"
  41. #include "audio_driver_javascript.h"
  42. typedef void (*GFXInitFunc)(void *ud,bool gl2,int w, int h, bool fs);
  43. typedef int (*OpenURIFunc)(const String&);
  44. typedef String (*GetDataDirFunc)();
  45. typedef String (*GetLocaleFunc)();
  46. class OS_JavaScript : public OS_Unix {
  47. public:
  48. struct TouchPos {
  49. int id;
  50. Point2 pos;
  51. };
  52. private:
  53. Vector<TouchPos> touch;
  54. Point2 last_mouse;
  55. unsigned int last_id;
  56. GFXInitFunc gfx_init_func;
  57. void*gfx_init_ud;
  58. bool use_gl2;
  59. int64_t time_to_save_sync;
  60. int64_t last_sync_time;
  61. Rasterizer *rasterizer;
  62. VisualServer *visual_server;
  63. AudioServerJavascript *audio_server;
  64. //SampleManagerMallocSW *sample_manager;
  65. SpatialSoundServerSW *spatial_sound_server;
  66. SpatialSound2DServerSW *spatial_sound_2d_server;
  67. PhysicsServer *physics_server;
  68. Physics2DServer *physics_2d_server;
  69. AudioDriverJavaScript audio_driver_javascript;
  70. const char* gl_extensions;
  71. InputDefault *input;
  72. VideoMode default_videomode;
  73. MainLoop * main_loop;
  74. OpenURIFunc open_uri_func;
  75. GetDataDirFunc get_data_dir_func;
  76. GetLocaleFunc get_locale_func;
  77. static void _close_notification_funcs(const String& p_file,int p_flags);
  78. public:
  79. // functions used by main to initialize/deintialize the OS
  80. virtual int get_video_driver_count() const;
  81. virtual const char * get_video_driver_name(int p_driver) const;
  82. virtual VideoMode get_default_video_mode() const;
  83. virtual int get_audio_driver_count() const;
  84. virtual const char * get_audio_driver_name(int p_driver) const;
  85. virtual void initialize_core();
  86. virtual void initialize(const VideoMode& p_desired,int p_video_driver,int p_audio_driver);
  87. virtual void set_main_loop( MainLoop * p_main_loop );
  88. virtual void delete_main_loop();
  89. virtual void finalize();
  90. typedef int64_t ProcessID;
  91. //static OS* get_singleton();
  92. virtual void vprint(const char* p_format, va_list p_list, bool p_stderr=false);
  93. virtual void print(const char *p_format, ... );
  94. virtual void alert(const String& p_alert);
  95. virtual void set_mouse_show(bool p_show);
  96. virtual void set_mouse_grab(bool p_grab);
  97. virtual bool is_mouse_grab_enabled() const;
  98. virtual Point2 get_mouse_pos() const;
  99. virtual int get_mouse_button_state() const;
  100. virtual void set_window_title(const String& p_title);
  101. //virtual void set_clipboard(const String& p_text);
  102. //virtual String get_clipboard() const;
  103. virtual void set_video_mode(const VideoMode& p_video_mode,int p_screen=0);
  104. virtual VideoMode get_video_mode(int p_screen=0) const;
  105. virtual void get_fullscreen_mode_list(List<VideoMode> *p_list,int p_screen=0) const;
  106. virtual Size2 get_window_size() const;
  107. virtual String get_name();
  108. virtual MainLoop *get_main_loop() const;
  109. virtual bool can_draw() const;
  110. virtual void set_cursor_shape(CursorShape p_shape);
  111. void main_loop_begin();
  112. bool main_loop_iterate();
  113. void main_loop_request_quit();
  114. void main_loop_end();
  115. void main_loop_focusout();
  116. void main_loop_focusin();
  117. virtual bool has_touchscreen_ui_hint() const;
  118. void set_opengl_extensions(const char* p_gl_extensions);
  119. void set_display_size(Size2 p_size);
  120. void reload_gfx();
  121. virtual Error shell_open(String p_uri);
  122. virtual String get_data_dir() const;
  123. virtual String get_resource_dir() const;
  124. virtual String get_locale() const;
  125. void process_accelerometer(const Vector3& p_accelerometer);
  126. void process_touch(int p_what,int p_pointer, const Vector<TouchPos>& p_points);
  127. void push_input(const InputEvent& p_ev);
  128. OS_JavaScript(GFXInitFunc p_gfx_init_func,void*p_gfx_init_ud, OpenURIFunc p_open_uri_func, GetDataDirFunc p_get_data_dir_func,GetLocaleFunc p_get_locale_func);
  129. ~OS_JavaScript();
  130. };
  131. #endif