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
@@ -17,8 +17,7 @@ struct Gosu::Window::Impl
17
17
  string caption;
18
18
  };
19
19
 
20
- Gosu::Window::Window(unsigned width, unsigned height, bool fullscreen, double update_interval,
21
- bool resizable)
20
+ Gosu::Window::Window(int width, int height, unsigned window_flags, double update_interval)
22
21
  : pimpl(new Impl)
23
22
  {
24
23
  pimpl->window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
@@ -50,12 +49,12 @@ Gosu::Window::~Window()
50
49
  {
51
50
  }
52
51
 
53
- unsigned Gosu::Window::width() const
52
+ int Gosu::Window::width() const
54
53
  {
55
54
  return graphics().width();
56
55
  }
57
56
 
58
- unsigned Gosu::Window::height() const
57
+ int Gosu::Window::height() const
59
58
  {
60
59
  return graphics().height();
61
60
  }
@@ -70,7 +69,20 @@ bool Gosu::Window::resizable() const
70
69
  return false;
71
70
  }
72
71
 
73
- void Gosu::Window::resize(unsigned width, unsigned height, bool fullscreen)
72
+ void Gosu::Window::set_resizable(bool resizable)
73
+ {
74
+ }
75
+
76
+ bool Gosu::Window::borderless() const
77
+ {
78
+ return true;
79
+ }
80
+
81
+ void Gosu::Window::set_borderless(bool borderless)
82
+ {
83
+ }
84
+
85
+ void Gosu::Window::resize(int width, int height, bool fullscreen)
74
86
  {
75
87
  throw logic_error("Cannot resize windows on iOS");
76
88
  }
@@ -138,24 +150,24 @@ void* Gosu::Window::uikit_window() const
138
150
  return (__bridge void*) pimpl->window;
139
151
  }
140
152
 
141
- unsigned Gosu::screen_width(Window*)
153
+ int Gosu::screen_width(Window*)
142
154
  {
143
155
  return available_width() * [UIScreen mainScreen].scale;
144
156
  }
145
157
 
146
- unsigned Gosu::screen_height(Window*)
158
+ int Gosu::screen_height(Window*)
147
159
  {
148
160
  return available_height() * [UIScreen mainScreen].scale;
149
161
  }
150
162
 
151
- unsigned Gosu::available_width(Window*)
163
+ int Gosu::available_width(Window*)
152
164
  {
153
165
  static CGSize screen_size = [UIScreen mainScreen].bounds.size;
154
166
  static CGFloat width = MAX(screen_size.width, screen_size.height);
155
167
  return width;
156
168
  }
157
169
 
158
- unsigned Gosu::available_height(Window*)
170
+ int Gosu::available_height(Window*)
159
171
  {
160
172
  static CGSize screen_size = [UIScreen mainScreen].bounds.size;
161
173
  static CGFloat height = MIN(screen_size.width, screen_size.height);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.2
4
+ version: 1.1.0.pre2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Raschke
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-02 00:00:00.000000000 Z
11
+ date: 2021-01-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  2D game development library.
@@ -27,64 +27,211 @@ extra_rdoc_files:
27
27
  files:
28
28
  - ".yardopts"
29
29
  - COPYING
30
- - Gosu/Audio.hpp
31
- - Gosu/AutoLink.hpp
32
- - Gosu/Bitmap.hpp
33
- - Gosu/Buttons.hpp
34
- - Gosu/Channel.h
35
- - Gosu/Color.h
36
- - Gosu/Color.hpp
37
- - Gosu/Directories.hpp
38
- - Gosu/Font.h
39
- - Gosu/Font.hpp
40
- - Gosu/Fwd.hpp
41
- - Gosu/Gosu.h
42
- - Gosu/Gosu.hpp
43
- - Gosu/Graphics.hpp
44
- - Gosu/GraphicsBase.hpp
45
- - Gosu/IO.hpp
46
- - Gosu/Image.h
47
- - Gosu/Image.hpp
48
- - Gosu/ImageData.hpp
49
- - Gosu/Input.hpp
50
- - Gosu/Inspection.hpp
51
- - Gosu/Math.hpp
52
- - Gosu/Platform.hpp
53
- - Gosu/Sample.h
54
- - Gosu/Song.h
55
- - Gosu/Text.hpp
56
- - Gosu/TextInput.h
57
- - Gosu/TextInput.hpp
58
- - Gosu/Timing.hpp
59
- - Gosu/Utility.hpp
60
- - Gosu/Version.hpp
61
- - Gosu/Window.h
62
- - Gosu/Window.hpp
63
30
  - README.md
31
+ - dependencies/SDL/include/SDL.h
32
+ - dependencies/SDL/include/SDL_assert.h
33
+ - dependencies/SDL/include/SDL_atomic.h
34
+ - dependencies/SDL/include/SDL_audio.h
35
+ - dependencies/SDL/include/SDL_bits.h
36
+ - dependencies/SDL/include/SDL_blendmode.h
37
+ - dependencies/SDL/include/SDL_clipboard.h
38
+ - dependencies/SDL/include/SDL_config.h
39
+ - dependencies/SDL/include/SDL_config_android.h
40
+ - dependencies/SDL/include/SDL_config_iphoneos.h
41
+ - dependencies/SDL/include/SDL_config_macosx.h
42
+ - dependencies/SDL/include/SDL_config_minimal.h
43
+ - dependencies/SDL/include/SDL_config_os2.h
44
+ - dependencies/SDL/include/SDL_config_pandora.h
45
+ - dependencies/SDL/include/SDL_config_psp.h
46
+ - dependencies/SDL/include/SDL_config_windows.h
47
+ - dependencies/SDL/include/SDL_config_winrt.h
48
+ - dependencies/SDL/include/SDL_config_wiz.h
49
+ - dependencies/SDL/include/SDL_copying.h
50
+ - dependencies/SDL/include/SDL_cpuinfo.h
51
+ - dependencies/SDL/include/SDL_egl.h
52
+ - dependencies/SDL/include/SDL_endian.h
53
+ - dependencies/SDL/include/SDL_error.h
54
+ - dependencies/SDL/include/SDL_events.h
55
+ - dependencies/SDL/include/SDL_filesystem.h
56
+ - dependencies/SDL/include/SDL_gamecontroller.h
57
+ - dependencies/SDL/include/SDL_gesture.h
58
+ - dependencies/SDL/include/SDL_haptic.h
59
+ - dependencies/SDL/include/SDL_hints.h
60
+ - dependencies/SDL/include/SDL_joystick.h
61
+ - dependencies/SDL/include/SDL_keyboard.h
62
+ - dependencies/SDL/include/SDL_keycode.h
63
+ - dependencies/SDL/include/SDL_loadso.h
64
+ - dependencies/SDL/include/SDL_locale.h
65
+ - dependencies/SDL/include/SDL_log.h
66
+ - dependencies/SDL/include/SDL_main.h
67
+ - dependencies/SDL/include/SDL_messagebox.h
68
+ - dependencies/SDL/include/SDL_metal.h
69
+ - dependencies/SDL/include/SDL_misc.h
70
+ - dependencies/SDL/include/SDL_mouse.h
71
+ - dependencies/SDL/include/SDL_mutex.h
72
+ - dependencies/SDL/include/SDL_name.h
73
+ - dependencies/SDL/include/SDL_opengl.h
74
+ - dependencies/SDL/include/SDL_opengl_glext.h
75
+ - dependencies/SDL/include/SDL_opengles.h
76
+ - dependencies/SDL/include/SDL_opengles2.h
77
+ - dependencies/SDL/include/SDL_opengles2_gl2.h
78
+ - dependencies/SDL/include/SDL_opengles2_gl2ext.h
79
+ - dependencies/SDL/include/SDL_opengles2_gl2platform.h
80
+ - dependencies/SDL/include/SDL_opengles2_khrplatform.h
81
+ - dependencies/SDL/include/SDL_pixels.h
82
+ - dependencies/SDL/include/SDL_platform.h
83
+ - dependencies/SDL/include/SDL_power.h
84
+ - dependencies/SDL/include/SDL_quit.h
85
+ - dependencies/SDL/include/SDL_rect.h
86
+ - dependencies/SDL/include/SDL_render.h
87
+ - dependencies/SDL/include/SDL_revision.h
88
+ - dependencies/SDL/include/SDL_rwops.h
89
+ - dependencies/SDL/include/SDL_scancode.h
90
+ - dependencies/SDL/include/SDL_sensor.h
91
+ - dependencies/SDL/include/SDL_shape.h
92
+ - dependencies/SDL/include/SDL_stdinc.h
93
+ - dependencies/SDL/include/SDL_surface.h
94
+ - dependencies/SDL/include/SDL_system.h
95
+ - dependencies/SDL/include/SDL_syswm.h
96
+ - dependencies/SDL/include/SDL_test.h
97
+ - dependencies/SDL/include/SDL_test_assert.h
98
+ - dependencies/SDL/include/SDL_test_common.h
99
+ - dependencies/SDL/include/SDL_test_compare.h
100
+ - dependencies/SDL/include/SDL_test_crc32.h
101
+ - dependencies/SDL/include/SDL_test_font.h
102
+ - dependencies/SDL/include/SDL_test_fuzzer.h
103
+ - dependencies/SDL/include/SDL_test_harness.h
104
+ - dependencies/SDL/include/SDL_test_images.h
105
+ - dependencies/SDL/include/SDL_test_log.h
106
+ - dependencies/SDL/include/SDL_test_md5.h
107
+ - dependencies/SDL/include/SDL_test_memory.h
108
+ - dependencies/SDL/include/SDL_test_random.h
109
+ - dependencies/SDL/include/SDL_thread.h
110
+ - dependencies/SDL/include/SDL_timer.h
111
+ - dependencies/SDL/include/SDL_touch.h
112
+ - dependencies/SDL/include/SDL_types.h
113
+ - dependencies/SDL/include/SDL_version.h
114
+ - dependencies/SDL/include/SDL_video.h
115
+ - dependencies/SDL/include/SDL_vulkan.h
116
+ - dependencies/SDL/include/begin_code.h
117
+ - dependencies/SDL/include/close_code.h
118
+ - dependencies/SDL/lib/x64/libSDL2.dll.a
119
+ - dependencies/SDL/lib/x86/libSDL2.dll.a
120
+ - dependencies/SDL_sound/SDL_sound.c
121
+ - dependencies/SDL_sound/SDL_sound.h
122
+ - dependencies/SDL_sound/SDL_sound_aiff.c
123
+ - dependencies/SDL_sound/SDL_sound_au.c
124
+ - dependencies/SDL_sound/SDL_sound_coreaudio.c
125
+ - dependencies/SDL_sound/SDL_sound_flac.c
126
+ - dependencies/SDL_sound/SDL_sound_internal.h
127
+ - dependencies/SDL_sound/SDL_sound_modplug.c
128
+ - dependencies/SDL_sound/SDL_sound_mp3.c
129
+ - dependencies/SDL_sound/SDL_sound_raw.c
130
+ - dependencies/SDL_sound/SDL_sound_shn.c
131
+ - dependencies/SDL_sound/SDL_sound_voc.c
132
+ - dependencies/SDL_sound/SDL_sound_vorbis.c
133
+ - dependencies/SDL_sound/SDL_sound_wav.c
134
+ - dependencies/SDL_sound/dr_flac.h
135
+ - dependencies/SDL_sound/dr_mp3.h
136
+ - dependencies/SDL_sound/libmodplug/fastmix.c
137
+ - dependencies/SDL_sound/libmodplug/libmodplug.h
138
+ - dependencies/SDL_sound/libmodplug/load_669.c
139
+ - dependencies/SDL_sound/libmodplug/load_abc.c
140
+ - dependencies/SDL_sound/libmodplug/load_amf.c
141
+ - dependencies/SDL_sound/libmodplug/load_ams.c
142
+ - dependencies/SDL_sound/libmodplug/load_dbm.c
143
+ - dependencies/SDL_sound/libmodplug/load_dmf.c
144
+ - dependencies/SDL_sound/libmodplug/load_dsm.c
145
+ - dependencies/SDL_sound/libmodplug/load_far.c
146
+ - dependencies/SDL_sound/libmodplug/load_it.c
147
+ - dependencies/SDL_sound/libmodplug/load_mdl.c
148
+ - dependencies/SDL_sound/libmodplug/load_med.c
149
+ - dependencies/SDL_sound/libmodplug/load_mid.c
150
+ - dependencies/SDL_sound/libmodplug/load_mod.c
151
+ - dependencies/SDL_sound/libmodplug/load_mt2.c
152
+ - dependencies/SDL_sound/libmodplug/load_mtm.c
153
+ - dependencies/SDL_sound/libmodplug/load_okt.c
154
+ - dependencies/SDL_sound/libmodplug/load_pat.c
155
+ - dependencies/SDL_sound/libmodplug/load_pat.h
156
+ - dependencies/SDL_sound/libmodplug/load_psm.c
157
+ - dependencies/SDL_sound/libmodplug/load_ptm.c
158
+ - dependencies/SDL_sound/libmodplug/load_s3m.c
159
+ - dependencies/SDL_sound/libmodplug/load_stm.c
160
+ - dependencies/SDL_sound/libmodplug/load_ult.c
161
+ - dependencies/SDL_sound/libmodplug/load_umx.c
162
+ - dependencies/SDL_sound/libmodplug/load_xm.c
163
+ - dependencies/SDL_sound/libmodplug/mmcmp.c
164
+ - dependencies/SDL_sound/libmodplug/modplug.c
165
+ - dependencies/SDL_sound/libmodplug/modplug.h
166
+ - dependencies/SDL_sound/libmodplug/snd_dsp.c
167
+ - dependencies/SDL_sound/libmodplug/snd_flt.c
168
+ - dependencies/SDL_sound/libmodplug/snd_fx.c
169
+ - dependencies/SDL_sound/libmodplug/sndfile.c
170
+ - dependencies/SDL_sound/libmodplug/sndmix.c
171
+ - dependencies/SDL_sound/libmodplug/tables.h
172
+ - dependencies/SDL_sound/stb_vorbis.h
173
+ - dependencies/al_soft/AL/al.h
174
+ - dependencies/al_soft/AL/alc.h
175
+ - dependencies/al_soft/AL/alext.h
176
+ - dependencies/al_soft/AL/efx-creative.h
177
+ - dependencies/al_soft/AL/efx-presets.h
178
+ - dependencies/al_soft/AL/efx.h
179
+ - dependencies/al_soft/x64/libOpenAL32.dll.a
180
+ - dependencies/al_soft/x86/libOpenAL32.dll.a
181
+ - dependencies/stb/stb_image.h
182
+ - dependencies/stb/stb_image_write.h
183
+ - dependencies/stb/stb_truetype.h
184
+ - dependencies/utf8proc/utf8proc.c
185
+ - dependencies/utf8proc/utf8proc.h
186
+ - dependencies/utf8proc/utf8proc_data.h
64
187
  - ext/gosu/extconf.rb
188
+ - include/Gosu/Audio.hpp
189
+ - include/Gosu/Bitmap.hpp
190
+ - include/Gosu/Buttons.hpp
191
+ - include/Gosu/Color.hpp
192
+ - include/Gosu/Directories.hpp
193
+ - include/Gosu/Font.hpp
194
+ - include/Gosu/Fwd.hpp
195
+ - include/Gosu/Gosu.hpp
196
+ - include/Gosu/Graphics.hpp
197
+ - include/Gosu/GraphicsBase.hpp
198
+ - include/Gosu/IO.hpp
199
+ - include/Gosu/Image.hpp
200
+ - include/Gosu/ImageData.hpp
201
+ - include/Gosu/Input.hpp
202
+ - include/Gosu/Inspection.hpp
203
+ - include/Gosu/Math.hpp
204
+ - include/Gosu/Platform.hpp
205
+ - include/Gosu/Text.hpp
206
+ - include/Gosu/TextInput.hpp
207
+ - include/Gosu/Timing.hpp
208
+ - include/Gosu/Utility.hpp
209
+ - include/Gosu/Version.hpp
210
+ - include/Gosu/Window.hpp
211
+ - lib/OpenAL32.dll
212
+ - lib/SDL2.dll
65
213
  - lib/gosu.rb
66
214
  - lib/gosu/compat.rb
67
215
  - lib/gosu/patches.rb
68
216
  - lib/gosu/preview.rb
69
217
  - lib/gosu/run.rb
70
218
  - lib/gosu/swig_patches.rb
71
- - lib/gosu/zen.rb
219
+ - lib64/OpenAL32.dll
220
+ - lib64/SDL2.dll
72
221
  - rdoc/gosu.rb
73
222
  - src/Audio.cpp
74
223
  - src/AudioFile.hpp
224
+ - src/AudioFileAudioToolbox.cpp
225
+ - src/AudioFileSDLSound.cpp
75
226
  - src/AudioImpl.cpp
76
227
  - src/AudioImpl.hpp
77
- - src/AudioToolboxFile.hpp
78
228
  - src/Bitmap.cpp
79
229
  - src/BitmapIO.cpp
80
230
  - src/BlockAllocator.cpp
81
231
  - src/BlockAllocator.hpp
82
232
  - src/Channel.cpp
83
- - src/ChannelWrapper.cpp
84
233
  - src/ClipRectStack.hpp
85
234
  - src/Color.cpp
86
- - src/ColorWrapper.cpp
87
- - src/Constants.cpp
88
235
  - src/DirectoriesApple.cpp
89
236
  - src/DirectoriesUnix.cpp
90
237
  - src/DirectoriesWin.cpp
@@ -94,25 +241,21 @@ files:
94
241
  - src/FileUnix.cpp
95
242
  - src/FileWin.cpp
96
243
  - src/Font.cpp
97
- - src/FontWrapper.cpp
98
244
  - src/GosuGLView.cpp
99
245
  - src/GosuGLView.hpp
100
246
  - src/GosuViewController.cpp
101
247
  - src/GosuViewController.hpp
102
- - src/GosuWrapper.cpp
103
248
  - src/Graphics.cpp
104
249
  - src/GraphicsImpl.hpp
105
250
  - src/IO.cpp
106
251
  - src/Iconv.hpp
107
252
  - src/Image.cpp
108
- - src/ImageWrapper.cpp
109
253
  - src/Input.cpp
110
254
  - src/InputUIKit.cpp
111
255
  - src/Inspection.cpp
112
256
  - src/LargeImageData.cpp
113
257
  - src/LargeImageData.hpp
114
258
  - src/Log.hpp
115
- - src/MPEGFile.hpp
116
259
  - src/Macro.cpp
117
260
  - src/Macro.hpp
118
261
  - src/MarkupParser.cpp
@@ -120,21 +263,16 @@ files:
120
263
  - src/Math.cpp
121
264
  - src/OffScreenTarget.cpp
122
265
  - src/OffScreenTarget.hpp
123
- - src/OggFile.hpp
124
266
  - src/RenderState.hpp
125
267
  - src/Resolution.cpp
126
268
  - src/RubyGosu.cxx
127
269
  - src/RubyGosu.h
128
- - src/SampleWrapper.cpp
129
- - src/SndFile.hpp
130
- - src/SongWrapper.cpp
131
270
  - src/TexChunk.cpp
132
271
  - src/TexChunk.hpp
133
272
  - src/Text.cpp
134
273
  - src/TextBuilder.cpp
135
274
  - src/TextBuilder.hpp
136
275
  - src/TextInput.cpp
137
- - src/TextInputWrapper.cpp
138
276
  - src/Texture.cpp
139
277
  - src/Texture.hpp
140
278
  - src/TimingApple.cpp
@@ -151,24 +289,15 @@ files:
151
289
  - src/UtilityApple.cpp
152
290
  - src/UtilityWin.cpp
153
291
  - src/Version.cpp
154
- - src/WinMain.cpp
155
292
  - src/WinUtility.cpp
156
293
  - src/WinUtility.hpp
157
294
  - src/Window.cpp
158
295
  - src/WindowUIKit.cpp
159
- - src/WindowWrapper.cpp
160
- - src/stb_image.h
161
- - src/stb_image_write.h
162
- - src/stb_truetype.h
163
- - src/stb_vorbis.c
164
- - src/utf8proc.c
165
- - src/utf8proc.h
166
- - src/utf8proc_data.h
167
296
  homepage: https://www.libgosu.org/
168
297
  licenses:
169
298
  - MIT
170
299
  metadata: {}
171
- post_install_message:
300
+ post_install_message:
172
301
  rdoc_options:
173
302
  - "-m"
174
303
  - README.md
@@ -180,15 +309,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
180
309
  requirements:
181
310
  - - ">="
182
311
  - !ruby/object:Gem::Version
183
- version: 1.9.3
312
+ version: 2.5.0
184
313
  required_rubygems_version: !ruby/object:Gem::Requirement
185
314
  requirements:
186
- - - ">="
315
+ - - ">"
187
316
  - !ruby/object:Gem::Version
188
- version: '0'
317
+ version: 1.3.1
189
318
  requirements: []
190
- rubygems_version: 3.0.3
191
- signing_key:
319
+ rubygems_version: 3.2.3
320
+ signing_key:
192
321
  specification_version: 4
193
322
  summary: 2D game development library.
194
323
  test_files: []
@@ -1,14 +0,0 @@
1
- //! \file AutoLink.hpp
2
- //! Contains pragmas that make MSVC link against all the necessary libraries
3
- //! automatically.
4
-
5
- #ifdef _MSC_VER
6
- #pragma once
7
-
8
- #ifdef NDEBUG
9
- #pragma comment(lib, "Gosu.lib")
10
- #else
11
- #pragma comment(lib, "GosuDebug.lib")
12
- #endif
13
-
14
- #endif
@@ -1,113 +0,0 @@
1
- //! \file Bitmap.hpp
2
- //! Interface of the Bitmap class.
3
-
4
- #pragma once
5
-
6
- #include <Gosu/Fwd.hpp>
7
- #include <Gosu/Color.hpp>
8
- #include <Gosu/GraphicsBase.hpp>
9
- #include <Gosu/Platform.hpp>
10
- #include <string>
11
- #include <vector>
12
-
13
- namespace Gosu
14
- {
15
- //! Rectangular area of pixels, each represented by a Color value. Provides
16
- //! minimal drawing functionality and serves as a temporary holder for
17
- //! graphical resources which are usually turned into Images later.
18
- //! Has (expensive) value semantics.
19
- class Bitmap
20
- {
21
- unsigned w, h;
22
- std::vector<Color> pixels;
23
-
24
- public:
25
- Bitmap()
26
- : w(0), h(0)
27
- {
28
- }
29
-
30
- Bitmap(unsigned w, unsigned h, Color c = Color::NONE)
31
- : w(w), h(h), pixels(w * h, c)
32
- {
33
- }
34
-
35
- unsigned width() const
36
- {
37
- return w;
38
- }
39
-
40
- unsigned height() const
41
- {
42
- return h;
43
- }
44
-
45
- void swap(Bitmap& other);
46
-
47
- void resize(unsigned width, unsigned height, Color c = Color::NONE);
48
-
49
- //! Returns the color at the specified position. x and y must be on the
50
- //! bitmap.
51
- Color get_pixel(unsigned x, unsigned y) const
52
- {
53
- return pixels[y * w + x];
54
- }
55
-
56
- //! Sets the pixel at the specified position to a color. x and y must
57
- //! be on the bitmap.
58
- void set_pixel(unsigned x, unsigned y, Color c)
59
- {
60
- pixels[y * w + x] = c;
61
- }
62
-
63
- //! This updates a pixel using the "over" alpha compositing operator, see:
64
- //! https://en.wikipedia.org/wiki/Alpha_compositing
65
- void blend_pixel(unsigned x, unsigned y, Color c);
66
-
67
- //! Inserts a bitmap at the given position. Parts of the inserted
68
- //! bitmap that would be outside of the target bitmap will be
69
- //! clipped away.
70
- void insert(const Bitmap& source, int x, int y);
71
-
72
- //! Inserts a portion of a bitmap at the given position. Parts of the
73
- //! inserted bitmap that would be outside of the target bitmap will be
74
- //! clipped away.
75
- void insert(const Bitmap& source, int x, int y, unsigned src_x, unsigned src_y,
76
- unsigned src_width, unsigned src_height);
77
-
78
- //! Direct access to the array of color values. May be useful for optimized
79
- //! OpenGL operations.
80
- const Color* data() const
81
- {
82
- return &pixels[0];
83
- }
84
-
85
- Color* data()
86
- {
87
- return &pixels[0];
88
- }
89
- };
90
-
91
- //! Loads any supported image into a Bitmap.
92
- void load_image_file(Bitmap& bitmap, const std::string& filename);
93
- //! Loads any supported image into a Bitmap.
94
- void load_image_file(Bitmap& bitmap, Reader input);
95
-
96
- //! Saves a Bitmap to a file.
97
- void save_image_file(const Bitmap& bitmap, const std::string& filename);
98
- //! Saves a Bitmap to an arbitrary resource.
99
- void save_image_file(const Bitmap& bitmap, Writer writer,
100
- const std::string& format_hint = "png");
101
-
102
- //! Set the alpha value of all pixels which are equal to the color key
103
- //! to zero. Color values are adjusted so that no borders show up when
104
- //! the image is stretched or rotated.
105
- void apply_color_key(Bitmap& bitmap, Color key);
106
-
107
- //! The reverse of apply_color_key. Resets all fully transparent pixels by
108
- //! a background color, makes all other pixels fully opaque.
109
- void unapply_color_key(Bitmap& bitmap, Color background);
110
-
111
- void apply_border_flags(Bitmap& dest, const Bitmap& source, unsigned src_x, unsigned src_y,
112
- unsigned src_width, unsigned src_height, unsigned border_flags);
113
- }