ruby2d 0.8.1 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (192) hide show
  1. checksums.yaml +4 -4
  2. data/assets/README.md +20 -7
  3. data/assets/include/SDL2/SDL.h +135 -0
  4. data/assets/include/SDL2/SDL_assert.h +291 -0
  5. data/assets/include/SDL2/SDL_atomic.h +277 -0
  6. data/assets/include/SDL2/SDL_audio.h +826 -0
  7. data/assets/include/SDL2/SDL_bits.h +112 -0
  8. data/assets/include/SDL2/SDL_blendmode.h +120 -0
  9. data/assets/include/SDL2/SDL_clipboard.h +71 -0
  10. data/assets/include/SDL2/SDL_config.h +421 -0
  11. data/assets/include/SDL2/SDL_cpuinfo.h +188 -0
  12. data/assets/include/SDL2/SDL_egl.h +1673 -0
  13. data/assets/include/SDL2/SDL_endian.h +260 -0
  14. data/assets/include/SDL2/SDL_error.h +76 -0
  15. data/assets/include/SDL2/SDL_events.h +788 -0
  16. data/assets/include/SDL2/SDL_filesystem.h +136 -0
  17. data/assets/include/SDL2/SDL_gamecontroller.h +390 -0
  18. data/assets/include/SDL2/SDL_gesture.h +87 -0
  19. data/assets/include/SDL2/SDL_haptic.h +1238 -0
  20. data/assets/include/SDL2/SDL_hints.h +1135 -0
  21. data/assets/include/SDL2/SDL_image.h +161 -0
  22. data/assets/include/SDL2/SDL_joystick.h +408 -0
  23. data/assets/include/SDL2/SDL_keyboard.h +217 -0
  24. data/assets/include/SDL2/SDL_keycode.h +349 -0
  25. data/assets/include/SDL2/SDL_loadso.h +81 -0
  26. data/assets/include/SDL2/SDL_log.h +211 -0
  27. data/assets/include/SDL2/SDL_main.h +168 -0
  28. data/assets/include/SDL2/SDL_messagebox.h +144 -0
  29. data/assets/include/SDL2/SDL_mixer.h +651 -0
  30. data/assets/include/SDL2/SDL_mouse.h +302 -0
  31. data/assets/include/SDL2/SDL_mutex.h +251 -0
  32. data/assets/include/SDL2/SDL_name.h +33 -0
  33. data/assets/include/SDL2/SDL_opengl.h +2183 -0
  34. data/assets/include/SDL2/SDL_opengl_glext.h +11177 -0
  35. data/assets/include/SDL2/SDL_opengles.h +39 -0
  36. data/assets/include/SDL2/SDL_opengles2.h +52 -0
  37. data/assets/include/SDL2/SDL_opengles2_gl2.h +621 -0
  38. data/assets/include/SDL2/SDL_opengles2_gl2ext.h +2050 -0
  39. data/assets/include/SDL2/SDL_opengles2_gl2platform.h +30 -0
  40. data/assets/include/SDL2/SDL_opengles2_khrplatform.h +282 -0
  41. data/assets/include/SDL2/SDL_pixels.h +470 -0
  42. data/assets/include/SDL2/SDL_platform.h +198 -0
  43. data/assets/include/SDL2/SDL_power.h +75 -0
  44. data/assets/include/SDL2/SDL_quit.h +58 -0
  45. data/assets/include/SDL2/SDL_rect.h +148 -0
  46. data/assets/include/SDL2/SDL_render.h +931 -0
  47. data/assets/include/SDL2/SDL_revision.h +2 -0
  48. data/assets/include/SDL2/SDL_rwops.h +254 -0
  49. data/assets/include/SDL2/SDL_scancode.h +413 -0
  50. data/assets/include/SDL2/SDL_sensor.h +251 -0
  51. data/assets/include/SDL2/SDL_shape.h +144 -0
  52. data/assets/include/SDL2/SDL_stdinc.h +607 -0
  53. data/assets/include/SDL2/SDL_surface.h +553 -0
  54. data/assets/include/SDL2/SDL_system.h +279 -0
  55. data/assets/include/SDL2/SDL_syswm.h +324 -0
  56. data/assets/include/SDL2/SDL_test.h +69 -0
  57. data/assets/include/SDL2/SDL_test_assert.h +105 -0
  58. data/assets/include/SDL2/SDL_test_common.h +188 -0
  59. data/assets/include/SDL2/SDL_test_compare.h +69 -0
  60. data/assets/include/SDL2/SDL_test_crc32.h +124 -0
  61. data/assets/include/SDL2/SDL_test_font.h +81 -0
  62. data/assets/include/SDL2/SDL_test_fuzzer.h +384 -0
  63. data/assets/include/SDL2/SDL_test_harness.h +134 -0
  64. data/assets/include/SDL2/SDL_test_images.h +78 -0
  65. data/assets/include/SDL2/SDL_test_log.h +67 -0
  66. data/assets/include/SDL2/SDL_test_md5.h +129 -0
  67. data/assets/include/SDL2/SDL_test_memory.h +63 -0
  68. data/assets/include/SDL2/SDL_test_random.h +115 -0
  69. data/assets/include/SDL2/SDL_thread.h +343 -0
  70. data/assets/include/SDL2/SDL_timer.h +115 -0
  71. data/assets/include/SDL2/SDL_touch.h +86 -0
  72. data/assets/include/SDL2/SDL_ttf.h +294 -0
  73. data/assets/include/SDL2/SDL_types.h +29 -0
  74. data/assets/include/SDL2/SDL_version.h +162 -0
  75. data/assets/include/SDL2/SDL_video.h +1276 -0
  76. data/assets/include/SDL2/SDL_vulkan.h +278 -0
  77. data/assets/include/SDL2/begin_code.h +167 -0
  78. data/assets/include/SDL2/close_code.h +37 -0
  79. data/assets/include/glew.h +23686 -0
  80. data/assets/include/simple2d.h +735 -0
  81. data/assets/ios/MRuby.framework/Headers/mrbconf.h +3 -5
  82. data/assets/ios/MRuby.framework/Headers/mruby.h +35 -32
  83. data/assets/ios/MRuby.framework/Headers/mruby/array.h +1 -0
  84. data/assets/ios/MRuby.framework/Headers/mruby/boxing_word.h +9 -1
  85. data/assets/ios/MRuby.framework/Headers/mruby/class.h +14 -11
  86. data/assets/ios/MRuby.framework/Headers/mruby/common.h +5 -0
  87. data/assets/ios/MRuby.framework/Headers/mruby/compile.h +4 -3
  88. data/assets/ios/MRuby.framework/Headers/mruby/debug.h +3 -2
  89. data/assets/ios/MRuby.framework/Headers/mruby/dump.h +2 -2
  90. data/assets/ios/MRuby.framework/Headers/mruby/hash.h +38 -5
  91. data/assets/ios/MRuby.framework/Headers/mruby/irep.h +17 -4
  92. data/assets/ios/MRuby.framework/Headers/mruby/object.h +4 -5
  93. data/assets/ios/MRuby.framework/Headers/mruby/opcode.h +47 -139
  94. data/assets/ios/MRuby.framework/Headers/mruby/ops.h +117 -0
  95. data/assets/ios/MRuby.framework/Headers/mruby/proc.h +4 -4
  96. data/assets/ios/MRuby.framework/Headers/mruby/string.h +11 -7
  97. data/assets/ios/MRuby.framework/Headers/mruby/throw.h +4 -4
  98. data/assets/ios/MRuby.framework/Headers/mruby/variable.h +2 -4
  99. data/assets/ios/MRuby.framework/Headers/mruby/version.h +6 -6
  100. data/assets/ios/MRuby.framework/MRuby +0 -0
  101. data/assets/ios/MyApp.xcodeproj/project.pbxproj +24 -18
  102. data/assets/ios/MyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  103. data/assets/ios/main.c +1 -1
  104. data/assets/macos/lib/libFLAC.a +0 -0
  105. data/assets/macos/lib/libSDL2.a +0 -0
  106. data/assets/macos/lib/libSDL2_image.a +0 -0
  107. data/assets/macos/lib/libSDL2_mixer.a +0 -0
  108. data/assets/macos/lib/libSDL2_ttf.a +0 -0
  109. data/assets/macos/lib/libfreetype.a +0 -0
  110. data/assets/macos/lib/libjpeg.a +0 -0
  111. data/assets/macos/lib/libmpg123.a +0 -0
  112. data/assets/macos/lib/libogg.a +0 -0
  113. data/assets/macos/lib/libpng16.a +0 -0
  114. data/assets/macos/lib/libsimple2d.a +0 -0
  115. data/assets/macos/lib/libtiff.a +0 -0
  116. data/assets/macos/lib/libvorbis.a +0 -0
  117. data/assets/macos/lib/libvorbisfile.a +0 -0
  118. data/assets/macos/lib/libwebp.a +0 -0
  119. data/assets/mingw/bin/SDL2.dll +0 -0
  120. data/assets/mingw/bin/SDL2_image.dll +0 -0
  121. data/assets/mingw/bin/SDL2_mixer.dll +0 -0
  122. data/assets/mingw/bin/SDL2_ttf.dll +0 -0
  123. data/assets/mingw/bin/glew32.dll +0 -0
  124. data/assets/mingw/bin/libFLAC-8.dll +0 -0
  125. data/assets/mingw/bin/libfreetype-6.dll +0 -0
  126. data/assets/mingw/bin/libjpeg-9.dll +0 -0
  127. data/assets/mingw/bin/libmodplug-1.dll +0 -0
  128. data/assets/mingw/bin/libmpg123-0.dll +0 -0
  129. data/assets/mingw/bin/libogg-0.dll +0 -0
  130. data/assets/mingw/bin/libopus-0.dll +0 -0
  131. data/assets/mingw/bin/libopusfile-0.dll +0 -0
  132. data/assets/mingw/bin/libpng16-16.dll +0 -0
  133. data/assets/mingw/bin/libtiff-5.dll +0 -0
  134. data/assets/mingw/bin/libvorbis-0.dll +0 -0
  135. data/assets/mingw/bin/libvorbisfile-3.dll +0 -0
  136. data/assets/mingw/bin/libwebp-7.dll +0 -0
  137. data/assets/mingw/bin/zlib1.dll +0 -0
  138. data/assets/mingw/lib/libSDL2.a +0 -0
  139. data/assets/mingw/lib/libSDL2.dll.a +0 -0
  140. data/assets/mingw/lib/libSDL2_image.a +0 -0
  141. data/assets/mingw/lib/libSDL2_image.dll.a +0 -0
  142. data/assets/mingw/lib/libSDL2_mixer.a +0 -0
  143. data/assets/mingw/lib/libSDL2_mixer.dll.a +0 -0
  144. data/assets/mingw/lib/libSDL2_test.a +0 -0
  145. data/assets/mingw/lib/libSDL2_ttf.a +0 -0
  146. data/assets/mingw/lib/libSDL2_ttf.dll.a +0 -0
  147. data/assets/mingw/lib/libSDL2main.a +0 -0
  148. data/assets/mingw/lib/libglew32.a +0 -0
  149. data/assets/mingw/lib/libglew32.dll.a +0 -0
  150. data/assets/mingw/lib/libsimple2d.a +0 -0
  151. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json +4 -0
  152. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json +4 -0
  153. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json +4 -0
  154. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json +4 -0
  155. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json +4 -0
  156. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json +4 -0
  157. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json +4 -0
  158. data/assets/tvos/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json +4 -0
  159. data/assets/tvos/Assets.xcassets/LaunchImage.launchimage/Contents.json +7 -0
  160. data/assets/tvos/MRuby.framework/Headers/mrbconf.h +3 -5
  161. data/assets/tvos/MRuby.framework/Headers/mruby.h +35 -32
  162. data/assets/tvos/MRuby.framework/Headers/mruby/array.h +1 -0
  163. data/assets/tvos/MRuby.framework/Headers/mruby/boxing_word.h +9 -1
  164. data/assets/tvos/MRuby.framework/Headers/mruby/class.h +14 -11
  165. data/assets/tvos/MRuby.framework/Headers/mruby/common.h +5 -0
  166. data/assets/tvos/MRuby.framework/Headers/mruby/compile.h +4 -3
  167. data/assets/tvos/MRuby.framework/Headers/mruby/debug.h +3 -2
  168. data/assets/tvos/MRuby.framework/Headers/mruby/dump.h +2 -2
  169. data/assets/tvos/MRuby.framework/Headers/mruby/hash.h +38 -5
  170. data/assets/tvos/MRuby.framework/Headers/mruby/irep.h +17 -4
  171. data/assets/tvos/MRuby.framework/Headers/mruby/object.h +4 -5
  172. data/assets/tvos/MRuby.framework/Headers/mruby/opcode.h +47 -139
  173. data/assets/tvos/MRuby.framework/Headers/mruby/ops.h +117 -0
  174. data/assets/tvos/MRuby.framework/Headers/mruby/proc.h +4 -4
  175. data/assets/tvos/MRuby.framework/Headers/mruby/string.h +11 -7
  176. data/assets/tvos/MRuby.framework/Headers/mruby/throw.h +4 -4
  177. data/assets/tvos/MRuby.framework/Headers/mruby/variable.h +2 -4
  178. data/assets/tvos/MRuby.framework/Headers/mruby/version.h +6 -6
  179. data/assets/tvos/MRuby.framework/MRuby +0 -0
  180. data/assets/tvos/MyApp.xcodeproj/project.pbxproj +25 -19
  181. data/assets/tvos/MyApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  182. data/assets/tvos/main.c +1 -1
  183. data/ext/ruby2d/extconf.rb +59 -50
  184. data/ext/ruby2d/ruby2d.c +0 -1
  185. data/lib/ruby2d.rb +1 -7
  186. data/lib/ruby2d/cli/launch.rb +1 -1
  187. data/lib/ruby2d/font.rb +32 -7
  188. data/lib/ruby2d/version.rb +1 -1
  189. metadata +132 -6
  190. data/assets/opal.js +0 -21637
  191. data/assets/simple2d.js +0 -1379
  192. data/assets/template.html +0 -18
@@ -0,0 +1,144 @@
1
+ /*
2
+ Simple DirectMedia Layer
3
+ Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
4
+
5
+ This software is provided 'as-is', without any express or implied
6
+ warranty. In no event will the authors be held liable for any damages
7
+ arising from the use of this software.
8
+
9
+ Permission is granted to anyone to use this software for any purpose,
10
+ including commercial applications, and to alter it and redistribute it
11
+ freely, subject to the following restrictions:
12
+
13
+ 1. The origin of this software must not be misrepresented; you must not
14
+ claim that you wrote the original software. If you use this software
15
+ in a product, an acknowledgment in the product documentation would be
16
+ appreciated but is not required.
17
+ 2. Altered source versions must be plainly marked as such, and must not be
18
+ misrepresented as being the original software.
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+ */
21
+
22
+ #ifndef SDL_messagebox_h_
23
+ #define SDL_messagebox_h_
24
+
25
+ #include "SDL_stdinc.h"
26
+ #include "SDL_video.h" /* For SDL_Window */
27
+
28
+ #include "begin_code.h"
29
+ /* Set up for C function definitions, even when using C++ */
30
+ #ifdef __cplusplus
31
+ extern "C" {
32
+ #endif
33
+
34
+ /**
35
+ * \brief SDL_MessageBox flags. If supported will display warning icon, etc.
36
+ */
37
+ typedef enum
38
+ {
39
+ SDL_MESSAGEBOX_ERROR = 0x00000010, /**< error dialog */
40
+ SDL_MESSAGEBOX_WARNING = 0x00000020, /**< warning dialog */
41
+ SDL_MESSAGEBOX_INFORMATION = 0x00000040 /**< informational dialog */
42
+ } SDL_MessageBoxFlags;
43
+
44
+ /**
45
+ * \brief Flags for SDL_MessageBoxButtonData.
46
+ */
47
+ typedef enum
48
+ {
49
+ SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT = 0x00000001, /**< Marks the default button when return is hit */
50
+ SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT = 0x00000002 /**< Marks the default button when escape is hit */
51
+ } SDL_MessageBoxButtonFlags;
52
+
53
+ /**
54
+ * \brief Individual button data.
55
+ */
56
+ typedef struct
57
+ {
58
+ Uint32 flags; /**< ::SDL_MessageBoxButtonFlags */
59
+ int buttonid; /**< User defined button id (value returned via SDL_ShowMessageBox) */
60
+ const char * text; /**< The UTF-8 button text */
61
+ } SDL_MessageBoxButtonData;
62
+
63
+ /**
64
+ * \brief RGB value used in a message box color scheme
65
+ */
66
+ typedef struct
67
+ {
68
+ Uint8 r, g, b;
69
+ } SDL_MessageBoxColor;
70
+
71
+ typedef enum
72
+ {
73
+ SDL_MESSAGEBOX_COLOR_BACKGROUND,
74
+ SDL_MESSAGEBOX_COLOR_TEXT,
75
+ SDL_MESSAGEBOX_COLOR_BUTTON_BORDER,
76
+ SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND,
77
+ SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED,
78
+ SDL_MESSAGEBOX_COLOR_MAX
79
+ } SDL_MessageBoxColorType;
80
+
81
+ /**
82
+ * \brief A set of colors to use for message box dialogs
83
+ */
84
+ typedef struct
85
+ {
86
+ SDL_MessageBoxColor colors[SDL_MESSAGEBOX_COLOR_MAX];
87
+ } SDL_MessageBoxColorScheme;
88
+
89
+ /**
90
+ * \brief MessageBox structure containing title, text, window, etc.
91
+ */
92
+ typedef struct
93
+ {
94
+ Uint32 flags; /**< ::SDL_MessageBoxFlags */
95
+ SDL_Window *window; /**< Parent window, can be NULL */
96
+ const char *title; /**< UTF-8 title */
97
+ const char *message; /**< UTF-8 message text */
98
+
99
+ int numbuttons;
100
+ const SDL_MessageBoxButtonData *buttons;
101
+
102
+ const SDL_MessageBoxColorScheme *colorScheme; /**< ::SDL_MessageBoxColorScheme, can be NULL to use system settings */
103
+ } SDL_MessageBoxData;
104
+
105
+ /**
106
+ * \brief Create a modal message box.
107
+ *
108
+ * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc.
109
+ * \param buttonid The pointer to which user id of hit button should be copied.
110
+ *
111
+ * \return -1 on error, otherwise 0 and buttonid contains user id of button
112
+ * hit or -1 if dialog was closed.
113
+ *
114
+ * \note This function should be called on the thread that created the parent
115
+ * window, or on the main thread if the messagebox has no parent. It will
116
+ * block execution of that thread until the user clicks a button or
117
+ * closes the messagebox.
118
+ */
119
+ extern DECLSPEC int SDLCALL SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid);
120
+
121
+ /**
122
+ * \brief Create a simple modal message box
123
+ *
124
+ * \param flags ::SDL_MessageBoxFlags
125
+ * \param title UTF-8 title text
126
+ * \param message UTF-8 message text
127
+ * \param window The parent window, or NULL for no parent
128
+ *
129
+ * \return 0 on success, -1 on error
130
+ *
131
+ * \sa SDL_ShowMessageBox
132
+ */
133
+ extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
134
+
135
+
136
+ /* Ends C function definitions when using C++ */
137
+ #ifdef __cplusplus
138
+ }
139
+ #endif
140
+ #include "close_code.h"
141
+
142
+ #endif /* SDL_messagebox_h_ */
143
+
144
+ /* vi: set ts=4 sw=4 expandtab: */
@@ -0,0 +1,651 @@
1
+ /*
2
+ SDL_mixer: An audio mixer library based on the SDL library
3
+ Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
4
+
5
+ This software is provided 'as-is', without any express or implied
6
+ warranty. In no event will the authors be held liable for any damages
7
+ arising from the use of this software.
8
+
9
+ Permission is granted to anyone to use this software for any purpose,
10
+ including commercial applications, and to alter it and redistribute it
11
+ freely, subject to the following restrictions:
12
+
13
+ 1. The origin of this software must not be misrepresented; you must not
14
+ claim that you wrote the original software. If you use this software
15
+ in a product, an acknowledgment in the product documentation would be
16
+ appreciated but is not required.
17
+ 2. Altered source versions must be plainly marked as such, and must not be
18
+ misrepresented as being the original software.
19
+ 3. This notice may not be removed or altered from any source distribution.
20
+ */
21
+
22
+ #ifndef SDL_MIXER_H_
23
+ #define SDL_MIXER_H_
24
+
25
+ #include "SDL_stdinc.h"
26
+ #include "SDL_rwops.h"
27
+ #include "SDL_audio.h"
28
+ #include "SDL_endian.h"
29
+ #include "SDL_version.h"
30
+ #include "begin_code.h"
31
+
32
+ /* Set up for C function definitions, even when using C++ */
33
+ #ifdef __cplusplus
34
+ extern "C" {
35
+ #endif
36
+
37
+ /* Printable format: "%d.%d.%d", MAJOR, MINOR, PATCHLEVEL
38
+ */
39
+ #define SDL_MIXER_MAJOR_VERSION 2
40
+ #define SDL_MIXER_MINOR_VERSION 0
41
+ #define SDL_MIXER_PATCHLEVEL 4
42
+
43
+ /* This macro can be used to fill a version structure with the compile-time
44
+ * version of the SDL_mixer library.
45
+ */
46
+ #define SDL_MIXER_VERSION(X) \
47
+ { \
48
+ (X)->major = SDL_MIXER_MAJOR_VERSION; \
49
+ (X)->minor = SDL_MIXER_MINOR_VERSION; \
50
+ (X)->patch = SDL_MIXER_PATCHLEVEL; \
51
+ }
52
+
53
+ /* Backwards compatibility */
54
+ #define MIX_MAJOR_VERSION SDL_MIXER_MAJOR_VERSION
55
+ #define MIX_MINOR_VERSION SDL_MIXER_MINOR_VERSION
56
+ #define MIX_PATCHLEVEL SDL_MIXER_PATCHLEVEL
57
+ #define MIX_VERSION(X) SDL_MIXER_VERSION(X)
58
+
59
+ /**
60
+ * This is the version number macro for the current SDL_mixer version.
61
+ */
62
+ #define SDL_MIXER_COMPILEDVERSION \
63
+ SDL_VERSIONNUM(SDL_MIXER_MAJOR_VERSION, SDL_MIXER_MINOR_VERSION, SDL_MIXER_PATCHLEVEL)
64
+
65
+ /**
66
+ * This macro will evaluate to true if compiled with SDL_mixer at least X.Y.Z.
67
+ */
68
+ #define SDL_MIXER_VERSION_ATLEAST(X, Y, Z) \
69
+ (SDL_MIXER_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z))
70
+
71
+ /* This function gets the version of the dynamically linked SDL_mixer library.
72
+ it should NOT be used to fill a version structure, instead you should
73
+ use the SDL_MIXER_VERSION() macro.
74
+ */
75
+ extern DECLSPEC const SDL_version * SDLCALL Mix_Linked_Version(void);
76
+
77
+ typedef enum
78
+ {
79
+ MIX_INIT_FLAC = 0x00000001,
80
+ MIX_INIT_MOD = 0x00000002,
81
+ MIX_INIT_MP3 = 0x00000008,
82
+ MIX_INIT_OGG = 0x00000010,
83
+ MIX_INIT_MID = 0x00000020,
84
+ MIX_INIT_OPUS = 0x00000040
85
+ } MIX_InitFlags;
86
+
87
+ /* Loads dynamic libraries and prepares them for use. Flags should be
88
+ one or more flags from MIX_InitFlags OR'd together.
89
+ It returns the flags successfully initialized, or 0 on failure.
90
+ */
91
+ extern DECLSPEC int SDLCALL Mix_Init(int flags);
92
+
93
+ /* Unloads libraries loaded with Mix_Init */
94
+ extern DECLSPEC void SDLCALL Mix_Quit(void);
95
+
96
+
97
+ /* The default mixer has 8 simultaneous mixing channels */
98
+ #ifndef MIX_CHANNELS
99
+ #define MIX_CHANNELS 8
100
+ #endif
101
+
102
+ /* Good default values for a PC soundcard */
103
+ #define MIX_DEFAULT_FREQUENCY 22050
104
+ #if SDL_BYTEORDER == SDL_LIL_ENDIAN
105
+ #define MIX_DEFAULT_FORMAT AUDIO_S16LSB
106
+ #else
107
+ #define MIX_DEFAULT_FORMAT AUDIO_S16MSB
108
+ #endif
109
+ #define MIX_DEFAULT_CHANNELS 2
110
+ #define MIX_MAX_VOLUME SDL_MIX_MAXVOLUME /* Volume of a chunk */
111
+
112
+ /* The internal format for an audio chunk */
113
+ typedef struct Mix_Chunk {
114
+ int allocated;
115
+ Uint8 *abuf;
116
+ Uint32 alen;
117
+ Uint8 volume; /* Per-sample volume, 0-128 */
118
+ } Mix_Chunk;
119
+
120
+ /* The different fading types supported */
121
+ typedef enum {
122
+ MIX_NO_FADING,
123
+ MIX_FADING_OUT,
124
+ MIX_FADING_IN
125
+ } Mix_Fading;
126
+
127
+ /* These are types of music files (not libraries used to load them) */
128
+ typedef enum {
129
+ MUS_NONE,
130
+ MUS_CMD,
131
+ MUS_WAV,
132
+ MUS_MOD,
133
+ MUS_MID,
134
+ MUS_OGG,
135
+ MUS_MP3,
136
+ MUS_MP3_MAD_UNUSED,
137
+ MUS_FLAC,
138
+ MUS_MODPLUG_UNUSED,
139
+ MUS_OPUS
140
+ } Mix_MusicType;
141
+
142
+ /* The internal format for a music chunk interpreted via mikmod */
143
+ typedef struct _Mix_Music Mix_Music;
144
+
145
+ /* Open the mixer with a certain audio format */
146
+ extern DECLSPEC int SDLCALL Mix_OpenAudio(int frequency, Uint16 format, int channels, int chunksize);
147
+
148
+ /* Open the mixer with specific device and certain audio format */
149
+ extern DECLSPEC int SDLCALL Mix_OpenAudioDevice(int frequency, Uint16 format, int channels, int chunksize, const char* device, int allowed_changes);
150
+
151
+ /* Dynamically change the number of channels managed by the mixer.
152
+ If decreasing the number of channels, the upper channels are
153
+ stopped.
154
+ This function returns the new number of allocated channels.
155
+ */
156
+ extern DECLSPEC int SDLCALL Mix_AllocateChannels(int numchans);
157
+
158
+ /* Find out what the actual audio device parameters are.
159
+ This function returns 1 if the audio has been opened, 0 otherwise.
160
+ */
161
+ extern DECLSPEC int SDLCALL Mix_QuerySpec(int *frequency,Uint16 *format,int *channels);
162
+
163
+ /* Load a wave file or a music (.mod .s3m .it .xm) file */
164
+ extern DECLSPEC Mix_Chunk * SDLCALL Mix_LoadWAV_RW(SDL_RWops *src, int freesrc);
165
+ #define Mix_LoadWAV(file) Mix_LoadWAV_RW(SDL_RWFromFile(file, "rb"), 1)
166
+ extern DECLSPEC Mix_Music * SDLCALL Mix_LoadMUS(const char *file);
167
+
168
+ /* Load a music file from an SDL_RWop object (Ogg and MikMod specific currently)
169
+ Matt Campbell (matt@campbellhome.dhs.org) April 2000 */
170
+ extern DECLSPEC Mix_Music * SDLCALL Mix_LoadMUS_RW(SDL_RWops *src, int freesrc);
171
+
172
+ /* Load a music file from an SDL_RWop object assuming a specific format */
173
+ extern DECLSPEC Mix_Music * SDLCALL Mix_LoadMUSType_RW(SDL_RWops *src, Mix_MusicType type, int freesrc);
174
+
175
+ /* Load a wave file of the mixer format from a memory buffer */
176
+ extern DECLSPEC Mix_Chunk * SDLCALL Mix_QuickLoad_WAV(Uint8 *mem);
177
+
178
+ /* Load raw audio data of the mixer format from a memory buffer */
179
+ extern DECLSPEC Mix_Chunk * SDLCALL Mix_QuickLoad_RAW(Uint8 *mem, Uint32 len);
180
+
181
+ /* Free an audio chunk previously loaded */
182
+ extern DECLSPEC void SDLCALL Mix_FreeChunk(Mix_Chunk *chunk);
183
+ extern DECLSPEC void SDLCALL Mix_FreeMusic(Mix_Music *music);
184
+
185
+ /* Get a list of chunk/music decoders that this build of SDL_mixer provides.
186
+ This list can change between builds AND runs of the program, if external
187
+ libraries that add functionality become available.
188
+ You must successfully call Mix_OpenAudio() before calling these functions.
189
+ This API is only available in SDL_mixer 1.2.9 and later.
190
+
191
+ // usage...
192
+ int i;
193
+ const int total = Mix_GetNumChunkDecoders();
194
+ for (i = 0; i < total; i++)
195
+ printf("Supported chunk decoder: [%s]\n", Mix_GetChunkDecoder(i));
196
+
197
+ Appearing in this list doesn't promise your specific audio file will
198
+ decode...but it's handy to know if you have, say, a functioning Timidity
199
+ install.
200
+
201
+ These return values are static, read-only data; do not modify or free it.
202
+ The pointers remain valid until you call Mix_CloseAudio().
203
+ */
204
+ extern DECLSPEC int SDLCALL Mix_GetNumChunkDecoders(void);
205
+ extern DECLSPEC const char * SDLCALL Mix_GetChunkDecoder(int index);
206
+ extern DECLSPEC SDL_bool SDLCALL Mix_HasChunkDecoder(const char *name);
207
+ extern DECLSPEC int SDLCALL Mix_GetNumMusicDecoders(void);
208
+ extern DECLSPEC const char * SDLCALL Mix_GetMusicDecoder(int index);
209
+ extern DECLSPEC SDL_bool SDLCALL Mix_HasMusicDecoder(const char *name);
210
+
211
+ /* Find out the music format of a mixer music, or the currently playing
212
+ music, if 'music' is NULL.
213
+ */
214
+ extern DECLSPEC Mix_MusicType SDLCALL Mix_GetMusicType(const Mix_Music *music);
215
+
216
+ /* Set a function that is called after all mixing is performed.
217
+ This can be used to provide real-time visual display of the audio stream
218
+ or add a custom mixer filter for the stream data.
219
+ */
220
+ extern DECLSPEC void SDLCALL Mix_SetPostMix(void (SDLCALL *mix_func)(void *udata, Uint8 *stream, int len), void *arg);
221
+
222
+ /* Add your own music player or additional mixer function.
223
+ If 'mix_func' is NULL, the default music player is re-enabled.
224
+ */
225
+ extern DECLSPEC void SDLCALL Mix_HookMusic(void (SDLCALL *mix_func)(void *udata, Uint8 *stream, int len), void *arg);
226
+
227
+ /* Add your own callback for when the music has finished playing or when it is
228
+ * stopped from a call to Mix_HaltMusic.
229
+ */
230
+ extern DECLSPEC void SDLCALL Mix_HookMusicFinished(void (SDLCALL *music_finished)(void));
231
+
232
+ /* Get a pointer to the user data for the current music hook */
233
+ extern DECLSPEC void * SDLCALL Mix_GetMusicHookData(void);
234
+
235
+ /*
236
+ * Add your own callback when a channel has finished playing. NULL
237
+ * to disable callback. The callback may be called from the mixer's audio
238
+ * callback or it could be called as a result of Mix_HaltChannel(), etc.
239
+ * do not call SDL_LockAudio() from this callback; you will either be
240
+ * inside the audio callback, or SDL_mixer will explicitly lock the audio
241
+ * before calling your callback.
242
+ */
243
+ extern DECLSPEC void SDLCALL Mix_ChannelFinished(void (SDLCALL *channel_finished)(int channel));
244
+
245
+
246
+ /* Special Effects API by ryan c. gordon. (icculus@icculus.org) */
247
+
248
+ #define MIX_CHANNEL_POST -2
249
+
250
+ /* This is the format of a special effect callback:
251
+ *
252
+ * myeffect(int chan, void *stream, int len, void *udata);
253
+ *
254
+ * (chan) is the channel number that your effect is affecting. (stream) is
255
+ * the buffer of data to work upon. (len) is the size of (stream), and
256
+ * (udata) is a user-defined bit of data, which you pass as the last arg of
257
+ * Mix_RegisterEffect(), and is passed back unmolested to your callback.
258
+ * Your effect changes the contents of (stream) based on whatever parameters
259
+ * are significant, or just leaves it be, if you prefer. You can do whatever
260
+ * you like to the buffer, though, and it will continue in its changed state
261
+ * down the mixing pipeline, through any other effect functions, then finally
262
+ * to be mixed with the rest of the channels and music for the final output
263
+ * stream.
264
+ *
265
+ * DO NOT EVER call SDL_LockAudio() from your callback function!
266
+ */
267
+ typedef void (SDLCALL *Mix_EffectFunc_t)(int chan, void *stream, int len, void *udata);
268
+
269
+ /*
270
+ * This is a callback that signifies that a channel has finished all its
271
+ * loops and has completed playback. This gets called if the buffer
272
+ * plays out normally, or if you call Mix_HaltChannel(), implicitly stop
273
+ * a channel via Mix_AllocateChannels(), or unregister a callback while
274
+ * it's still playing.
275
+ *
276
+ * DO NOT EVER call SDL_LockAudio() from your callback function!
277
+ */
278
+ typedef void (SDLCALL *Mix_EffectDone_t)(int chan, void *udata);
279
+
280
+
281
+ /* Register a special effect function. At mixing time, the channel data is
282
+ * copied into a buffer and passed through each registered effect function.
283
+ * After it passes through all the functions, it is mixed into the final
284
+ * output stream. The copy to buffer is performed once, then each effect
285
+ * function performs on the output of the previous effect. Understand that
286
+ * this extra copy to a buffer is not performed if there are no effects
287
+ * registered for a given chunk, which saves CPU cycles, and any given
288
+ * effect will be extra cycles, too, so it is crucial that your code run
289
+ * fast. Also note that the data that your function is given is in the
290
+ * format of the sound device, and not the format you gave to Mix_OpenAudio(),
291
+ * although they may in reality be the same. This is an unfortunate but
292
+ * necessary speed concern. Use Mix_QuerySpec() to determine if you can
293
+ * handle the data before you register your effect, and take appropriate
294
+ * actions.
295
+ * You may also specify a callback (Mix_EffectDone_t) that is called when
296
+ * the channel finishes playing. This gives you a more fine-grained control
297
+ * than Mix_ChannelFinished(), in case you need to free effect-specific
298
+ * resources, etc. If you don't need this, you can specify NULL.
299
+ * You may set the callbacks before or after calling Mix_PlayChannel().
300
+ * Things like Mix_SetPanning() are just internal special effect functions,
301
+ * so if you are using that, you've already incurred the overhead of a copy
302
+ * to a separate buffer, and that these effects will be in the queue with
303
+ * any functions you've registered. The list of registered effects for a
304
+ * channel is reset when a chunk finishes playing, so you need to explicitly
305
+ * set them with each call to Mix_PlayChannel*().
306
+ * You may also register a special effect function that is to be run after
307
+ * final mixing occurs. The rules for these callbacks are identical to those
308
+ * in Mix_RegisterEffect, but they are run after all the channels and the
309
+ * music have been mixed into a single stream, whereas channel-specific
310
+ * effects run on a given channel before any other mixing occurs. These
311
+ * global effect callbacks are call "posteffects". Posteffects only have
312
+ * their Mix_EffectDone_t function called when they are unregistered (since
313
+ * the main output stream is never "done" in the same sense as a channel).
314
+ * You must unregister them manually when you've had enough. Your callback
315
+ * will be told that the channel being mixed is (MIX_CHANNEL_POST) if the
316
+ * processing is considered a posteffect.
317
+ *
318
+ * After all these effects have finished processing, the callback registered
319
+ * through Mix_SetPostMix() runs, and then the stream goes to the audio
320
+ * device.
321
+ *
322
+ * DO NOT EVER call SDL_LockAudio() from your callback function!
323
+ *
324
+ * returns zero if error (no such channel), nonzero if added.
325
+ * Error messages can be retrieved from Mix_GetError().
326
+ */
327
+ extern DECLSPEC int SDLCALL Mix_RegisterEffect(int chan, Mix_EffectFunc_t f, Mix_EffectDone_t d, void *arg);
328
+
329
+
330
+ /* You may not need to call this explicitly, unless you need to stop an
331
+ * effect from processing in the middle of a chunk's playback.
332
+ * Posteffects are never implicitly unregistered as they are for channels,
333
+ * but they may be explicitly unregistered through this function by
334
+ * specifying MIX_CHANNEL_POST for a channel.
335
+ * returns zero if error (no such channel or effect), nonzero if removed.
336
+ * Error messages can be retrieved from Mix_GetError().
337
+ */
338
+ extern DECLSPEC int SDLCALL Mix_UnregisterEffect(int channel, Mix_EffectFunc_t f);
339
+
340
+
341
+ /* You may not need to call this explicitly, unless you need to stop all
342
+ * effects from processing in the middle of a chunk's playback. Note that
343
+ * this will also shut off some internal effect processing, since
344
+ * Mix_SetPanning() and others may use this API under the hood. This is
345
+ * called internally when a channel completes playback.
346
+ * Posteffects are never implicitly unregistered as they are for channels,
347
+ * but they may be explicitly unregistered through this function by
348
+ * specifying MIX_CHANNEL_POST for a channel.
349
+ * returns zero if error (no such channel), nonzero if all effects removed.
350
+ * Error messages can be retrieved from Mix_GetError().
351
+ */
352
+ extern DECLSPEC int SDLCALL Mix_UnregisterAllEffects(int channel);
353
+
354
+
355
+ #define MIX_EFFECTSMAXSPEED "MIX_EFFECTSMAXSPEED"
356
+
357
+ /*
358
+ * These are the internally-defined mixing effects. They use the same API that
359
+ * effects defined in the application use, but are provided here as a
360
+ * convenience. Some effects can reduce their quality or use more memory in
361
+ * the name of speed; to enable this, make sure the environment variable
362
+ * MIX_EFFECTSMAXSPEED (see above) is defined before you call
363
+ * Mix_OpenAudio().
364
+ */
365
+
366
+
367
+ /* Set the panning of a channel. The left and right channels are specified
368
+ * as integers between 0 and 255, quietest to loudest, respectively.
369
+ *
370
+ * Technically, this is just individual volume control for a sample with
371
+ * two (stereo) channels, so it can be used for more than just panning.
372
+ * If you want real panning, call it like this:
373
+ *
374
+ * Mix_SetPanning(channel, left, 255 - left);
375
+ *
376
+ * ...which isn't so hard.
377
+ *
378
+ * Setting (channel) to MIX_CHANNEL_POST registers this as a posteffect, and
379
+ * the panning will be done to the final mixed stream before passing it on
380
+ * to the audio device.
381
+ *
382
+ * This uses the Mix_RegisterEffect() API internally, and returns without
383
+ * registering the effect function if the audio device is not configured
384
+ * for stereo output. Setting both (left) and (right) to 255 causes this
385
+ * effect to be unregistered, since that is the data's normal state.
386
+ *
387
+ * returns zero if error (no such channel or Mix_RegisterEffect() fails),
388
+ * nonzero if panning effect enabled. Note that an audio device in mono
389
+ * mode is a no-op, but this call will return successful in that case.
390
+ * Error messages can be retrieved from Mix_GetError().
391
+ */
392
+ extern DECLSPEC int SDLCALL Mix_SetPanning(int channel, Uint8 left, Uint8 right);
393
+
394
+
395
+ /* Set the position of a channel. (angle) is an integer from 0 to 360, that
396
+ * specifies the location of the sound in relation to the listener. (angle)
397
+ * will be reduced as neccesary (540 becomes 180 degrees, -100 becomes 260).
398
+ * Angle 0 is due north, and rotates clockwise as the value increases.
399
+ * For efficiency, the precision of this effect may be limited (angles 1
400
+ * through 7 might all produce the same effect, 8 through 15 are equal, etc).
401
+ * (distance) is an integer between 0 and 255 that specifies the space
402
+ * between the sound and the listener. The larger the number, the further
403
+ * away the sound is. Using 255 does not guarantee that the channel will be
404
+ * culled from the mixing process or be completely silent. For efficiency,
405
+ * the precision of this effect may be limited (distance 0 through 5 might
406
+ * all produce the same effect, 6 through 10 are equal, etc). Setting (angle)
407
+ * and (distance) to 0 unregisters this effect, since the data would be
408
+ * unchanged.
409
+ *
410
+ * If you need more precise positional audio, consider using OpenAL for
411
+ * spatialized effects instead of SDL_mixer. This is only meant to be a
412
+ * basic effect for simple "3D" games.
413
+ *
414
+ * If the audio device is configured for mono output, then you won't get
415
+ * any effectiveness from the angle; however, distance attenuation on the
416
+ * channel will still occur. While this effect will function with stereo
417
+ * voices, it makes more sense to use voices with only one channel of sound,
418
+ * so when they are mixed through this effect, the positioning will sound
419
+ * correct. You can convert them to mono through SDL before giving them to
420
+ * the mixer in the first place if you like.
421
+ *
422
+ * Setting (channel) to MIX_CHANNEL_POST registers this as a posteffect, and
423
+ * the positioning will be done to the final mixed stream before passing it
424
+ * on to the audio device.
425
+ *
426
+ * This is a convenience wrapper over Mix_SetDistance() and Mix_SetPanning().
427
+ *
428
+ * returns zero if error (no such channel or Mix_RegisterEffect() fails),
429
+ * nonzero if position effect is enabled.
430
+ * Error messages can be retrieved from Mix_GetError().
431
+ */
432
+ extern DECLSPEC int SDLCALL Mix_SetPosition(int channel, Sint16 angle, Uint8 distance);
433
+
434
+
435
+ /* Set the "distance" of a channel. (distance) is an integer from 0 to 255
436
+ * that specifies the location of the sound in relation to the listener.
437
+ * Distance 0 is overlapping the listener, and 255 is as far away as possible
438
+ * A distance of 255 does not guarantee silence; in such a case, you might
439
+ * want to try changing the chunk's volume, or just cull the sample from the
440
+ * mixing process with Mix_HaltChannel().
441
+ * For efficiency, the precision of this effect may be limited (distances 1
442
+ * through 7 might all produce the same effect, 8 through 15 are equal, etc).
443
+ * (distance) is an integer between 0 and 255 that specifies the space
444
+ * between the sound and the listener. The larger the number, the further
445
+ * away the sound is.
446
+ * Setting (distance) to 0 unregisters this effect, since the data would be
447
+ * unchanged.
448
+ * If you need more precise positional audio, consider using OpenAL for
449
+ * spatialized effects instead of SDL_mixer. This is only meant to be a
450
+ * basic effect for simple "3D" games.
451
+ *
452
+ * Setting (channel) to MIX_CHANNEL_POST registers this as a posteffect, and
453
+ * the distance attenuation will be done to the final mixed stream before
454
+ * passing it on to the audio device.
455
+ *
456
+ * This uses the Mix_RegisterEffect() API internally.
457
+ *
458
+ * returns zero if error (no such channel or Mix_RegisterEffect() fails),
459
+ * nonzero if position effect is enabled.
460
+ * Error messages can be retrieved from Mix_GetError().
461
+ */
462
+ extern DECLSPEC int SDLCALL Mix_SetDistance(int channel, Uint8 distance);
463
+
464
+
465
+ /*
466
+ * !!! FIXME : Haven't implemented, since the effect goes past the
467
+ * end of the sound buffer. Will have to think about this.
468
+ * --ryan.
469
+ */
470
+ #if 0
471
+ /* Causes an echo effect to be mixed into a sound. (echo) is the amount
472
+ * of echo to mix. 0 is no echo, 255 is infinite (and probably not
473
+ * what you want).
474
+ *
475
+ * Setting (channel) to MIX_CHANNEL_POST registers this as a posteffect, and
476
+ * the reverbing will be done to the final mixed stream before passing it on
477
+ * to the audio device.
478
+ *
479
+ * This uses the Mix_RegisterEffect() API internally. If you specify an echo
480
+ * of zero, the effect is unregistered, as the data is already in that state.
481
+ *
482
+ * returns zero if error (no such channel or Mix_RegisterEffect() fails),
483
+ * nonzero if reversing effect is enabled.
484
+ * Error messages can be retrieved from Mix_GetError().
485
+ */
486
+ extern no_parse_DECLSPEC int SDLCALL Mix_SetReverb(int channel, Uint8 echo);
487
+ #endif
488
+
489
+ /* Causes a channel to reverse its stereo. This is handy if the user has his
490
+ * speakers hooked up backwards, or you would like to have a minor bit of
491
+ * psychedelia in your sound code. :) Calling this function with (flip)
492
+ * set to non-zero reverses the chunks's usual channels. If (flip) is zero,
493
+ * the effect is unregistered.
494
+ *
495
+ * This uses the Mix_RegisterEffect() API internally, and thus is probably
496
+ * more CPU intensive than having the user just plug in his speakers
497
+ * correctly. Mix_SetReverseStereo() returns without registering the effect
498
+ * function if the audio device is not configured for stereo output.
499
+ *
500
+ * If you specify MIX_CHANNEL_POST for (channel), then this the effect is used
501
+ * on the final mixed stream before sending it on to the audio device (a
502
+ * posteffect).
503
+ *
504
+ * returns zero if error (no such channel or Mix_RegisterEffect() fails),
505
+ * nonzero if reversing effect is enabled. Note that an audio device in mono
506
+ * mode is a no-op, but this call will return successful in that case.
507
+ * Error messages can be retrieved from Mix_GetError().
508
+ */
509
+ extern DECLSPEC int SDLCALL Mix_SetReverseStereo(int channel, int flip);
510
+
511
+ /* end of effects API. --ryan. */
512
+
513
+
514
+ /* Reserve the first channels (0 -> n-1) for the application, i.e. don't allocate
515
+ them dynamically to the next sample if requested with a -1 value below.
516
+ Returns the number of reserved channels.
517
+ */
518
+ extern DECLSPEC int SDLCALL Mix_ReserveChannels(int num);
519
+
520
+ /* Channel grouping functions */
521
+
522
+ /* Attach a tag to a channel. A tag can be assigned to several mixer
523
+ channels, to form groups of channels.
524
+ If 'tag' is -1, the tag is removed (actually -1 is the tag used to
525
+ represent the group of all the channels).
526
+ Returns true if everything was OK.
527
+ */
528
+ extern DECLSPEC int SDLCALL Mix_GroupChannel(int which, int tag);
529
+ /* Assign several consecutive channels to a group */
530
+ extern DECLSPEC int SDLCALL Mix_GroupChannels(int from, int to, int tag);
531
+ /* Finds the first available channel in a group of channels,
532
+ returning -1 if none are available.
533
+ */
534
+ extern DECLSPEC int SDLCALL Mix_GroupAvailable(int tag);
535
+ /* Returns the number of channels in a group. This is also a subtle
536
+ way to get the total number of channels when 'tag' is -1
537
+ */
538
+ extern DECLSPEC int SDLCALL Mix_GroupCount(int tag);
539
+ /* Finds the "oldest" sample playing in a group of channels */
540
+ extern DECLSPEC int SDLCALL Mix_GroupOldest(int tag);
541
+ /* Finds the "most recent" (i.e. last) sample playing in a group of channels */
542
+ extern DECLSPEC int SDLCALL Mix_GroupNewer(int tag);
543
+
544
+ /* Play an audio chunk on a specific channel.
545
+ If the specified channel is -1, play on the first free channel.
546
+ If 'loops' is greater than zero, loop the sound that many times.
547
+ If 'loops' is -1, loop inifinitely (~65000 times).
548
+ Returns which channel was used to play the sound.
549
+ */
550
+ #define Mix_PlayChannel(channel,chunk,loops) Mix_PlayChannelTimed(channel,chunk,loops,-1)
551
+ /* The same as above, but the sound is played at most 'ticks' milliseconds */
552
+ extern DECLSPEC int SDLCALL Mix_PlayChannelTimed(int channel, Mix_Chunk *chunk, int loops, int ticks);
553
+ extern DECLSPEC int SDLCALL Mix_PlayMusic(Mix_Music *music, int loops);
554
+
555
+ /* Fade in music or a channel over "ms" milliseconds, same semantics as the "Play" functions */
556
+ extern DECLSPEC int SDLCALL Mix_FadeInMusic(Mix_Music *music, int loops, int ms);
557
+ extern DECLSPEC int SDLCALL Mix_FadeInMusicPos(Mix_Music *music, int loops, int ms, double position);
558
+ #define Mix_FadeInChannel(channel,chunk,loops,ms) Mix_FadeInChannelTimed(channel,chunk,loops,ms,-1)
559
+ extern DECLSPEC int SDLCALL Mix_FadeInChannelTimed(int channel, Mix_Chunk *chunk, int loops, int ms, int ticks);
560
+
561
+ /* Set the volume in the range of 0-128 of a specific channel or chunk.
562
+ If the specified channel is -1, set volume for all channels.
563
+ Returns the original volume.
564
+ If the specified volume is -1, just return the current volume.
565
+ */
566
+ extern DECLSPEC int SDLCALL Mix_Volume(int channel, int volume);
567
+ extern DECLSPEC int SDLCALL Mix_VolumeChunk(Mix_Chunk *chunk, int volume);
568
+ extern DECLSPEC int SDLCALL Mix_VolumeMusic(int volume);
569
+
570
+ /* Halt playing of a particular channel */
571
+ extern DECLSPEC int SDLCALL Mix_HaltChannel(int channel);
572
+ extern DECLSPEC int SDLCALL Mix_HaltGroup(int tag);
573
+ extern DECLSPEC int SDLCALL Mix_HaltMusic(void);
574
+
575
+ /* Change the expiration delay for a particular channel.
576
+ The sample will stop playing after the 'ticks' milliseconds have elapsed,
577
+ or remove the expiration if 'ticks' is -1
578
+ */
579
+ extern DECLSPEC int SDLCALL Mix_ExpireChannel(int channel, int ticks);
580
+
581
+ /* Halt a channel, fading it out progressively till it's silent
582
+ The ms parameter indicates the number of milliseconds the fading
583
+ will take.
584
+ */
585
+ extern DECLSPEC int SDLCALL Mix_FadeOutChannel(int which, int ms);
586
+ extern DECLSPEC int SDLCALL Mix_FadeOutGroup(int tag, int ms);
587
+ extern DECLSPEC int SDLCALL Mix_FadeOutMusic(int ms);
588
+
589
+ /* Query the fading status of a channel */
590
+ extern DECLSPEC Mix_Fading SDLCALL Mix_FadingMusic(void);
591
+ extern DECLSPEC Mix_Fading SDLCALL Mix_FadingChannel(int which);
592
+
593
+ /* Pause/Resume a particular channel */
594
+ extern DECLSPEC void SDLCALL Mix_Pause(int channel);
595
+ extern DECLSPEC void SDLCALL Mix_Resume(int channel);
596
+ extern DECLSPEC int SDLCALL Mix_Paused(int channel);
597
+
598
+ /* Pause/Resume the music stream */
599
+ extern DECLSPEC void SDLCALL Mix_PauseMusic(void);
600
+ extern DECLSPEC void SDLCALL Mix_ResumeMusic(void);
601
+ extern DECLSPEC void SDLCALL Mix_RewindMusic(void);
602
+ extern DECLSPEC int SDLCALL Mix_PausedMusic(void);
603
+
604
+ /* Set the current position in the music stream.
605
+ This returns 0 if successful, or -1 if it failed or isn't implemented.
606
+ This function is only implemented for MOD music formats (set pattern
607
+ order number) and for OGG, FLAC, MP3_MAD, MP3_MPG and MODPLUG music
608
+ (set position in seconds), at the moment.
609
+ */
610
+ extern DECLSPEC int SDLCALL Mix_SetMusicPosition(double position);
611
+
612
+ /* Check the status of a specific channel.
613
+ If the specified channel is -1, check all channels.
614
+ */
615
+ extern DECLSPEC int SDLCALL Mix_Playing(int channel);
616
+ extern DECLSPEC int SDLCALL Mix_PlayingMusic(void);
617
+
618
+ /* Stop music and set external music playback command */
619
+ extern DECLSPEC int SDLCALL Mix_SetMusicCMD(const char *command);
620
+
621
+ /* Synchro value is set by MikMod from modules while playing */
622
+ extern DECLSPEC int SDLCALL Mix_SetSynchroValue(int value);
623
+ extern DECLSPEC int SDLCALL Mix_GetSynchroValue(void);
624
+
625
+ /* Set/Get/Iterate SoundFonts paths to use by supported MIDI backends */
626
+ extern DECLSPEC int SDLCALL Mix_SetSoundFonts(const char *paths);
627
+ extern DECLSPEC const char* SDLCALL Mix_GetSoundFonts(void);
628
+ extern DECLSPEC int SDLCALL Mix_EachSoundFont(int (SDLCALL *function)(const char*, void*), void *data);
629
+
630
+ /* Get the Mix_Chunk currently associated with a mixer channel
631
+ Returns NULL if it's an invalid channel, or there's no chunk associated.
632
+ */
633
+ extern DECLSPEC Mix_Chunk * SDLCALL Mix_GetChunk(int channel);
634
+
635
+ /* Close the mixer, halting all playing audio */
636
+ extern DECLSPEC void SDLCALL Mix_CloseAudio(void);
637
+
638
+ /* We'll use SDL for reporting errors */
639
+ #define Mix_SetError SDL_SetError
640
+ #define Mix_GetError SDL_GetError
641
+ #define Mix_ClearError SDL_ClearError
642
+
643
+ /* Ends C function definitions when using C++ */
644
+ #ifdef __cplusplus
645
+ }
646
+ #endif
647
+ #include "close_code.h"
648
+
649
+ #endif /* SDL_MIXER_H_ */
650
+
651
+ /* vi: set ts=4 sw=4 expandtab: */