gosu 0.15.2 → 1.1.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/dependencies/SDL/include/SDL.h +138 -0
  3. data/dependencies/SDL/include/SDL_assert.h +293 -0
  4. data/dependencies/SDL/include/SDL_atomic.h +295 -0
  5. data/dependencies/SDL/include/SDL_audio.h +859 -0
  6. data/dependencies/SDL/include/SDL_bits.h +121 -0
  7. data/dependencies/SDL/include/SDL_blendmode.h +123 -0
  8. data/dependencies/SDL/include/SDL_clipboard.h +71 -0
  9. data/dependencies/SDL/include/SDL_config.h +55 -0
  10. data/dependencies/SDL/include/SDL_config_android.h +182 -0
  11. data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
  12. data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
  13. data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
  14. data/dependencies/SDL/include/SDL_config_os2.h +188 -0
  15. data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
  16. data/dependencies/SDL/include/SDL_config_psp.h +165 -0
  17. data/dependencies/SDL/include/SDL_config_windows.h +288 -0
  18. data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
  19. data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
  20. data/dependencies/SDL/include/SDL_copying.h +20 -0
  21. data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
  22. data/dependencies/SDL/include/SDL_egl.h +1676 -0
  23. data/dependencies/SDL/include/SDL_endian.h +263 -0
  24. data/dependencies/SDL/include/SDL_error.h +112 -0
  25. data/dependencies/SDL/include/SDL_events.h +827 -0
  26. data/dependencies/SDL/include/SDL_filesystem.h +136 -0
  27. data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
  28. data/dependencies/SDL/include/SDL_gesture.h +87 -0
  29. data/dependencies/SDL/include/SDL_haptic.h +1247 -0
  30. data/dependencies/SDL/include/SDL_hints.h +1578 -0
  31. data/dependencies/SDL/include/SDL_joystick.h +499 -0
  32. data/dependencies/SDL/include/SDL_keyboard.h +217 -0
  33. data/dependencies/SDL/include/SDL_keycode.h +351 -0
  34. data/dependencies/SDL/include/SDL_loadso.h +81 -0
  35. data/dependencies/SDL/include/SDL_locale.h +101 -0
  36. data/dependencies/SDL/include/SDL_log.h +211 -0
  37. data/dependencies/SDL/include/SDL_main.h +180 -0
  38. data/dependencies/SDL/include/SDL_messagebox.h +146 -0
  39. data/dependencies/SDL/include/SDL_metal.h +117 -0
  40. data/dependencies/SDL/include/SDL_misc.h +75 -0
  41. data/dependencies/SDL/include/SDL_mouse.h +302 -0
  42. data/dependencies/SDL/include/SDL_mutex.h +251 -0
  43. data/dependencies/SDL/include/SDL_name.h +33 -0
  44. data/dependencies/SDL/include/SDL_opengl.h +2183 -0
  45. data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
  46. data/dependencies/SDL/include/SDL_opengles.h +39 -0
  47. data/dependencies/SDL/include/SDL_opengles2.h +52 -0
  48. data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
  49. data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
  50. data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
  51. data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
  52. data/dependencies/SDL/include/SDL_pixels.h +479 -0
  53. data/dependencies/SDL/include/SDL_platform.h +198 -0
  54. data/dependencies/SDL/include/SDL_power.h +75 -0
  55. data/dependencies/SDL/include/SDL_quit.h +58 -0
  56. data/dependencies/SDL/include/SDL_rect.h +174 -0
  57. data/dependencies/SDL/include/SDL_render.h +1158 -0
  58. data/dependencies/SDL/include/SDL_revision.h +2 -0
  59. data/dependencies/SDL/include/SDL_rwops.h +283 -0
  60. data/dependencies/SDL/include/SDL_scancode.h +413 -0
  61. data/dependencies/SDL/include/SDL_sensor.h +267 -0
  62. data/dependencies/SDL/include/SDL_shape.h +144 -0
  63. data/dependencies/SDL/include/SDL_stdinc.h +647 -0
  64. data/dependencies/SDL/include/SDL_surface.h +563 -0
  65. data/dependencies/SDL/include/SDL_system.h +325 -0
  66. data/dependencies/SDL/include/SDL_syswm.h +354 -0
  67. data/dependencies/SDL/include/SDL_test.h +69 -0
  68. data/dependencies/SDL/include/SDL_test_assert.h +105 -0
  69. data/dependencies/SDL/include/SDL_test_common.h +218 -0
  70. data/dependencies/SDL/include/SDL_test_compare.h +69 -0
  71. data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
  72. data/dependencies/SDL/include/SDL_test_font.h +81 -0
  73. data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
  74. data/dependencies/SDL/include/SDL_test_harness.h +134 -0
  75. data/dependencies/SDL/include/SDL_test_images.h +78 -0
  76. data/dependencies/SDL/include/SDL_test_log.h +67 -0
  77. data/dependencies/SDL/include/SDL_test_md5.h +129 -0
  78. data/dependencies/SDL/include/SDL_test_memory.h +63 -0
  79. data/dependencies/SDL/include/SDL_test_random.h +115 -0
  80. data/dependencies/SDL/include/SDL_thread.h +366 -0
  81. data/dependencies/SDL/include/SDL_timer.h +115 -0
  82. data/dependencies/SDL/include/SDL_touch.h +102 -0
  83. data/dependencies/SDL/include/SDL_types.h +29 -0
  84. data/dependencies/SDL/include/SDL_version.h +162 -0
  85. data/dependencies/SDL/include/SDL_video.h +1282 -0
  86. data/dependencies/SDL/include/SDL_vulkan.h +276 -0
  87. data/dependencies/SDL/include/begin_code.h +166 -0
  88. data/dependencies/SDL/include/close_code.h +40 -0
  89. data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
  90. data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
  91. data/dependencies/SDL_sound/SDL_sound.c +795 -0
  92. data/dependencies/SDL_sound/SDL_sound.h +725 -0
  93. data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
  94. data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
  95. data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
  96. data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
  97. data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
  98. data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
  99. data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
  100. data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
  101. data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
  102. data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
  103. data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
  104. data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
  105. data/dependencies/SDL_sound/dr_flac.h +5906 -0
  106. data/dependencies/SDL_sound/dr_mp3.h +2832 -0
  107. data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
  108. data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
  109. data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
  110. data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
  111. data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
  112. data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
  113. data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
  114. data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
  115. data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
  116. data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
  117. data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
  118. data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
  119. data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
  120. data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
  121. data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
  122. data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
  123. data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
  124. data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
  125. data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
  126. data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
  127. data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
  128. data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
  129. data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
  130. data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
  131. data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
  132. data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
  133. data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
  134. data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
  135. data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
  136. data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
  137. data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
  138. data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
  139. data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
  140. data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
  141. data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
  142. data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
  143. data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
  144. data/dependencies/al_soft/AL/al.h +655 -0
  145. data/dependencies/al_soft/AL/alc.h +270 -0
  146. data/dependencies/al_soft/AL/alext.h +585 -0
  147. data/dependencies/al_soft/AL/efx-creative.h +3 -0
  148. data/dependencies/al_soft/AL/efx-presets.h +402 -0
  149. data/dependencies/al_soft/AL/efx.h +762 -0
  150. data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
  151. data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
  152. data/{src → dependencies/stb}/stb_image.h +330 -127
  153. data/{src → dependencies/stb}/stb_image_write.h +156 -85
  154. data/{src → dependencies/stb}/stb_truetype.h +192 -69
  155. data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
  156. data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
  157. data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
  158. data/ext/gosu/extconf.rb +53 -39
  159. data/{Gosu → include/Gosu}/Audio.hpp +6 -8
  160. data/include/Gosu/Bitmap.hpp +100 -0
  161. data/{Gosu → include/Gosu}/Buttons.hpp +104 -44
  162. data/{Gosu → include/Gosu}/Color.hpp +0 -0
  163. data/{Gosu → include/Gosu}/Directories.hpp +0 -0
  164. data/{Gosu → include/Gosu}/Font.hpp +1 -1
  165. data/{Gosu → include/Gosu}/Fwd.hpp +0 -5
  166. data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
  167. data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
  168. data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
  169. data/{Gosu → include/Gosu}/IO.hpp +0 -0
  170. data/{Gosu → include/Gosu}/Image.hpp +7 -6
  171. data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
  172. data/{Gosu → include/Gosu}/Input.hpp +39 -51
  173. data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
  174. data/{Gosu → include/Gosu}/Math.hpp +0 -0
  175. data/{Gosu → include/Gosu}/Platform.hpp +0 -0
  176. data/{Gosu → include/Gosu}/Text.hpp +0 -0
  177. data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
  178. data/{Gosu → include/Gosu}/Timing.hpp +0 -0
  179. data/{Gosu → include/Gosu}/Utility.hpp +15 -4
  180. data/{Gosu → include/Gosu}/Version.hpp +3 -3
  181. data/{Gosu → include/Gosu}/Window.hpp +46 -34
  182. data/lib/OpenAL32.dll +0 -0
  183. data/lib/SDL2.dll +0 -0
  184. data/lib/gosu.rb +0 -3
  185. data/lib/gosu/patches.rb +0 -23
  186. data/lib/gosu/preview.rb +1 -3
  187. data/lib/gosu/swig_patches.rb +14 -12
  188. data/lib64/OpenAL32.dll +0 -0
  189. data/lib64/SDL2.dll +0 -0
  190. data/rdoc/gosu.rb +112 -23
  191. data/src/Audio.cpp +50 -224
  192. data/src/AudioFile.hpp +20 -37
  193. data/src/AudioFileAudioToolbox.cpp +237 -0
  194. data/src/AudioFileSDLSound.cpp +147 -0
  195. data/src/AudioImpl.cpp +3 -12
  196. data/src/AudioImpl.hpp +3 -1
  197. data/src/Bitmap.cpp +85 -83
  198. data/src/BitmapIO.cpp +52 -58
  199. data/src/Font.cpp +3 -1
  200. data/src/Graphics.cpp +7 -4
  201. data/src/Image.cpp +13 -16
  202. data/src/Input.cpp +412 -164
  203. data/src/LargeImageData.cpp +1 -1
  204. data/src/MarkupParser.cpp +2 -1
  205. data/src/Resolution.cpp +8 -8
  206. data/src/RubyGosu.cxx +1017 -196
  207. data/src/RubyGosu.h +4 -2
  208. data/src/TexChunk.cpp +1 -1
  209. data/src/TextBuilder.cpp +3 -1
  210. data/src/Texture.cpp +1 -1
  211. data/src/TrueTypeFont.cpp +1 -1
  212. data/src/TrueTypeFontWin.cpp +3 -3
  213. data/src/Utility.cpp +11 -7
  214. data/src/Window.cpp +90 -62
  215. data/src/WindowUIKit.cpp +21 -9
  216. metadata +194 -65
  217. data/Gosu/AutoLink.hpp +0 -14
  218. data/Gosu/Bitmap.hpp +0 -113
  219. data/Gosu/Channel.h +0 -25
  220. data/Gosu/Color.h +0 -38
  221. data/Gosu/Font.h +0 -36
  222. data/Gosu/Gosu.h +0 -79
  223. data/Gosu/Image.h +0 -54
  224. data/Gosu/Sample.h +0 -19
  225. data/Gosu/Song.h +0 -24
  226. data/Gosu/TextInput.h +0 -30
  227. data/Gosu/Window.h +0 -61
  228. data/lib/gosu/zen.rb +0 -89
  229. data/src/AudioToolboxFile.hpp +0 -210
  230. data/src/ChannelWrapper.cpp +0 -50
  231. data/src/ColorWrapper.cpp +0 -126
  232. data/src/Constants.cpp +0 -287
  233. data/src/FontWrapper.cpp +0 -74
  234. data/src/GosuWrapper.cpp +0 -232
  235. data/src/ImageWrapper.cpp +0 -168
  236. data/src/MPEGFile.hpp +0 -90
  237. data/src/OggFile.hpp +0 -92
  238. data/src/SampleWrapper.cpp +0 -30
  239. data/src/SndFile.hpp +0 -174
  240. data/src/SongWrapper.cpp +0 -52
  241. data/src/TextInputWrapper.cpp +0 -101
  242. data/src/WinMain.cpp +0 -64
  243. data/src/WindowWrapper.cpp +0 -289
@@ -1,64 +0,0 @@
1
- #include <Gosu/Platform.hpp>
2
- #if defined(GOSU_IS_WIN)
3
-
4
- #include <exception>
5
- #include <string>
6
- #include <vector>
7
- #include <windows.h>
8
- using namespace std;
9
-
10
- vector<string> split_cmd_line()
11
- {
12
- vector<string> result;
13
-
14
- const char* cmd_line = ::GetCommandLineA();
15
-
16
- const char* arg_begin = nullptr;
17
- bool is_quoted_arg = false;
18
-
19
- while (*cmd_line) {
20
- if (*cmd_line == '"') {
21
- if (arg_begin == nullptr) {
22
- arg_begin = cmd_line + 1;
23
- is_quoted_arg = true;
24
- }
25
- else if (is_quoted_arg) {
26
- result.push_back(string(arg_begin, cmd_line));
27
- arg_begin = nullptr;
28
- }
29
- }
30
- else if (!isspace((unsigned char)*cmd_line) && arg_begin == nullptr) {
31
- arg_begin = cmd_line;
32
- is_quoted_arg = false;
33
- }
34
- else if (isspace((unsigned char)*cmd_line) && arg_begin != nullptr && !is_quoted_arg) {
35
- result.push_back(string(arg_begin, cmd_line + 1));
36
- arg_begin = nullptr;
37
- }
38
- ++cmd_line;
39
- }
40
-
41
- if (arg_begin != 0) result.push_back(arg_begin);
42
-
43
- return result;
44
- }
45
-
46
- int main(int argc, char* argv[]);
47
-
48
- int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
49
- {
50
- try {
51
- vector<string> arguments = split_cmd_line();
52
- vector<char*> argv(arguments.size());
53
- for (unsigned i = 0; i < argv.size(); ++i) {
54
- argv[i] = const_cast<char*>(arguments[i].c_str());
55
- }
56
- return main(argv.size(), &argv[0]);
57
- }
58
- catch (const exception& e) {
59
- ::MessageBoxA(0, e.what(), "Uncaught Exception", MB_OK | MB_ICONERROR);
60
- return EXIT_FAILURE;
61
- }
62
- }
63
-
64
- #endif
@@ -1,289 +0,0 @@
1
- #include <Gosu/Gosu.hpp>
2
-
3
- namespace Gosu
4
- {
5
- class WindowForWrapper : public Gosu::Window
6
- {
7
- public:
8
- WindowForWrapper(int width, int height, bool fullscreen, double update_interval, bool resizable);
9
- void update() override;
10
- void draw() override;
11
- void default_button_down(unsigned btn); // Enables fullscreen toggle
12
- void button_down(Gosu::Button btn) override;
13
- void button_up(Gosu::Button btn) override;
14
- void drop(const std::string &filename) override;
15
- bool needs_redraw() const override;
16
- bool needs_cursor() const override;
17
- void close() override;
18
-
19
- void close_immediately();
20
-
21
- std::function<void ()> update_callback;
22
- std::function<void ()> draw_callback;
23
- std::function<void (unsigned btn)> button_down_callback;
24
- std::function<void (unsigned btn)> button_up_callback;
25
- std::function<void (const char *filename)> drop_callback;
26
- std::function<bool ()> needs_redraw_callback;
27
- std::function<bool ()> needs_cursor_callback;
28
- std::function<void ()> close_callback;
29
- };
30
- } // namespace Gosu
31
-
32
- Gosu::WindowForWrapper::WindowForWrapper(int width, int height, bool fullscreen,
33
- double update_interval, bool resizable)
34
- : Gosu::Window(width, height, fullscreen, update_interval, resizable)
35
- {
36
- }
37
-
38
- void Gosu::WindowForWrapper::update()
39
- {
40
- if (update_callback != nullptr) {
41
- update_callback();
42
- }
43
- }
44
-
45
- void Gosu::WindowForWrapper::draw()
46
- {
47
- if (draw_callback != nullptr) {
48
- draw_callback();
49
- }
50
- }
51
-
52
- void Gosu::WindowForWrapper::default_button_down(unsigned btn)
53
- {
54
- Gosu::Window::button_down(Gosu::ButtonName(btn));
55
- }
56
-
57
- void Gosu::WindowForWrapper::button_down(Gosu::Button btn)
58
- {
59
- if (button_down_callback != nullptr) {
60
- button_down_callback(btn.id());
61
- }
62
- }
63
-
64
- void Gosu::WindowForWrapper::button_up(Gosu::Button btn)
65
- {
66
- if (button_up_callback != nullptr) {
67
- button_up_callback(btn.id());
68
- }
69
- }
70
-
71
- void Gosu::WindowForWrapper::drop(const std::string &filename)
72
- {
73
- if (drop_callback != nullptr) {
74
- drop_callback(filename.c_str());
75
- }
76
- }
77
-
78
- bool Gosu::WindowForWrapper::needs_redraw() const
79
- {
80
- if (needs_redraw_callback != nullptr) {
81
- return needs_redraw_callback();
82
- }
83
- else {
84
- return true;
85
- }
86
- }
87
-
88
- bool Gosu::WindowForWrapper::needs_cursor() const
89
- {
90
- if (needs_cursor_callback != nullptr) {
91
- return needs_cursor_callback();
92
- }
93
- else {
94
- return false;
95
- }
96
- }
97
-
98
- void Gosu::WindowForWrapper::close()
99
- {
100
- if (close_callback != nullptr) {
101
- close_callback();
102
- }
103
- else {
104
- Gosu::Window::close();
105
- }
106
- }
107
-
108
- void Gosu::WindowForWrapper::close_immediately()
109
- {
110
- Gosu::Window::close();
111
- }
112
-
113
- extern "C" {
114
- #include <Gosu/Window.h>
115
- #include <Gosu/TextInput.h>
116
-
117
- // Constructor
118
- Gosu_Window *Gosu_Window_create(int width, int height, bool fullscreen, double update_interval, bool resizable)
119
- {
120
- return reinterpret_cast<Gosu_Window *>(new Gosu::WindowForWrapper(width, height, fullscreen, update_interval, resizable));
121
- };
122
-
123
- // Callbacks
124
- void Gosu_Window_set_draw(Gosu_Window *window, void function(void *data), void *data)
125
- {
126
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->draw_callback = [=]() { function(data); };
127
- }
128
-
129
- void Gosu_Window_set_update(Gosu_Window *window, void function(void *data), void *data)
130
- {
131
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->update_callback = [=]() { function(data); };
132
- }
133
-
134
- void Gosu_Window_set_button_down(Gosu_Window *window, void function(void *data, unsigned btn), void *data)
135
- {
136
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->button_down_callback = [=](unsigned btn) { function(data, btn); };
137
- }
138
-
139
- void Gosu_Window_default_button_down(Gosu_Window *window, unsigned btn)
140
- {
141
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->default_button_down(btn);
142
- }
143
-
144
- void Gosu_Window_set_button_up(Gosu_Window *window, void function(void *data, unsigned btn), void *data)
145
- {
146
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->button_up_callback = [=](unsigned btn) { function(data, btn); };
147
- }
148
-
149
- void Gosu_Window_set_drop(Gosu_Window *window, void function(void *data, const char *filename), void *data)
150
- {
151
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->drop_callback = [=](const char *filename) { function(data, filename); };
152
- }
153
-
154
- void Gosu_Window_set_needs_redraw(Gosu_Window *window, bool function(void *data), void *data)
155
- {
156
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->needs_redraw_callback = [=]() -> bool { return function(data); };
157
- }
158
-
159
- void Gosu_Window_set_needs_cursor(Gosu_Window *window, bool function(void *data), void *data)
160
- {
161
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->needs_cursor_callback = [=]() -> bool { return function(data); };
162
- }
163
-
164
- void Gosu_Window_set_close(Gosu_Window *window, void function(void *data), void *data)
165
- {
166
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->close_callback = [=]() { function(data); };
167
- }
168
-
169
- Gosu_TextInput *Gosu_Window_text_input(Gosu_Window *window)
170
- {
171
- Gosu::Window *gosu_window = reinterpret_cast<Gosu::WindowForWrapper *>(window);
172
- return reinterpret_cast<Gosu_TextInput *>(gosu_window->input().text_input());
173
- }
174
-
175
- void Gosu_Window_set_text_input(Gosu_Window *window, Gosu_TextInput *text_input)
176
- {
177
- Gosu::Window *gosu_window = reinterpret_cast<Gosu::WindowForWrapper *>(window);
178
- gosu_window->input().set_text_input(reinterpret_cast<Gosu::TextInput *>(text_input));
179
- }
180
-
181
- void Gosu_Window_show(Gosu_Window *window)
182
- {
183
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->show();
184
- }
185
-
186
- bool Gosu_Window_tick(Gosu_Window *window)
187
- {
188
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->tick();
189
- }
190
-
191
- void Gosu_Window_close_immediately(Gosu_Window *window)
192
- {
193
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->close_immediately();
194
- }
195
-
196
- bool Gosu_Window_is_fullscreen(Gosu_Window *window)
197
- {
198
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->fullscreen();
199
- }
200
-
201
- bool Gosu_Window_is_resizable(Gosu_Window *window)
202
- {
203
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->resizable();
204
- }
205
-
206
- const char *Gosu_Window_caption(Gosu_Window *window)
207
- {
208
- static thread_local std::string caption;
209
- caption = reinterpret_cast<Gosu::WindowForWrapper *>(window)->caption();
210
-
211
- return caption.c_str();
212
- }
213
-
214
- void Gosu_Window_set_caption(Gosu_Window *window, const char *caption)
215
- {
216
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->set_caption(caption);
217
- }
218
-
219
- double Gosu_Window_update_interval(Gosu_Window *window)
220
- {
221
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->update_interval();
222
- }
223
-
224
- void Gosu_Window_set_update_interval(Gosu_Window *window, double update_interval)
225
- {
226
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->set_update_interval(update_interval);
227
- }
228
-
229
- void Gosu_Window_set_mouse_x(Gosu_Window *window, double x)
230
- {
231
- Gosu::Window *gosu_window = reinterpret_cast<Gosu::WindowForWrapper *>(window);
232
- gosu_window->input().set_mouse_position(x, gosu_window->input().mouse_x());
233
- }
234
-
235
- void Gosu_Window_set_mouse_y(Gosu_Window *window, double y)
236
- {
237
- Gosu::Window *gosu_window = reinterpret_cast<Gosu::WindowForWrapper *>(window);
238
- gosu_window->input().set_mouse_position(gosu_window->input().mouse_x(), y);
239
- }
240
-
241
- double Gosu_Window_mouse_x(Gosu_Window *window)
242
- {
243
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->input().mouse_x();
244
- }
245
-
246
- double Gosu_Window_mouse_y(Gosu_Window *window)
247
- {
248
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->input().mouse_y();
249
- }
250
-
251
- int Gosu_Window_width(Gosu_Window *window)
252
- {
253
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->width();
254
- }
255
-
256
- void Gosu_Window_set_width(Gosu_Window *window, int width)
257
- {
258
- Gosu::Window *gosu_window = reinterpret_cast<Gosu::WindowForWrapper *>(window);
259
- gosu_window->resize(width, gosu_window->height(), gosu_window->fullscreen());
260
- }
261
-
262
- int Gosu_Window_height(Gosu_Window *window)
263
- {
264
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->height();
265
- }
266
-
267
- void Gosu_Window_set_height(Gosu_Window *window, int height)
268
- {
269
- Gosu::Window *gosu_window = reinterpret_cast<Gosu::WindowForWrapper *>(window);
270
- gosu_window->resize(gosu_window->width(), height, gosu_window->fullscreen());
271
- }
272
-
273
- void Gosu_Window_resize(Gosu_Window *window, int width, int height, bool fullscreen)
274
- {
275
- reinterpret_cast<Gosu::WindowForWrapper *>(window)->resize(width, height, fullscreen);
276
- }
277
-
278
- int Gosu_Window_is_button_down(Gosu_Window *window, unsigned btn)
279
- {
280
- return reinterpret_cast<Gosu::WindowForWrapper *>(window)->input().down(Gosu::Button(btn));
281
- }
282
-
283
- // Destructor
284
- void Gosu_Window_destroy(Gosu_Window *window)
285
- {
286
- delete (reinterpret_cast<Gosu::WindowForWrapper *>(window));
287
- }
288
-
289
- }