sdl2-bindings 0.0.8 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +124 -92
  3. data/LICENSE.txt +1 -1
  4. data/README.md +77 -53
  5. data/lib/sdl2.rb +131 -172
  6. data/lib/sdl2_audio.rb +261 -222
  7. data/lib/sdl2_blendmode.rb +72 -69
  8. data/lib/sdl2_clipboard.rb +56 -51
  9. data/lib/sdl2_cpuinfo.rb +129 -106
  10. data/lib/sdl2_error.rb +71 -64
  11. data/lib/sdl2_events.rb +564 -533
  12. data/lib/sdl2_filesystem.rb +52 -48
  13. data/lib/sdl2_framerate.rb +74 -67
  14. data/lib/sdl2_gamecontroller.rb +329 -274
  15. data/lib/sdl2_gesture.rb +61 -55
  16. data/lib/sdl2_gfxPrimitives.rb +283 -222
  17. data/lib/sdl2_haptic.rb +301 -269
  18. data/lib/sdl2_hidapi.rb +139 -118
  19. data/lib/sdl2_hints.rb +221 -197
  20. data/lib/sdl2_image.rb +232 -185
  21. data/lib/sdl2_imageFilter.rb +164 -132
  22. data/lib/sdl2_joystick.rb +294 -239
  23. data/lib/sdl2_keyboard.rb +125 -99
  24. data/lib/sdl2_keycode.rb +307 -305
  25. data/lib/sdl2_log.rb +131 -115
  26. data/lib/sdl2_main.rb +74 -67
  27. data/lib/sdl2_messagebox.rb +102 -98
  28. data/lib/sdl2_misc.rb +48 -45
  29. data/lib/sdl2_mixer.rb +392 -317
  30. data/lib/sdl2_mouse.rb +136 -117
  31. data/lib/sdl2_pixels.rb +240 -224
  32. data/lib/sdl2_platform.rb +48 -45
  33. data/lib/sdl2_power.rb +54 -51
  34. data/lib/sdl2_rect.rb +145 -102
  35. data/lib/sdl2_render.rb +408 -322
  36. data/lib/sdl2_rotozoom.rb +76 -66
  37. data/lib/sdl2_rwops.rb +238 -208
  38. data/lib/sdl2_scancode.rb +289 -287
  39. data/lib/sdl2_sensor.rb +115 -97
  40. data/lib/sdl2_shape.rb +83 -77
  41. data/lib/sdl2_sound.rb +154 -0
  42. data/lib/sdl2_stdinc.rb +556 -439
  43. data/lib/sdl2_surface.rb +229 -188
  44. data/lib/sdl2_syswm.rb +160 -156
  45. data/lib/sdl2_timer.rb +74 -65
  46. data/lib/sdl2_touch.rb +86 -75
  47. data/lib/sdl2_ttf.rb +358 -202
  48. data/lib/sdl2_version.rb +67 -62
  49. data/lib/sdl2_video.rb +540 -446
  50. data/lib/sdl2_vulkan.rb +72 -64
  51. metadata +19 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35079ab7c6bbfd35b26fdaeb404263532c8076897bbdaae87252f4c7eb752ba6
4
- data.tar.gz: ebb622ab9b6693acc19c70cd110365a1f3e546f7cdb60a1f63033324b86b769b
3
+ metadata.gz: 1f72af1471f1fab233bf113d816dc9fd44f09a3d9b59c71abf706dc32b5080fa
4
+ data.tar.gz: 95b3a5f472b90107eae20af3b050385fbd407371ae0748a6eba076404163455b
5
5
  SHA512:
6
- metadata.gz: 62cb6b497ffb2a3b07485280698c74ab8caf4823449cc8958334373596a9dd18a019a6ffe8619beb19009a23fdda32ec2585859d6430911686204e4f03aac4a6
7
- data.tar.gz: 031fec3cd69850e0cdab203e2facc931d7fe75b1cb1c7753c8a514fa6d694410490c595d8f808868ba96fe6af87f86838c5f6e37aa43a797f6b742e1d7e26a03
6
+ metadata.gz: a3ff6e76415386227e597c3dc0abe049be7554b6990e1b37f46163ead164beb92ebf03d4920188b38ecbccbb1c8ae78b2e2d7572285b4388ff90ce62fd77c09e
7
+ data.tar.gz: 9b203789bacbaa3f51fd527f3f1646864b20c97df60cba9562458ec9ecb0e4bcc7b00c2fd4766fa4c1567b81c7734f95e625f3bea2220e34fb68eb9dad60b452
data/ChangeLog CHANGED
@@ -1,92 +1,124 @@
1
- 2021-12-02 vaiorabbit <http://twitter.com/vaiorabbit>
2
-
3
- * Added SDL 2.0.18 features ( https://github.com/libsdl-org/SDL/releases/tag/release-2.0.18 )
4
-
5
- 2021-08-12 vaiorabbit <http://twitter.com/vaiorabbit>
6
-
7
- * Added SDL 2.0.14 features (SDL_misc).
8
- * Added SDL 2.0.16 features (SDL_sensor).
9
-
10
- 2021-02-21 vaiorabbit <http://twitter.com/vaiorabbit>
11
-
12
- * Added defines from Audio, Mixer and TTF
13
-
14
- 2020-12-27 vaiorabbit <http://twitter.com/vaiorabbit>
15
-
16
- * Added SDL 2.0.14 features.
17
- * third_party/sdl2_build_dll.sh: Added to build x64 DLL for Windows
18
- * test/util.rb: Added
19
-
20
- 2020-12-20 vaiorabbit <http://twitter.com/vaiorabbit>
21
-
22
- * third_party/sdl2_build_dylib.sh: Added to build x86_64|arm64 Universal Binary
23
-
24
- 2020-06-08 vaiorabbit <http://twitter.com/vaiorabbit>
25
-
26
- * lib/sdl2_syswm.rb: Added
27
- * lib/sdl2_hints.rb: Added hint string symboles
28
-
29
- 2020-03-22 vaiorabbit <http://twitter.com/vaiorabbit>
30
-
31
- * Added SDL 2.0.12 features.
32
- * Generate callback types correctly.
33
-
34
- 2019-10-27 vaiorabbit <http://twitter.com/vaiorabbit>
35
-
36
- * lib/sdl2_stdinc.rb: Added.
37
-
38
- 2019-08-31 vaiorabbit <http://twitter.com/vaiorabbit>
39
-
40
- * Refactoring + Cleanup
41
- * Some tests are usable again
42
-
43
- 2019-08-28 vaiorabbit <http://twitter.com/vaiorabbit>
44
-
45
- * Exception-safety
46
-
47
- 2019-08-27 vaiorabbit <http://twitter.com/vaiorabbit>
48
-
49
- * lib/sdl2_mixer.rb: Added (experimental)
50
-
51
- 2019-08-24 vaiorabbit <http://twitter.com/vaiorabbit>
52
-
53
- * Added SDL 2.0.10 features.
54
- * Added generator. Binding codes are generated semi-automatically.
55
- * Now depends on Ruby/FFI. Note that some codes in 'test' directory are still not usable.
56
-
57
- 2016-04-03 vaiorabbit <http://twitter.com/vaiorabbit>
58
-
59
- * lib/sdl2_gfx.rb, test/test_gfx.rb: Added.
60
-
61
- 2016-04-02 vaiorabbit <http://twitter.com/vaiorabbit>
62
-
63
- * Added SDL 2.0.4 features.
64
- * lib/version.rb: Added SDL_MAJOR_VERSION, etc.
65
-
66
- 2015-09-29 vaiorabbit <http://twitter.com/vaiorabbit>
67
-
68
- * lib/sdl2_ttf.rb: Added.
69
-
70
- 2015-09-28 vaiorabbit <http://twitter.com/vaiorabbit>
71
-
72
- * lib/sdl2_image.rb: Added.
73
- * lib/sdl2_mixer.rb: Added.
74
-
75
- 2015-09-22 vaiorabbit <http://twitter.com/vaiorabbit>
76
-
77
- * lib/pixels.rb, lib/gamecontroller.rb, lib/joystick.rb: Added.
78
- * lib/rwops.rb, lib/syswm.rb, lib/surface.rb, lib/render.rb: Added.
79
- * lib/cpuinfo.rb, lib/gesture.rb, lib/touch.rb, lib/audio.rb: Added.
80
-
81
- 2015-09-21 vaiorabbit <http://twitter.com/vaiorabbit>
82
-
83
- * lib/events.rb, lib/timer.rb, lib/video.rb: Added.
84
- * lib/keyboard.rb, lib/keycode.rb, lib/scancode.rb: Added.
85
- * lib/error.rb: Added.
86
- * lib/blendmode.rb, lib/clipboard.rb, lib/filesystem.rb, lib/version.rb: Added.
87
- * lib/platform.rb, lib/rect.rb, lib/mouse.rb: Added.
88
- * lib/messagebox.rb, lib/pixels.rb: Added.
89
-
90
- 2015-09-19 vaiorabbit <http://twitter.com/vaiorabbit>
91
-
92
- * Project started.
1
+ 2022-04-29 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * Added SDL 2.0.22 features ( https://github.com/libsdl-org/SDL/releases/tag/release-2.0.22 )
4
+
5
+ 2022-03-28 vaiorabbit <http://twitter.com/vaiorabbit>
6
+
7
+ * lib/sdl2_sound.rb: Added
8
+
9
+ 2022-02-13 vaiorabbit <http://twitter.com/vaiorabbit>
10
+
11
+ * Removed unavailable inline functions (SDL_memset4, SDL_memcpy4)
12
+
13
+ 2022-02-12 vaiorabbit <http://twitter.com/vaiorabbit>
14
+
15
+ * Some tests are now available on Windows
16
+
17
+ 2022-01-26 vaiorabbit <http://twitter.com/vaiorabbit>
18
+
19
+ * test/test*.rb: Changed namespace
20
+ * load_lib: Now accepts argument 'output_error'
21
+
22
+ 2022-01-22 vaiorabbit <http://twitter.com/vaiorabbit>
23
+
24
+ * lib/sdl2_ttf.rb: Generated for version 2.0.18
25
+ * generator: Fixed wrong 'by_value' handling
26
+ * .gitignore: Added
27
+ * test/test_opengl.rb: Use opengl-bindings2
28
+
29
+ 2022-01-11 vaiorabbit <http://twitter.com/vaiorabbit>
30
+
31
+ * Added SDL 2.0.20 features ( https://github.com/libsdl-org/SDL/releases/tag/release-2.0.20 )
32
+
33
+ 2021-12-02 vaiorabbit <http://twitter.com/vaiorabbit>
34
+
35
+ * Added SDL 2.0.18 features ( https://github.com/libsdl-org/SDL/releases/tag/release-2.0.18 )
36
+
37
+ 2021-08-12 vaiorabbit <http://twitter.com/vaiorabbit>
38
+
39
+ * Added SDL 2.0.14 features (SDL_misc).
40
+ * Added SDL 2.0.16 features (SDL_sensor).
41
+
42
+ 2021-02-21 vaiorabbit <http://twitter.com/vaiorabbit>
43
+
44
+ * Added defines from Audio, Mixer and TTF
45
+
46
+ 2020-12-27 vaiorabbit <http://twitter.com/vaiorabbit>
47
+
48
+ * Added SDL 2.0.14 features.
49
+ * third_party/sdl2_build_dll.sh: Added to build x64 DLL for Windows
50
+ * test/util.rb: Added
51
+
52
+ 2020-12-20 vaiorabbit <http://twitter.com/vaiorabbit>
53
+
54
+ * third_party/sdl2_build_dylib.sh: Added to build x86_64|arm64 Universal Binary
55
+
56
+ 2020-06-08 vaiorabbit <http://twitter.com/vaiorabbit>
57
+
58
+ * lib/sdl2_syswm.rb: Added
59
+ * lib/sdl2_hints.rb: Added hint string symboles
60
+
61
+ 2020-03-22 vaiorabbit <http://twitter.com/vaiorabbit>
62
+
63
+ * Added SDL 2.0.12 features.
64
+ * Generate callback types correctly.
65
+
66
+ 2019-10-27 vaiorabbit <http://twitter.com/vaiorabbit>
67
+
68
+ * lib/sdl2_stdinc.rb: Added.
69
+
70
+ 2019-08-31 vaiorabbit <http://twitter.com/vaiorabbit>
71
+
72
+ * Refactoring + Cleanup
73
+ * Some tests are usable again
74
+
75
+ 2019-08-28 vaiorabbit <http://twitter.com/vaiorabbit>
76
+
77
+ * Exception-safety
78
+
79
+ 2019-08-27 vaiorabbit <http://twitter.com/vaiorabbit>
80
+
81
+ * lib/sdl2_mixer.rb: Added (experimental)
82
+
83
+ 2019-08-24 vaiorabbit <http://twitter.com/vaiorabbit>
84
+
85
+ * Added SDL 2.0.10 features.
86
+ * Added generator. Binding codes are generated semi-automatically.
87
+ * Now depends on Ruby/FFI. Note that some codes in 'test' directory are still not usable.
88
+
89
+ 2016-04-03 vaiorabbit <http://twitter.com/vaiorabbit>
90
+
91
+ * lib/sdl2_gfx.rb, test/test_gfx.rb: Added.
92
+
93
+ 2016-04-02 vaiorabbit <http://twitter.com/vaiorabbit>
94
+
95
+ * Added SDL 2.0.4 features.
96
+ * lib/version.rb: Added SDL_MAJOR_VERSION, etc.
97
+
98
+ 2015-09-29 vaiorabbit <http://twitter.com/vaiorabbit>
99
+
100
+ * lib/sdl2_ttf.rb: Added.
101
+
102
+ 2015-09-28 vaiorabbit <http://twitter.com/vaiorabbit>
103
+
104
+ * lib/sdl2_image.rb: Added.
105
+ * lib/sdl2_mixer.rb: Added.
106
+
107
+ 2015-09-22 vaiorabbit <http://twitter.com/vaiorabbit>
108
+
109
+ * lib/pixels.rb, lib/gamecontroller.rb, lib/joystick.rb: Added.
110
+ * lib/rwops.rb, lib/syswm.rb, lib/surface.rb, lib/render.rb: Added.
111
+ * lib/cpuinfo.rb, lib/gesture.rb, lib/touch.rb, lib/audio.rb: Added.
112
+
113
+ 2015-09-21 vaiorabbit <http://twitter.com/vaiorabbit>
114
+
115
+ * lib/events.rb, lib/timer.rb, lib/video.rb: Added.
116
+ * lib/keyboard.rb, lib/keycode.rb, lib/scancode.rb: Added.
117
+ * lib/error.rb: Added.
118
+ * lib/blendmode.rb, lib/clipboard.rb, lib/filesystem.rb, lib/version.rb: Added.
119
+ * lib/platform.rb, lib/rect.rb, lib/mouse.rb: Added.
120
+ * lib/messagebox.rb, lib/pixels.rb: Added.
121
+
122
+ 2015-09-19 vaiorabbit <http://twitter.com/vaiorabbit>
123
+
124
+ * Project started.
data/LICENSE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  sdl2-bindings : Yet another SDL2 wrapper for Ruby
2
- Copyright (c) 2015-2021 vaiorabbit <http://twitter.com/vaiorabbit>
2
+ Copyright (c) 2015-2022 vaiorabbit <http://twitter.com/vaiorabbit>
3
3
 
4
4
  This software is provided 'as-is', without any express or implied
5
5
  warranty. In no event will the authors be held liable for any damages
data/README.md CHANGED
@@ -1,53 +1,77 @@
1
- <!-- -*- mode:markdown; coding:utf-8; -*- -->
2
-
3
- # sdl2-bindings : Yet another SDL2 wrapper for Ruby #
4
-
5
- [Notice] Experimental project.
6
-
7
- * Created : 2015-09-19
8
- * Last modified : 2021-12-02
9
-
10
- ## Features ##
11
-
12
- * Generated semi-automatically
13
- * Based on Ruby/FFI
14
- * No need to build C extension library
15
-
16
-
17
- ## Limitations ##
18
-
19
- * Some APIs provided by pre-processor cannot be imported.
20
-
21
- ## Tested Environment ##
22
-
23
- * [2015-09-19] SDL 2.0.3 (Installed via Homebrew)
24
- * Mac OS X 10.10.5, ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14]
25
- * [2016-04-03] SDL 2.0.4 (Installed via Homebrew)
26
- * Mac OS X 10.11.4, ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]
27
- * sdl2_gfx : 1.0.1
28
- * sdl2_image : 2.0.1
29
- * sdl2_mixer : 2.0.1
30
- * sdl2_ttf : 2.0.13
31
- * [2019-08-31] SDL 2.0.10 (Installed via Homebrew)
32
- * [2020-03-22] SDL 2.0.12 (Installed via Homebrew)
33
- * [2020-12-27] SDL 2.0.14 (Installed via Homebrew)
34
- * macOS Big Sur (11.0.1), ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
35
- * [2021-08-12] SDL 2.0.16 (Installed via Homebrew)
36
- * macOS Big Sur (11.5), ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [arm64-darwin20]
37
- * [2021-12-02] SDL 2.0.18 (Installed via Homebrew)
38
- * macOS Big Sur (11.6), ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
39
-
40
- ## License ##
41
-
42
- The zlib/libpng License ( http://opensource.org/licenses/Zlib ).
43
-
44
- sdl2-bindings : Yet another SDL2 wrapper for Ruby
45
- Copyright (c) 2015-2021 vaiorabbit <http://twitter.com/vaiorabbit>
46
-
47
- This software is provided 'as-is', without any express or implied
48
- warranty. In no event will the authors be held liable for any damages
49
- arising from the use of this software.
50
-
51
- Permission is granted to anyone to use this software for any purpose,
52
- including commercial applications, and to alter it and redistribute it
53
- freely, subject to the following restrictions:
1
+ <!-- -*- mode:markdown; coding:utf-8; -*- -->
2
+
3
+ # sdl2-bindings : Yet another SDL2 wrapper for Ruby #
4
+
5
+ * Created : 2015-09-19
6
+ * Last modified : 2022-04-29
7
+
8
+ ## Features ##
9
+
10
+ * Generated semi-automatically
11
+ * Based on Ruby/FFI
12
+ * No need to build C extension library
13
+
14
+ ## Limitations ##
15
+
16
+ * Several original APIs originally defined with pre-processor macro are unavailable in this library (e.g. `SDL_LoadBMP`)
17
+
18
+ ## Target version ##
19
+
20
+ * [2022-04-29]
21
+ * SDL : 2.0.22
22
+ * SDL_image : 2.0.5
23
+ * SDL_mixer : 2.0.4
24
+ * SDL_ttf : 2.0.18
25
+ * SDL2_gfx : 1.0.4
26
+ * SDL_sound : 2.0.1
27
+
28
+ <details>
29
+ <summary>Older versions</summary>
30
+
31
+ * [2015-09-19] SDL 2.0.3
32
+ * [2016-04-03] SDL 2.0.4
33
+ * [2019-08-31] SDL 2.0.10
34
+ * [2020-03-22] SDL 2.0.12
35
+ * [2020-12-27] SDL 2.0.14
36
+ * [2021-08-12] SDL 2.0.16
37
+ * [2021-12-02] SDL 2.0.18
38
+ * [2022-03-28]
39
+ * SDL : 2.0.20
40
+ * SDL_image : 2.0.5
41
+ * SDL_mixer : 2.0.4
42
+ * SDL_ttf : 2.0.18
43
+ * SDL2_gfx : 1.0.4
44
+ * SDL_sound : 2.0.1
45
+
46
+ </details>
47
+
48
+ ## Supported Environments ##
49
+
50
+ * [2022-02-12] Windows 10 (21H1), ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [x64-mingw-ucrt]
51
+ * [2022-01-11] macOS Monterey (12.1), ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [arm64-darwin20]
52
+
53
+ <details>
54
+ <summary>Older Environments</summary>
55
+
56
+ * [2021-12-02] macOS Big Sur (11.6), ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
57
+ * [2021-08-12] macOS Big Sur (11.5), ruby 3.0.1p64 (2021-04-05 revision 0fb782ee38) [arm64-darwin20]
58
+ * [2020-12-27] macOS Big Sur (11.0.1), ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [arm64-darwin20]
59
+ * [2016-04-03] Mac OS X 10.11.4, ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]
60
+ * [2015-09-19] Mac OS X 10.10.5, ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14]
61
+
62
+ </details>
63
+
64
+ ## License ##
65
+
66
+ The zlib/libpng License ( http://opensource.org/licenses/Zlib ).
67
+
68
+ sdl2-bindings : Yet another SDL2 wrapper for Ruby
69
+ Copyright (c) 2015-2022 vaiorabbit <http://twitter.com/vaiorabbit>
70
+
71
+ This software is provided 'as-is', without any express or implied
72
+ warranty. In no event will the authors be held liable for any damages
73
+ arising from the use of this software.
74
+
75
+ Permission is granted to anyone to use this software for any purpose,
76
+ including commercial applications, and to alter it and redistribute it
77
+ freely, subject to the following restrictions: