gosu 0.15.1 → 1.1.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -0
  3. data/COPYING +1 -1
  4. data/dependencies/SDL/include/SDL.h +138 -0
  5. data/dependencies/SDL/include/SDL_assert.h +293 -0
  6. data/dependencies/SDL/include/SDL_atomic.h +295 -0
  7. data/dependencies/SDL/include/SDL_audio.h +859 -0
  8. data/dependencies/SDL/include/SDL_bits.h +121 -0
  9. data/dependencies/SDL/include/SDL_blendmode.h +123 -0
  10. data/dependencies/SDL/include/SDL_clipboard.h +71 -0
  11. data/dependencies/SDL/include/SDL_config.h +55 -0
  12. data/dependencies/SDL/include/SDL_config_android.h +182 -0
  13. data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
  14. data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
  15. data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
  16. data/dependencies/SDL/include/SDL_config_os2.h +188 -0
  17. data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
  18. data/dependencies/SDL/include/SDL_config_psp.h +165 -0
  19. data/dependencies/SDL/include/SDL_config_windows.h +288 -0
  20. data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
  21. data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
  22. data/dependencies/SDL/include/SDL_copying.h +20 -0
  23. data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
  24. data/dependencies/SDL/include/SDL_egl.h +1676 -0
  25. data/dependencies/SDL/include/SDL_endian.h +263 -0
  26. data/dependencies/SDL/include/SDL_error.h +112 -0
  27. data/dependencies/SDL/include/SDL_events.h +827 -0
  28. data/dependencies/SDL/include/SDL_filesystem.h +136 -0
  29. data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
  30. data/dependencies/SDL/include/SDL_gesture.h +87 -0
  31. data/dependencies/SDL/include/SDL_haptic.h +1247 -0
  32. data/dependencies/SDL/include/SDL_hints.h +1578 -0
  33. data/dependencies/SDL/include/SDL_joystick.h +499 -0
  34. data/dependencies/SDL/include/SDL_keyboard.h +217 -0
  35. data/dependencies/SDL/include/SDL_keycode.h +351 -0
  36. data/dependencies/SDL/include/SDL_loadso.h +81 -0
  37. data/dependencies/SDL/include/SDL_locale.h +101 -0
  38. data/dependencies/SDL/include/SDL_log.h +211 -0
  39. data/dependencies/SDL/include/SDL_main.h +180 -0
  40. data/dependencies/SDL/include/SDL_messagebox.h +146 -0
  41. data/dependencies/SDL/include/SDL_metal.h +117 -0
  42. data/dependencies/SDL/include/SDL_misc.h +75 -0
  43. data/dependencies/SDL/include/SDL_mouse.h +302 -0
  44. data/dependencies/SDL/include/SDL_mutex.h +251 -0
  45. data/dependencies/SDL/include/SDL_name.h +33 -0
  46. data/dependencies/SDL/include/SDL_opengl.h +2183 -0
  47. data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
  48. data/dependencies/SDL/include/SDL_opengles.h +39 -0
  49. data/dependencies/SDL/include/SDL_opengles2.h +52 -0
  50. data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
  51. data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
  52. data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
  53. data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
  54. data/dependencies/SDL/include/SDL_pixels.h +479 -0
  55. data/dependencies/SDL/include/SDL_platform.h +198 -0
  56. data/dependencies/SDL/include/SDL_power.h +75 -0
  57. data/dependencies/SDL/include/SDL_quit.h +58 -0
  58. data/dependencies/SDL/include/SDL_rect.h +174 -0
  59. data/dependencies/SDL/include/SDL_render.h +1158 -0
  60. data/dependencies/SDL/include/SDL_revision.h +2 -0
  61. data/dependencies/SDL/include/SDL_rwops.h +283 -0
  62. data/dependencies/SDL/include/SDL_scancode.h +413 -0
  63. data/dependencies/SDL/include/SDL_sensor.h +267 -0
  64. data/dependencies/SDL/include/SDL_shape.h +144 -0
  65. data/dependencies/SDL/include/SDL_stdinc.h +647 -0
  66. data/dependencies/SDL/include/SDL_surface.h +563 -0
  67. data/dependencies/SDL/include/SDL_system.h +325 -0
  68. data/dependencies/SDL/include/SDL_syswm.h +354 -0
  69. data/dependencies/SDL/include/SDL_test.h +69 -0
  70. data/dependencies/SDL/include/SDL_test_assert.h +105 -0
  71. data/dependencies/SDL/include/SDL_test_common.h +218 -0
  72. data/dependencies/SDL/include/SDL_test_compare.h +69 -0
  73. data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
  74. data/dependencies/SDL/include/SDL_test_font.h +81 -0
  75. data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
  76. data/dependencies/SDL/include/SDL_test_harness.h +134 -0
  77. data/dependencies/SDL/include/SDL_test_images.h +78 -0
  78. data/dependencies/SDL/include/SDL_test_log.h +67 -0
  79. data/dependencies/SDL/include/SDL_test_md5.h +129 -0
  80. data/dependencies/SDL/include/SDL_test_memory.h +63 -0
  81. data/dependencies/SDL/include/SDL_test_random.h +115 -0
  82. data/dependencies/SDL/include/SDL_thread.h +366 -0
  83. data/dependencies/SDL/include/SDL_timer.h +115 -0
  84. data/dependencies/SDL/include/SDL_touch.h +102 -0
  85. data/dependencies/SDL/include/SDL_types.h +29 -0
  86. data/dependencies/SDL/include/SDL_version.h +162 -0
  87. data/dependencies/SDL/include/SDL_video.h +1282 -0
  88. data/dependencies/SDL/include/SDL_vulkan.h +276 -0
  89. data/dependencies/SDL/include/begin_code.h +166 -0
  90. data/dependencies/SDL/include/close_code.h +40 -0
  91. data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
  92. data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
  93. data/dependencies/SDL_sound/SDL_sound.c +795 -0
  94. data/dependencies/SDL_sound/SDL_sound.h +725 -0
  95. data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
  96. data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
  97. data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
  98. data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
  99. data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
  100. data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
  101. data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
  102. data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
  103. data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
  104. data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
  105. data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
  106. data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
  107. data/dependencies/SDL_sound/dr_flac.h +5906 -0
  108. data/dependencies/SDL_sound/dr_mp3.h +2832 -0
  109. data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
  110. data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
  111. data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
  112. data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
  113. data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
  114. data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
  115. data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
  116. data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
  117. data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
  118. data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
  119. data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
  120. data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
  121. data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
  122. data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
  123. data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
  124. data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
  125. data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
  126. data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
  127. data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
  128. data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
  129. data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
  130. data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
  131. data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
  132. data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
  133. data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
  134. data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
  135. data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
  136. data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
  137. data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
  138. data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
  139. data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
  140. data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
  141. data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
  142. data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
  143. data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
  144. data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
  145. data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
  146. data/dependencies/al_soft/AL/al.h +655 -0
  147. data/dependencies/al_soft/AL/alc.h +270 -0
  148. data/dependencies/al_soft/AL/alext.h +585 -0
  149. data/dependencies/al_soft/AL/efx-creative.h +3 -0
  150. data/dependencies/al_soft/AL/efx-presets.h +402 -0
  151. data/dependencies/al_soft/AL/efx.h +762 -0
  152. data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
  153. data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
  154. data/{src → dependencies/stb}/stb_image.h +330 -127
  155. data/{src → dependencies/stb}/stb_image_write.h +156 -85
  156. data/{src → dependencies/stb}/stb_truetype.h +192 -69
  157. data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
  158. data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
  159. data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
  160. data/ext/gosu/extconf.rb +53 -39
  161. data/{Gosu → include/Gosu}/Audio.hpp +6 -8
  162. data/include/Gosu/Bitmap.hpp +100 -0
  163. data/{Gosu → include/Gosu}/Buttons.hpp +104 -44
  164. data/{Gosu → include/Gosu}/Color.hpp +0 -0
  165. data/{Gosu → include/Gosu}/Directories.hpp +0 -0
  166. data/{Gosu → include/Gosu}/Font.hpp +1 -1
  167. data/{Gosu → include/Gosu}/Fwd.hpp +0 -5
  168. data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
  169. data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
  170. data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
  171. data/{Gosu → include/Gosu}/IO.hpp +0 -0
  172. data/{Gosu → include/Gosu}/Image.hpp +7 -6
  173. data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
  174. data/{Gosu → include/Gosu}/Input.hpp +39 -51
  175. data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
  176. data/{Gosu → include/Gosu}/Math.hpp +0 -0
  177. data/{Gosu → include/Gosu}/Platform.hpp +0 -0
  178. data/{Gosu → include/Gosu}/Text.hpp +0 -0
  179. data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
  180. data/{Gosu → include/Gosu}/Timing.hpp +0 -0
  181. data/{Gosu → include/Gosu}/Utility.hpp +15 -4
  182. data/{Gosu → include/Gosu}/Version.hpp +3 -3
  183. data/{Gosu → include/Gosu}/Window.hpp +46 -34
  184. data/lib/OpenAL32.dll +0 -0
  185. data/lib/SDL2.dll +0 -0
  186. data/lib/gosu.rb +0 -3
  187. data/lib/gosu/patches.rb +0 -23
  188. data/lib/gosu/preview.rb +1 -3
  189. data/lib/gosu/swig_patches.rb +6 -8
  190. data/lib64/OpenAL32.dll +0 -0
  191. data/lib64/SDL2.dll +0 -0
  192. data/rdoc/gosu.rb +112 -23
  193. data/src/Audio.cpp +50 -224
  194. data/src/AudioFile.hpp +20 -37
  195. data/src/AudioFileAudioToolbox.cpp +237 -0
  196. data/src/AudioFileSDLSound.cpp +147 -0
  197. data/src/AudioImpl.cpp +3 -12
  198. data/src/AudioImpl.hpp +3 -1
  199. data/src/Bitmap.cpp +85 -83
  200. data/src/BitmapIO.cpp +52 -58
  201. data/src/Font.cpp +4 -1
  202. data/src/Graphics.cpp +7 -4
  203. data/src/Image.cpp +13 -16
  204. data/src/Input.cpp +412 -164
  205. data/src/LargeImageData.cpp +2 -1
  206. data/src/MarkupParser.cpp +2 -1
  207. data/src/Resolution.cpp +8 -8
  208. data/src/RubyGosu.cxx +1184 -352
  209. data/src/RubyGosu.h +3 -2
  210. data/src/TexChunk.cpp +1 -1
  211. data/src/Text.cpp +1 -0
  212. data/src/TextBuilder.cpp +3 -1
  213. data/src/Texture.cpp +1 -1
  214. data/src/TrueTypeFont.cpp +2 -1
  215. data/src/TrueTypeFontWin.cpp +3 -3
  216. data/src/Utility.cpp +11 -7
  217. data/src/Window.cpp +90 -62
  218. data/src/WindowUIKit.cpp +21 -9
  219. metadata +195 -46
  220. data/Gosu/AutoLink.hpp +0 -14
  221. data/Gosu/Bitmap.hpp +0 -113
  222. data/lib/gosu/zen.rb +0 -89
  223. data/src/AudioToolboxFile.hpp +0 -210
  224. data/src/MPEGFile.hpp +0 -90
  225. data/src/OggFile.hpp +0 -92
  226. data/src/SndFile.hpp +0 -174
  227. data/src/WinMain.cpp +0 -64
@@ -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.1
4
+ version: 1.1.0.pre1
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-01-21 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.
@@ -25,46 +25,206 @@ extra_rdoc_files:
25
25
  - COPYING
26
26
  - rdoc/gosu.rb
27
27
  files:
28
+ - ".yardopts"
28
29
  - COPYING
29
- - Gosu/Audio.hpp
30
- - Gosu/AutoLink.hpp
31
- - Gosu/Bitmap.hpp
32
- - Gosu/Buttons.hpp
33
- - Gosu/Color.hpp
34
- - Gosu/Directories.hpp
35
- - Gosu/Font.hpp
36
- - Gosu/Fwd.hpp
37
- - Gosu/Gosu.hpp
38
- - Gosu/Graphics.hpp
39
- - Gosu/GraphicsBase.hpp
40
- - Gosu/IO.hpp
41
- - Gosu/Image.hpp
42
- - Gosu/ImageData.hpp
43
- - Gosu/Input.hpp
44
- - Gosu/Inspection.hpp
45
- - Gosu/Math.hpp
46
- - Gosu/Platform.hpp
47
- - Gosu/Text.hpp
48
- - Gosu/TextInput.hpp
49
- - Gosu/Timing.hpp
50
- - Gosu/Utility.hpp
51
- - Gosu/Version.hpp
52
- - Gosu/Window.hpp
53
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
54
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
55
213
  - lib/gosu.rb
56
214
  - lib/gosu/compat.rb
57
215
  - lib/gosu/patches.rb
58
216
  - lib/gosu/preview.rb
59
217
  - lib/gosu/run.rb
60
218
  - lib/gosu/swig_patches.rb
61
- - lib/gosu/zen.rb
219
+ - lib64/OpenAL32.dll
220
+ - lib64/SDL2.dll
62
221
  - rdoc/gosu.rb
63
222
  - src/Audio.cpp
64
223
  - src/AudioFile.hpp
224
+ - src/AudioFileAudioToolbox.cpp
225
+ - src/AudioFileSDLSound.cpp
65
226
  - src/AudioImpl.cpp
66
227
  - src/AudioImpl.hpp
67
- - src/AudioToolboxFile.hpp
68
228
  - src/Bitmap.cpp
69
229
  - src/BitmapIO.cpp
70
230
  - src/BlockAllocator.cpp
@@ -96,7 +256,6 @@ files:
96
256
  - src/LargeImageData.cpp
97
257
  - src/LargeImageData.hpp
98
258
  - src/Log.hpp
99
- - src/MPEGFile.hpp
100
259
  - src/Macro.cpp
101
260
  - src/Macro.hpp
102
261
  - src/MarkupParser.cpp
@@ -104,12 +263,10 @@ files:
104
263
  - src/Math.cpp
105
264
  - src/OffScreenTarget.cpp
106
265
  - src/OffScreenTarget.hpp
107
- - src/OggFile.hpp
108
266
  - src/RenderState.hpp
109
267
  - src/Resolution.cpp
110
268
  - src/RubyGosu.cxx
111
269
  - src/RubyGosu.h
112
- - src/SndFile.hpp
113
270
  - src/TexChunk.cpp
114
271
  - src/TexChunk.hpp
115
272
  - src/Text.cpp
@@ -132,23 +289,15 @@ files:
132
289
  - src/UtilityApple.cpp
133
290
  - src/UtilityWin.cpp
134
291
  - src/Version.cpp
135
- - src/WinMain.cpp
136
292
  - src/WinUtility.cpp
137
293
  - src/WinUtility.hpp
138
294
  - src/Window.cpp
139
295
  - src/WindowUIKit.cpp
140
- - src/stb_image.h
141
- - src/stb_image_write.h
142
- - src/stb_truetype.h
143
- - src/stb_vorbis.c
144
- - src/utf8proc.c
145
- - src/utf8proc.h
146
- - src/utf8proc_data.h
147
296
  homepage: https://www.libgosu.org/
148
297
  licenses:
149
298
  - MIT
150
299
  metadata: {}
151
- post_install_message:
300
+ post_install_message:
152
301
  rdoc_options:
153
302
  - "-m"
154
303
  - README.md
@@ -160,15 +309,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
160
309
  requirements:
161
310
  - - ">="
162
311
  - !ruby/object:Gem::Version
163
- version: 1.9.3
312
+ version: 2.5.0
164
313
  required_rubygems_version: !ruby/object:Gem::Requirement
165
314
  requirements:
166
- - - ">="
315
+ - - ">"
167
316
  - !ruby/object:Gem::Version
168
- version: '0'
317
+ version: 1.3.1
169
318
  requirements: []
170
- rubygems_version: 3.0.6
171
- signing_key:
319
+ rubygems_version: 3.2.3
320
+ signing_key:
172
321
  specification_version: 4
173
322
  summary: 2D game development library.
174
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
- }