gosu 0.15.2 → 1.1.0.pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/dependencies/SDL/include/SDL.h +138 -0
  3. data/dependencies/SDL/include/SDL_assert.h +293 -0
  4. data/dependencies/SDL/include/SDL_atomic.h +295 -0
  5. data/dependencies/SDL/include/SDL_audio.h +859 -0
  6. data/dependencies/SDL/include/SDL_bits.h +121 -0
  7. data/dependencies/SDL/include/SDL_blendmode.h +123 -0
  8. data/dependencies/SDL/include/SDL_clipboard.h +71 -0
  9. data/dependencies/SDL/include/SDL_config.h +55 -0
  10. data/dependencies/SDL/include/SDL_config_android.h +182 -0
  11. data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
  12. data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
  13. data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
  14. data/dependencies/SDL/include/SDL_config_os2.h +188 -0
  15. data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
  16. data/dependencies/SDL/include/SDL_config_psp.h +165 -0
  17. data/dependencies/SDL/include/SDL_config_windows.h +288 -0
  18. data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
  19. data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
  20. data/dependencies/SDL/include/SDL_copying.h +20 -0
  21. data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
  22. data/dependencies/SDL/include/SDL_egl.h +1676 -0
  23. data/dependencies/SDL/include/SDL_endian.h +263 -0
  24. data/dependencies/SDL/include/SDL_error.h +112 -0
  25. data/dependencies/SDL/include/SDL_events.h +827 -0
  26. data/dependencies/SDL/include/SDL_filesystem.h +136 -0
  27. data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
  28. data/dependencies/SDL/include/SDL_gesture.h +87 -0
  29. data/dependencies/SDL/include/SDL_haptic.h +1247 -0
  30. data/dependencies/SDL/include/SDL_hints.h +1578 -0
  31. data/dependencies/SDL/include/SDL_joystick.h +499 -0
  32. data/dependencies/SDL/include/SDL_keyboard.h +217 -0
  33. data/dependencies/SDL/include/SDL_keycode.h +351 -0
  34. data/dependencies/SDL/include/SDL_loadso.h +81 -0
  35. data/dependencies/SDL/include/SDL_locale.h +101 -0
  36. data/dependencies/SDL/include/SDL_log.h +211 -0
  37. data/dependencies/SDL/include/SDL_main.h +180 -0
  38. data/dependencies/SDL/include/SDL_messagebox.h +146 -0
  39. data/dependencies/SDL/include/SDL_metal.h +117 -0
  40. data/dependencies/SDL/include/SDL_misc.h +75 -0
  41. data/dependencies/SDL/include/SDL_mouse.h +302 -0
  42. data/dependencies/SDL/include/SDL_mutex.h +251 -0
  43. data/dependencies/SDL/include/SDL_name.h +33 -0
  44. data/dependencies/SDL/include/SDL_opengl.h +2183 -0
  45. data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
  46. data/dependencies/SDL/include/SDL_opengles.h +39 -0
  47. data/dependencies/SDL/include/SDL_opengles2.h +52 -0
  48. data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
  49. data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
  50. data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
  51. data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
  52. data/dependencies/SDL/include/SDL_pixels.h +479 -0
  53. data/dependencies/SDL/include/SDL_platform.h +198 -0
  54. data/dependencies/SDL/include/SDL_power.h +75 -0
  55. data/dependencies/SDL/include/SDL_quit.h +58 -0
  56. data/dependencies/SDL/include/SDL_rect.h +174 -0
  57. data/dependencies/SDL/include/SDL_render.h +1158 -0
  58. data/dependencies/SDL/include/SDL_revision.h +2 -0
  59. data/dependencies/SDL/include/SDL_rwops.h +283 -0
  60. data/dependencies/SDL/include/SDL_scancode.h +413 -0
  61. data/dependencies/SDL/include/SDL_sensor.h +267 -0
  62. data/dependencies/SDL/include/SDL_shape.h +144 -0
  63. data/dependencies/SDL/include/SDL_stdinc.h +647 -0
  64. data/dependencies/SDL/include/SDL_surface.h +563 -0
  65. data/dependencies/SDL/include/SDL_system.h +325 -0
  66. data/dependencies/SDL/include/SDL_syswm.h +354 -0
  67. data/dependencies/SDL/include/SDL_test.h +69 -0
  68. data/dependencies/SDL/include/SDL_test_assert.h +105 -0
  69. data/dependencies/SDL/include/SDL_test_common.h +218 -0
  70. data/dependencies/SDL/include/SDL_test_compare.h +69 -0
  71. data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
  72. data/dependencies/SDL/include/SDL_test_font.h +81 -0
  73. data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
  74. data/dependencies/SDL/include/SDL_test_harness.h +134 -0
  75. data/dependencies/SDL/include/SDL_test_images.h +78 -0
  76. data/dependencies/SDL/include/SDL_test_log.h +67 -0
  77. data/dependencies/SDL/include/SDL_test_md5.h +129 -0
  78. data/dependencies/SDL/include/SDL_test_memory.h +63 -0
  79. data/dependencies/SDL/include/SDL_test_random.h +115 -0
  80. data/dependencies/SDL/include/SDL_thread.h +366 -0
  81. data/dependencies/SDL/include/SDL_timer.h +115 -0
  82. data/dependencies/SDL/include/SDL_touch.h +102 -0
  83. data/dependencies/SDL/include/SDL_types.h +29 -0
  84. data/dependencies/SDL/include/SDL_version.h +162 -0
  85. data/dependencies/SDL/include/SDL_video.h +1282 -0
  86. data/dependencies/SDL/include/SDL_vulkan.h +276 -0
  87. data/dependencies/SDL/include/begin_code.h +166 -0
  88. data/dependencies/SDL/include/close_code.h +40 -0
  89. data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
  90. data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
  91. data/dependencies/SDL_sound/SDL_sound.c +795 -0
  92. data/dependencies/SDL_sound/SDL_sound.h +725 -0
  93. data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
  94. data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
  95. data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
  96. data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
  97. data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
  98. data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
  99. data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
  100. data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
  101. data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
  102. data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
  103. data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
  104. data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
  105. data/dependencies/SDL_sound/dr_flac.h +5906 -0
  106. data/dependencies/SDL_sound/dr_mp3.h +2832 -0
  107. data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
  108. data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
  109. data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
  110. data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
  111. data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
  112. data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
  113. data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
  114. data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
  115. data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
  116. data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
  117. data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
  118. data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
  119. data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
  120. data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
  121. data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
  122. data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
  123. data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
  124. data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
  125. data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
  126. data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
  127. data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
  128. data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
  129. data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
  130. data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
  131. data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
  132. data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
  133. data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
  134. data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
  135. data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
  136. data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
  137. data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
  138. data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
  139. data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
  140. data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
  141. data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
  142. data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
  143. data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
  144. data/dependencies/al_soft/AL/al.h +655 -0
  145. data/dependencies/al_soft/AL/alc.h +270 -0
  146. data/dependencies/al_soft/AL/alext.h +585 -0
  147. data/dependencies/al_soft/AL/efx-creative.h +3 -0
  148. data/dependencies/al_soft/AL/efx-presets.h +402 -0
  149. data/dependencies/al_soft/AL/efx.h +762 -0
  150. data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
  151. data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
  152. data/{src → dependencies/stb}/stb_image.h +330 -127
  153. data/{src → dependencies/stb}/stb_image_write.h +156 -85
  154. data/{src → dependencies/stb}/stb_truetype.h +192 -69
  155. data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
  156. data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
  157. data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
  158. data/ext/gosu/extconf.rb +53 -39
  159. data/{Gosu → include/Gosu}/Audio.hpp +6 -8
  160. data/include/Gosu/Bitmap.hpp +100 -0
  161. data/{Gosu → include/Gosu}/Buttons.hpp +104 -44
  162. data/{Gosu → include/Gosu}/Color.hpp +0 -0
  163. data/{Gosu → include/Gosu}/Directories.hpp +0 -0
  164. data/{Gosu → include/Gosu}/Font.hpp +1 -1
  165. data/{Gosu → include/Gosu}/Fwd.hpp +0 -5
  166. data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
  167. data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
  168. data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
  169. data/{Gosu → include/Gosu}/IO.hpp +0 -0
  170. data/{Gosu → include/Gosu}/Image.hpp +7 -6
  171. data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
  172. data/{Gosu → include/Gosu}/Input.hpp +39 -51
  173. data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
  174. data/{Gosu → include/Gosu}/Math.hpp +0 -0
  175. data/{Gosu → include/Gosu}/Platform.hpp +0 -0
  176. data/{Gosu → include/Gosu}/Text.hpp +0 -0
  177. data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
  178. data/{Gosu → include/Gosu}/Timing.hpp +0 -0
  179. data/{Gosu → include/Gosu}/Utility.hpp +15 -4
  180. data/{Gosu → include/Gosu}/Version.hpp +3 -3
  181. data/{Gosu → include/Gosu}/Window.hpp +46 -34
  182. data/lib/OpenAL32.dll +0 -0
  183. data/lib/SDL2.dll +0 -0
  184. data/lib/gosu.rb +0 -3
  185. data/lib/gosu/patches.rb +0 -23
  186. data/lib/gosu/preview.rb +1 -3
  187. data/lib/gosu/swig_patches.rb +14 -12
  188. data/lib64/OpenAL32.dll +0 -0
  189. data/lib64/SDL2.dll +0 -0
  190. data/rdoc/gosu.rb +112 -23
  191. data/src/Audio.cpp +50 -224
  192. data/src/AudioFile.hpp +20 -37
  193. data/src/AudioFileAudioToolbox.cpp +237 -0
  194. data/src/AudioFileSDLSound.cpp +147 -0
  195. data/src/AudioImpl.cpp +3 -12
  196. data/src/AudioImpl.hpp +3 -1
  197. data/src/Bitmap.cpp +85 -83
  198. data/src/BitmapIO.cpp +52 -58
  199. data/src/Font.cpp +3 -1
  200. data/src/Graphics.cpp +7 -4
  201. data/src/Image.cpp +13 -16
  202. data/src/Input.cpp +412 -164
  203. data/src/LargeImageData.cpp +1 -1
  204. data/src/MarkupParser.cpp +2 -1
  205. data/src/Resolution.cpp +8 -8
  206. data/src/RubyGosu.cxx +1017 -196
  207. data/src/RubyGosu.h +4 -2
  208. data/src/TexChunk.cpp +1 -1
  209. data/src/TextBuilder.cpp +3 -1
  210. data/src/Texture.cpp +1 -1
  211. data/src/TrueTypeFont.cpp +1 -1
  212. data/src/TrueTypeFontWin.cpp +3 -3
  213. data/src/Utility.cpp +11 -7
  214. data/src/Window.cpp +90 -62
  215. data/src/WindowUIKit.cpp +21 -9
  216. metadata +194 -65
  217. data/Gosu/AutoLink.hpp +0 -14
  218. data/Gosu/Bitmap.hpp +0 -113
  219. data/Gosu/Channel.h +0 -25
  220. data/Gosu/Color.h +0 -38
  221. data/Gosu/Font.h +0 -36
  222. data/Gosu/Gosu.h +0 -79
  223. data/Gosu/Image.h +0 -54
  224. data/Gosu/Sample.h +0 -19
  225. data/Gosu/Song.h +0 -24
  226. data/Gosu/TextInput.h +0 -30
  227. data/Gosu/Window.h +0 -61
  228. data/lib/gosu/zen.rb +0 -89
  229. data/src/AudioToolboxFile.hpp +0 -210
  230. data/src/ChannelWrapper.cpp +0 -50
  231. data/src/ColorWrapper.cpp +0 -126
  232. data/src/Constants.cpp +0 -287
  233. data/src/FontWrapper.cpp +0 -74
  234. data/src/GosuWrapper.cpp +0 -232
  235. data/src/ImageWrapper.cpp +0 -168
  236. data/src/MPEGFile.hpp +0 -90
  237. data/src/OggFile.hpp +0 -92
  238. data/src/SampleWrapper.cpp +0 -30
  239. data/src/SndFile.hpp +0 -174
  240. data/src/SongWrapper.cpp +0 -52
  241. data/src/TextInputWrapper.cpp +0 -101
  242. data/src/WinMain.cpp +0 -64
  243. data/src/WindowWrapper.cpp +0 -289
@@ -1,210 +0,0 @@
1
- #pragma once
2
-
3
- #import "AudioFile.hpp"
4
- #import <AudioToolbox/AudioToolbox.h>
5
- #import <AudioToolbox/AudioConverter.h>
6
- #import <AudioToolbox/ExtendedAudioFile.h>
7
- #import <CoreFoundation/CoreFoundation.h>
8
- #import <Foundation/Foundation.h>
9
- #import <Gosu/IO.hpp>
10
- #import <Gosu/Platform.hpp>
11
- #import <Gosu/Utility.hpp>
12
- #import <OpenAL/al.h>
13
- #import <algorithm>
14
- #import <arpa/inet.h>
15
- #import <stdexcept>
16
- #import <vector>
17
-
18
- inline static void throw_os_error(OSStatus status, unsigned line)
19
- {
20
- std::string what;
21
- @autoreleasepool {
22
- NSError* error = [NSError errorWithDomain:NSOSStatusErrorDomain code:status userInfo:nil];
23
- NSString* message = [NSString stringWithFormat:@"Error 0x%x on line %u: %@", line, status,
24
- error.localizedDescription];
25
- what = message.UTF8String;
26
- }
27
- throw std::runtime_error(what);
28
- }
29
-
30
- #define CHECK_OS(status) do { if (status) throw_os_error(status, __LINE__); } while (0)
31
-
32
- namespace Gosu
33
- {
34
- class AudioToolboxFile : public AudioFile
35
- {
36
- Buffer buffer_;
37
- AudioFileID file_id_;
38
- ExtAudioFileRef file_;
39
- SInt64 position_;
40
- SInt64 seek_offset_;
41
-
42
- ALenum format_;
43
- ALuint sample_rate_;
44
- UInt32 bytes_per_frame_;
45
- bool big_endian_;
46
-
47
- static OSStatus AudioFile_ReadProc(void* in_client_data, SInt64 in_position,
48
- UInt32 request_count, void* buffer, UInt32* actual_count)
49
- {
50
- const Resource& res = *static_cast<Resource*>(in_client_data);
51
- *actual_count = std::min<UInt32>(request_count,
52
- static_cast<UInt32>(res.size() - in_position));
53
- res.read(in_position, *actual_count, buffer);
54
- return noErr;
55
- }
56
-
57
- static SInt64 AudioFile_GetSizeProc(void* in_client_data)
58
- {
59
- const Resource& res = *static_cast<Resource*>(in_client_data);
60
- return res.size();
61
- }
62
-
63
- void init_seek_offset()
64
- {
65
- AudioConverterRef ac_ref;
66
- UInt32 acr_size = sizeof ac_ref;
67
- CHECK_OS(ExtAudioFileGetProperty(file_, kExtAudioFileProperty_AudioConverter,
68
- &acr_size, &ac_ref));
69
-
70
- AudioConverterPrimeInfo prime_info;
71
- UInt32 pi_size = sizeof prime_info;
72
- OSStatus result = AudioConverterGetProperty(ac_ref, kAudioConverterPrimeInfo,
73
- &pi_size, &prime_info);
74
- if (result != kAudioConverterErr_PropertyNotSupported) {
75
- CHECK_OS(result);
76
- seek_offset_ = prime_info.leadingFrames;
77
- }
78
- }
79
-
80
- void init_client_format_based_on(const AudioStreamBasicDescription& base)
81
- {
82
- AudioStreamBasicDescription client_data = { 0 };
83
- sample_rate_ = client_data.mSampleRate = 22050;
84
- client_data.mFormatID = kAudioFormatLinearPCM;
85
- client_data.mFormatFlags = kAudioFormatFlagIsSignedInteger |
86
- kAudioFormatFlagsNativeEndian |
87
- kAudioFormatFlagIsPacked;
88
- client_data.mBitsPerChannel = 16;
89
- client_data.mChannelsPerFrame = base.mChannelsPerFrame;
90
- client_data.mFramesPerPacket = 1;
91
- client_data.mBytesPerPacket =
92
- client_data.mBytesPerFrame =
93
- client_data.mChannelsPerFrame * client_data.mBitsPerChannel / 8;
94
- CHECK_OS(ExtAudioFileSetProperty(file_, kExtAudioFileProperty_ClientDataFormat,
95
- sizeof client_data, &client_data));
96
-
97
- init_seek_offset();
98
-
99
- format_ = client_data.mChannelsPerFrame == 1 ? AL_FORMAT_MONO16 : AL_FORMAT_STEREO16;
100
- }
101
-
102
- void init()
103
- {
104
- // Streaming starts at beginning
105
- position_ = 0;
106
-
107
- // Unless overridden later, assume that the index into seek() is 0-based
108
- seek_offset_ = 0;
109
-
110
- AudioStreamBasicDescription desc;
111
- UInt32 size_of_property = sizeof desc;
112
- CHECK_OS(ExtAudioFileGetProperty(file_, kExtAudioFileProperty_FileDataFormat,
113
- &size_of_property, &desc));
114
-
115
- // Sample rate for OpenAL
116
- sample_rate_ = desc.mSampleRate;
117
-
118
- // Sanity checks
119
- if (desc.mFormatFlags & kAudioFormatFlagIsNonInterleaved) {
120
- throw std::runtime_error("Non-interleaved formats are unsupported");
121
- }
122
-
123
- // Easy formats
124
- format_ = 0;
125
- if (desc.mChannelsPerFrame == 1 && desc.mBitsPerChannel == 16) {
126
- format_ = AL_FORMAT_MONO16;
127
- }
128
- else if (desc.mChannelsPerFrame == 2 && desc.mBitsPerChannel == 16) {
129
- format_ = AL_FORMAT_STEREO16;
130
- }
131
-
132
- if (format_ == 0 ||
133
- // If format not native for OpenAL, set client data format to enable conversion
134
- desc.mFormatFlags & kAudioFormatFlagIsBigEndian ||
135
- desc.mFormatFlags & kAudioFormatFlagIsFloat ||
136
- !(desc.mFormatFlags & kAudioFormatFlagIsSignedInteger)) {
137
- init_client_format_based_on(desc);
138
- }
139
- else {
140
- // Just set the old format as the client format so
141
- // ExtAudioFileSeek will work for us.
142
- CHECK_OS(ExtAudioFileSetProperty(file_, kExtAudioFileProperty_ClientDataFormat,
143
- sizeof desc, &desc));
144
- }
145
- }
146
-
147
- public:
148
- AudioToolboxFile(const std::string& filename)
149
- {
150
- NSURL* URL = [NSURL fileURLWithPath:[NSString stringWithUTF8String:filename.c_str()]];
151
- CHECK_OS(ExtAudioFileOpenURL((__bridge CFURLRef) URL, &file_));
152
-
153
- file_id_ = 0;
154
-
155
- init();
156
- }
157
-
158
- AudioToolboxFile(Reader reader)
159
- {
160
- buffer_.resize(reader.resource().size() - reader.position());
161
- reader.read(buffer_.data(), buffer_.size());
162
-
163
- // TODO: This fails on iOS with MP3 files.
164
- // TODO: ^ Is the comment above still true on non-ancient iOS versions?
165
-
166
- void* client_data = &buffer_;
167
- CHECK_OS(AudioFileOpenWithCallbacks(client_data, AudioFile_ReadProc, 0,
168
- AudioFile_GetSizeProc, 0, 0, &file_id_));
169
- CHECK_OS(ExtAudioFileWrapAudioFileID(file_id_, false, &file_));
170
-
171
- init();
172
- }
173
-
174
- ~AudioToolboxFile() override
175
- {
176
- ExtAudioFileDispose(file_);
177
-
178
- if (file_id_) {
179
- AudioFileClose(file_id_);
180
- }
181
- }
182
-
183
- ALenum format() const override
184
- {
185
- return format_;
186
- }
187
-
188
- ALuint sample_rate() const override
189
- {
190
- return sample_rate_;
191
- }
192
-
193
- void rewind() override
194
- {
195
- CHECK_OS(ExtAudioFileSeek(file_, 0 + seek_offset_));
196
- }
197
-
198
- std::size_t read_data(void* dest, size_t length) override
199
- {
200
- AudioBufferList abl;
201
- abl.mNumberBuffers = 1;
202
- abl.mBuffers[0].mNumberChannels = 1;
203
- abl.mBuffers[0].mDataByteSize = static_cast<UInt32>(length);
204
- abl.mBuffers[0].mData = dest;
205
- UInt32 numFrames = 0xffffffff; // give us as many frames as possible given our buffer
206
- CHECK_OS(ExtAudioFileRead(file_, &numFrames, &abl));
207
- return abl.mBuffers[0].mDataByteSize;
208
- }
209
- };
210
- }
@@ -1,50 +0,0 @@
1
- #include <Gosu/Audio.hpp>
2
- #include <Gosu/Channel.h>
3
-
4
- extern "C" {
5
-
6
- Gosu_Channel *Gosu_Channel_create(Gosu_Channel *channel)
7
- {
8
- return channel;
9
- }
10
-
11
- bool Gosu_Channel_playing(Gosu_Channel *channel)
12
- {
13
- return reinterpret_cast<Gosu::Channel *>(channel)->playing();
14
- }
15
- void Gosu_Channel_pause(Gosu_Channel *channel)
16
- {
17
- reinterpret_cast<Gosu::Channel *>(channel)->pause();
18
- }
19
- bool Gosu_Channel_paused(Gosu_Channel *channel)
20
- {
21
- return reinterpret_cast<Gosu::Channel *>(channel)->paused();
22
- }
23
- void Gosu_Channel_resume(Gosu_Channel *channel)
24
- {
25
- reinterpret_cast<Gosu::Channel *>(channel)->resume();
26
- }
27
- void Gosu_Channel_stop(Gosu_Channel *channel)
28
- {
29
- reinterpret_cast<Gosu::Channel *>(channel)->stop();
30
- }
31
-
32
- void Gosu_Channel_set_volume(Gosu_Channel *channel, double volume)
33
- {
34
- reinterpret_cast<Gosu::Channel *>(channel)->set_volume(volume);
35
- }
36
- void Gosu_Channel_set_speed(Gosu_Channel *channel, double speed)
37
- {
38
- reinterpret_cast<Gosu::Channel *>(channel)->set_speed(speed);
39
- }
40
- void Gosu_Channel_set_pan(Gosu_Channel *channel, double pan)
41
- {
42
- reinterpret_cast<Gosu::Channel *>(channel)->set_pan(pan);
43
- }
44
-
45
- void Gosu_Channel_destroy(Gosu_Channel *channel)
46
- {
47
- delete (reinterpret_cast<Gosu::Channel *>(channel));
48
- }
49
-
50
- }
@@ -1,126 +0,0 @@
1
- #include <Gosu/Color.hpp>
2
- #include <Gosu/Color.h>
3
-
4
- #ifdef __cplusplus
5
- extern "C" {
6
- #endif
7
-
8
- unsigned Gosu_Color_create(unsigned argb)
9
- {
10
- return Gosu::Color(argb).argb();
11
- }
12
- unsigned Gosu_Color_create_argb(Gosu_Color_Channel a, Gosu_Color_Channel r, Gosu_Color_Channel g, Gosu_Color_Channel b)
13
- {
14
- return Gosu::Color(a, r, g, b).argb();
15
- }
16
- unsigned Gosu_Color_create_from_hsv(double h, double s, double v)
17
- {
18
- return Gosu::Color::from_hsv(h, s, v).argb();
19
- }
20
- unsigned Gosu_Color_create_from_ahsv(Gosu_Color_Channel alpha, double h, double s, double v)
21
- {
22
- return Gosu::Color::from_ahsv(alpha, h, s, v).argb();
23
- }
24
-
25
- Gosu_Color_Channel Gosu_Color_alpha(unsigned color)
26
- {
27
- return Gosu::Color(color).alpha();
28
- }
29
- Gosu_Color_Channel Gosu_Color_red(unsigned color)
30
- {
31
- return Gosu::Color(color).red();
32
- }
33
- Gosu_Color_Channel Gosu_Color_green(unsigned color)
34
- {
35
- return Gosu::Color(color).green();
36
- }
37
- Gosu_Color_Channel Gosu_Color_blue(unsigned color)
38
- {
39
- return Gosu::Color(color).blue();
40
- }
41
-
42
- unsigned Gosu_Color_set_alpha(unsigned color, Gosu_Color_Channel value)
43
- {
44
- Gosu::Color gosu_color = Gosu::Color(color);
45
- gosu_color.set_alpha(value);
46
-
47
- return gosu_color.argb();
48
- }
49
- unsigned Gosu_Color_set_red(unsigned color, Gosu_Color_Channel value)
50
- {
51
- Gosu::Color gosu_color = Gosu::Color(color);
52
- gosu_color.set_red(value);
53
-
54
- return gosu_color.argb();
55
- }
56
- unsigned Gosu_Color_set_green(unsigned color, Gosu_Color_Channel value)
57
- {
58
- Gosu::Color gosu_color = Gosu::Color(color);
59
- gosu_color.set_green(value);
60
-
61
- return gosu_color.argb();
62
- }
63
- unsigned Gosu_Color_set_blue(unsigned color, Gosu_Color_Channel value)
64
- {
65
- Gosu::Color gosu_color = Gosu::Color(color);
66
- gosu_color.set_blue(value);
67
-
68
- return gosu_color.argb();
69
- }
70
-
71
- double Gosu_Color_hue(unsigned color)
72
- {
73
- return Gosu::Color(color).hue();
74
- }
75
- double Gosu_Color_saturation(unsigned color)
76
- {
77
- return Gosu::Color(color).saturation();
78
- }
79
- double Gosu_Color_value(unsigned color)
80
- {
81
- return Gosu::Color(color).value();
82
- }
83
-
84
- unsigned Gosu_Color_set_hue(unsigned color, double value)
85
- {
86
- Gosu::Color gosu_color = Gosu::Color(color);
87
- gosu_color.set_hue(value);
88
-
89
- return gosu_color.argb();
90
- }
91
- unsigned Gosu_Color_set_saturation(unsigned color, double value)
92
- {
93
- Gosu::Color gosu_color = Gosu::Color(color);
94
- gosu_color.set_saturation(value);
95
-
96
- return gosu_color.argb();
97
- }
98
- unsigned Gosu_Color_set_value(unsigned color, double value)
99
- {
100
- Gosu::Color gosu_color = Gosu::Color(color);
101
- gosu_color.set_value(value);
102
-
103
- return gosu_color.argb();
104
- }
105
-
106
- unsigned Gosu_Color_argb(unsigned color)
107
- {
108
- return Gosu::Color(color).argb();
109
- }
110
- unsigned Gosu_Color_bgr(unsigned color)
111
- {
112
- return Gosu::Color(color).bgr();
113
- }
114
- unsigned Gosu_Color_abgr(unsigned color)
115
- {
116
- return Gosu::Color(color).abgr();
117
- }
118
-
119
- unsigned Gosu_Color_gl(unsigned color)
120
- {
121
- return color;
122
- }
123
-
124
- #ifdef __cplusplus
125
- }
126
- #endif
@@ -1,287 +0,0 @@
1
- #include <Gosu/Version.hpp>
2
- #include <Gosu/Buttons.hpp>
3
- #include <Gosu/GraphicsBase.hpp>
4
-
5
- #ifdef __cplusplus
6
- extern "C" {
7
- #endif
8
-
9
- const char *Gosu_version()
10
- {
11
- return Gosu::VERSION.c_str();
12
- }
13
-
14
- const char *Gosu_licenses()
15
- {
16
- return Gosu::LICENSES.c_str();
17
- }
18
-
19
- unsigned Gosu_MAJOR_VERSION = GOSU_MAJOR_VERSION;
20
- unsigned Gosu_MINOR_VERSION = GOSU_MINOR_VERSION;
21
- unsigned Gosu_POINT_VERSION = GOSU_POINT_VERSION;
22
-
23
- // Alpha/Blend Modes
24
- unsigned Gosu_AM_DEFAULT = Gosu::AM_DEFAULT;
25
- unsigned Gosu_AM_INTERPOLATE = Gosu::AM_INTERPOLATE;
26
- unsigned Gosu_AM_ADD = Gosu::AM_ADD;
27
- unsigned Gosu_AM_MULTIPLY = Gosu::AM_MULTIPLY;
28
-
29
- // Font Flags
30
- unsigned Gosu_FF_BOLD = Gosu::FF_BOLD;
31
- unsigned Gosu_FF_ITALIC = Gosu::FF_ITALIC;
32
- unsigned Gosu_FF_UNDERLINE = Gosu::FF_UNDERLINE;
33
- unsigned Gosu_FF_COMBINATIONS = Gosu::FF_COMBINATIONS;
34
-
35
- // Alignment
36
- unsigned Gosu_AL_LEFT = Gosu::AL_LEFT;
37
- unsigned Gosu_AL_RIGHT = Gosu::AL_RIGHT;
38
- unsigned Gosu_AL_CENTER = Gosu::AL_CENTER;
39
- unsigned Gosu_AL_JUSTIFY = Gosu::AL_JUSTIFY;
40
-
41
- // Image Flags
42
- unsigned Gosu_IF_SMOOTH = Gosu::IF_SMOOTH;
43
- unsigned Gosu_IF_TILEABLE_LEFT = Gosu::IF_TILEABLE_LEFT;
44
- unsigned Gosu_IF_TILEABLE_TOP = Gosu::IF_TILEABLE_TOP;
45
- unsigned Gosu_IF_TILEABLE_RIGHT = Gosu::IF_TILEABLE_RIGHT;
46
- unsigned Gosu_IF_TILEABLE_BOTTOM = Gosu::IF_TILEABLE_BOTTOM;
47
- unsigned Gosu_IF_TILEABLE = Gosu::IF_TILEABLE;
48
- unsigned Gosu_IF_RETRO = Gosu::IF_RETRO;
49
-
50
- unsigned Gosu_KB_RANGE_BEGIN = Gosu::KB_RANGE_BEGIN;
51
- unsigned Gosu_KB_ESCAPE = Gosu::KB_ESCAPE;
52
- unsigned Gosu_KB_F1 = Gosu::KB_F1;
53
- unsigned Gosu_KB_F2 = Gosu::KB_F2;
54
- unsigned Gosu_KB_F3 = Gosu::KB_F3;
55
- unsigned Gosu_KB_F4 = Gosu::KB_F4;
56
- unsigned Gosu_KB_F5 = Gosu::KB_F5;
57
- unsigned Gosu_KB_F6 = Gosu::KB_F6;
58
- unsigned Gosu_KB_F7 = Gosu::KB_F7;
59
- unsigned Gosu_KB_F8 = Gosu::KB_F8;
60
- unsigned Gosu_KB_F9 = Gosu::KB_F9;
61
- unsigned Gosu_KB_F10 = Gosu::KB_F10;
62
- unsigned Gosu_KB_F11 = Gosu::KB_F11;
63
- unsigned Gosu_KB_F12 = Gosu::KB_F12;
64
- unsigned Gosu_KB_0 = Gosu::KB_0;
65
- unsigned Gosu_KB_1 = Gosu::KB_1;
66
- unsigned Gosu_KB_2 = Gosu::KB_2;
67
- unsigned Gosu_KB_3 = Gosu::KB_3;
68
- unsigned Gosu_KB_4 = Gosu::KB_4;
69
- unsigned Gosu_KB_5 = Gosu::KB_5;
70
- unsigned Gosu_KB_6 = Gosu::KB_6;
71
- unsigned Gosu_KB_7 = Gosu::KB_7;
72
- unsigned Gosu_KB_8 = Gosu::KB_8;
73
- unsigned Gosu_KB_9 = Gosu::KB_9;
74
- unsigned Gosu_KB_TAB = Gosu::KB_TAB;
75
- unsigned Gosu_KB_RETURN = Gosu::KB_RETURN;
76
- unsigned Gosu_KB_SPACE = Gosu::KB_SPACE;
77
- unsigned Gosu_KB_LEFT_SHIFT = Gosu::KB_LEFT_SHIFT;
78
- unsigned Gosu_KB_RIGHT_SHIFT = Gosu::KB_RIGHT_SHIFT;
79
- unsigned Gosu_KB_LEFT_CONTROL = Gosu::KB_LEFT_CONTROL;
80
- unsigned Gosu_KB_RIGHT_CONTROL = Gosu::KB_RIGHT_CONTROL;
81
- unsigned Gosu_KB_LEFT_ALT = Gosu::KB_LEFT_ALT;
82
- unsigned Gosu_KB_RIGHT_ALT = Gosu::KB_RIGHT_ALT;
83
- unsigned Gosu_KB_LEFT_META = Gosu::KB_LEFT_META;
84
- unsigned Gosu_KB_RIGHT_META = Gosu::KB_RIGHT_META;
85
- unsigned Gosu_KB_BACKSPACE = Gosu::KB_BACKSPACE;
86
- unsigned Gosu_KB_LEFT = Gosu::KB_LEFT;
87
- unsigned Gosu_KB_RIGHT = Gosu::KB_RIGHT;
88
- unsigned Gosu_KB_UP = Gosu::KB_UP;
89
- unsigned Gosu_KB_DOWN = Gosu::KB_DOWN;
90
- unsigned Gosu_KB_HOME = Gosu::KB_HOME;
91
- unsigned Gosu_KB_END = Gosu::KB_END;
92
- unsigned Gosu_KB_INSERT = Gosu::KB_INSERT;
93
- unsigned Gosu_KB_DELETE = Gosu::KB_DELETE;
94
- unsigned Gosu_KB_PAGE_UP = Gosu::KB_PAGE_UP;
95
- unsigned Gosu_KB_PAGE_DOWN = Gosu::KB_PAGE_DOWN;
96
- unsigned Gosu_KB_ENTER = Gosu::KB_ENTER;
97
- unsigned Gosu_KB_BACKTICK = Gosu::KB_BACKTICK;
98
- unsigned Gosu_KB_MINUS = Gosu::KB_MINUS;
99
- unsigned Gosu_KB_EQUALS = Gosu::KB_EQUALS;
100
- unsigned Gosu_KB_LEFT_BRACKET = Gosu::KB_LEFT_BRACKET;
101
- unsigned Gosu_KB_RIGHT_BRACKET = Gosu::KB_RIGHT_BRACKET;
102
- unsigned Gosu_KB_BACKSLASH = Gosu::KB_BACKSLASH;
103
- unsigned Gosu_KB_SEMICOLON = Gosu::KB_SEMICOLON;
104
- unsigned Gosu_KB_APOSTROPHE = Gosu::KB_APOSTROPHE;
105
- unsigned Gosu_KB_COMMA = Gosu::KB_COMMA;
106
- unsigned Gosu_KB_PERIOD = Gosu::KB_PERIOD;
107
- unsigned Gosu_KB_SLASH = Gosu::KB_SLASH;
108
- unsigned Gosu_KB_A = Gosu::KB_A;
109
- unsigned Gosu_KB_B = Gosu::KB_B;
110
- unsigned Gosu_KB_C = Gosu::KB_C;
111
- unsigned Gosu_KB_D = Gosu::KB_D;
112
- unsigned Gosu_KB_E = Gosu::KB_E;
113
- unsigned Gosu_KB_F = Gosu::KB_F;
114
- unsigned Gosu_KB_G = Gosu::KB_G;
115
- unsigned Gosu_KB_H = Gosu::KB_H;
116
- unsigned Gosu_KB_I = Gosu::KB_I;
117
- unsigned Gosu_KB_J = Gosu::KB_J;
118
- unsigned Gosu_KB_K = Gosu::KB_K;
119
- unsigned Gosu_KB_L = Gosu::KB_L;
120
- unsigned Gosu_KB_M = Gosu::KB_M;
121
- unsigned Gosu_KB_N = Gosu::KB_N;
122
- unsigned Gosu_KB_O = Gosu::KB_O;
123
- unsigned Gosu_KB_P = Gosu::KB_P;
124
- unsigned Gosu_KB_Q = Gosu::KB_Q;
125
- unsigned Gosu_KB_R = Gosu::KB_R;
126
- unsigned Gosu_KB_S = Gosu::KB_S;
127
- unsigned Gosu_KB_T = Gosu::KB_T;
128
- unsigned Gosu_KB_U = Gosu::KB_U;
129
- unsigned Gosu_KB_V = Gosu::KB_V;
130
- unsigned Gosu_KB_W = Gosu::KB_W;
131
- unsigned Gosu_KB_X = Gosu::KB_X;
132
- unsigned Gosu_KB_Y = Gosu::KB_Y;
133
- unsigned Gosu_KB_Z = Gosu::KB_Z;
134
- unsigned Gosu_KB_ISO = Gosu::KB_ISO;
135
- unsigned Gosu_KB_NUMPAD_0 = Gosu::KB_NUMPAD_0;
136
- unsigned Gosu_KB_NUMPAD_1 = Gosu::KB_NUMPAD_1;
137
- unsigned Gosu_KB_NUMPAD_2 = Gosu::KB_NUMPAD_2;
138
- unsigned Gosu_KB_NUMPAD_3 = Gosu::KB_NUMPAD_3;
139
- unsigned Gosu_KB_NUMPAD_4 = Gosu::KB_NUMPAD_4;
140
- unsigned Gosu_KB_NUMPAD_5 = Gosu::KB_NUMPAD_5;
141
- unsigned Gosu_KB_NUMPAD_6 = Gosu::KB_NUMPAD_6;
142
- unsigned Gosu_KB_NUMPAD_7 = Gosu::KB_NUMPAD_7;
143
- unsigned Gosu_KB_NUMPAD_8 = Gosu::KB_NUMPAD_8;
144
- unsigned Gosu_KB_NUMPAD_9 = Gosu::KB_NUMPAD_9;
145
- unsigned Gosu_KB_NUMPAD_DELETE = Gosu::KB_NUMPAD_DELETE;
146
- unsigned Gosu_KB_NUMPAD_PLUS = Gosu::KB_NUMPAD_PLUS;
147
- unsigned Gosu_KB_NUMPAD_MINUS = Gosu::KB_NUMPAD_MINUS;
148
- unsigned Gosu_KB_NUMPAD_MULTIPLY = Gosu::KB_NUMPAD_MULTIPLY;
149
- unsigned Gosu_KB_NUMPAD_DIVIDE = Gosu::KB_NUMPAD_DIVIDE;
150
- unsigned Gosu_KB_RANGE_END = Gosu::KB_RANGE_END;
151
-
152
- unsigned Gosu_MS_RANGE_BEGIN = Gosu::MS_RANGE_BEGIN;
153
- unsigned Gosu_MS_LEFT = Gosu::MS_LEFT;
154
- unsigned Gosu_MS_MIDDLE = Gosu::MS_MIDDLE;
155
- unsigned Gosu_MS_RIGHT = Gosu::MS_RIGHT;
156
- unsigned Gosu_MS_WHEEL_UP = Gosu::MS_WHEEL_UP;
157
- unsigned Gosu_MS_WHEEL_DOWN = Gosu::MS_WHEEL_DOWN;
158
- unsigned Gosu_MS_OTHER_0 = Gosu::MS_OTHER_0;
159
- unsigned Gosu_MS_OTHER_1 = Gosu::MS_OTHER_1;
160
- unsigned Gosu_MS_OTHER_2 = Gosu::MS_OTHER_2;
161
- unsigned Gosu_MS_OTHER_3 = Gosu::MS_OTHER_3;
162
- unsigned Gosu_MS_OTHER_4 = Gosu::MS_OTHER_4;
163
- unsigned Gosu_MS_OTHER_5 = Gosu::MS_OTHER_5;
164
- unsigned Gosu_MS_OTHER_6 = Gosu::MS_OTHER_6;
165
- unsigned Gosu_MS_OTHER_7 = Gosu::MS_OTHER_7;
166
- unsigned Gosu_MS_RANGE_END = Gosu::MS_RANGE_END;
167
-
168
- unsigned Gosu_GP_RANGE_BEGIN = Gosu::GP_RANGE_BEGIN;
169
- unsigned Gosu_GP_LEFT = Gosu::GP_LEFT;
170
- unsigned Gosu_GP_RIGHT = Gosu::GP_RIGHT;
171
- unsigned Gosu_GP_UP = Gosu::GP_UP;
172
- unsigned Gosu_GP_DOWN = Gosu::GP_DOWN;
173
- unsigned Gosu_GP_BUTTON_0 = Gosu::GP_BUTTON_0;
174
- unsigned Gosu_GP_BUTTON_1 = Gosu::GP_BUTTON_1;
175
- unsigned Gosu_GP_BUTTON_2 = Gosu::GP_BUTTON_2;
176
- unsigned Gosu_GP_BUTTON_3 = Gosu::GP_BUTTON_3;
177
- unsigned Gosu_GP_BUTTON_4 = Gosu::GP_BUTTON_4;
178
- unsigned Gosu_GP_BUTTON_5 = Gosu::GP_BUTTON_5;
179
- unsigned Gosu_GP_BUTTON_6 = Gosu::GP_BUTTON_6;
180
- unsigned Gosu_GP_BUTTON_7 = Gosu::GP_BUTTON_7;
181
- unsigned Gosu_GP_BUTTON_8 = Gosu::GP_BUTTON_8;
182
- unsigned Gosu_GP_BUTTON_9 = Gosu::GP_BUTTON_9;
183
- unsigned Gosu_GP_BUTTON_10 = Gosu::GP_BUTTON_10;
184
- unsigned Gosu_GP_BUTTON_11 = Gosu::GP_BUTTON_11;
185
- unsigned Gosu_GP_BUTTON_12 = Gosu::GP_BUTTON_12;
186
- unsigned Gosu_GP_BUTTON_13 = Gosu::GP_BUTTON_13;
187
- unsigned Gosu_GP_BUTTON_14 = Gosu::GP_BUTTON_14;
188
- unsigned Gosu_GP_BUTTON_15 = Gosu::GP_BUTTON_15;
189
-
190
- unsigned Gosu_GP_0_LEFT = Gosu::GP_0_LEFT;
191
- unsigned Gosu_GP_0_RIGHT = Gosu::GP_0_RIGHT;
192
- unsigned Gosu_GP_0_UP = Gosu::GP_0_UP;
193
- unsigned Gosu_GP_0_DOWN = Gosu::GP_0_DOWN;
194
- unsigned Gosu_GP_0_BUTTON_0 = Gosu::GP_0_BUTTON_0;
195
- unsigned Gosu_GP_0_BUTTON_1 = Gosu::GP_0_BUTTON_1;
196
- unsigned Gosu_GP_0_BUTTON_2 = Gosu::GP_0_BUTTON_2;
197
- unsigned Gosu_GP_0_BUTTON_3 = Gosu::GP_0_BUTTON_3;
198
- unsigned Gosu_GP_0_BUTTON_4 = Gosu::GP_0_BUTTON_4;
199
- unsigned Gosu_GP_0_BUTTON_5 = Gosu::GP_0_BUTTON_5;
200
- unsigned Gosu_GP_0_BUTTON_6 = Gosu::GP_0_BUTTON_6;
201
- unsigned Gosu_GP_0_BUTTON_7 = Gosu::GP_0_BUTTON_7;
202
- unsigned Gosu_GP_0_BUTTON_8 = Gosu::GP_0_BUTTON_8;
203
- unsigned Gosu_GP_0_BUTTON_9 = Gosu::GP_0_BUTTON_9;
204
- unsigned Gosu_GP_0_BUTTON_10 = Gosu::GP_0_BUTTON_10;
205
- unsigned Gosu_GP_0_BUTTON_11 = Gosu::GP_0_BUTTON_11;
206
- unsigned Gosu_GP_0_BUTTON_12 = Gosu::GP_0_BUTTON_12;
207
- unsigned Gosu_GP_0_BUTTON_13 = Gosu::GP_0_BUTTON_13;
208
- unsigned Gosu_GP_0_BUTTON_14 = Gosu::GP_0_BUTTON_14;
209
- unsigned Gosu_GP_0_BUTTON_15 = Gosu::GP_0_BUTTON_15;
210
-
211
- unsigned Gosu_GP_1_LEFT = Gosu::GP_1_LEFT;
212
- unsigned Gosu_GP_1_RIGHT = Gosu::GP_1_RIGHT;
213
- unsigned Gosu_GP_1_UP = Gosu::GP_1_UP;
214
- unsigned Gosu_GP_1_DOWN = Gosu::GP_1_DOWN;
215
- unsigned Gosu_GP_1_BUTTON_0 = Gosu::GP_1_BUTTON_0;
216
- unsigned Gosu_GP_1_BUTTON_1 = Gosu::GP_1_BUTTON_1;
217
- unsigned Gosu_GP_1_BUTTON_2 = Gosu::GP_1_BUTTON_2;
218
- unsigned Gosu_GP_1_BUTTON_3 = Gosu::GP_1_BUTTON_3;
219
- unsigned Gosu_GP_1_BUTTON_4 = Gosu::GP_1_BUTTON_4;
220
- unsigned Gosu_GP_1_BUTTON_5 = Gosu::GP_1_BUTTON_5;
221
- unsigned Gosu_GP_1_BUTTON_6 = Gosu::GP_1_BUTTON_6;
222
- unsigned Gosu_GP_1_BUTTON_7 = Gosu::GP_1_BUTTON_7;
223
- unsigned Gosu_GP_1_BUTTON_8 = Gosu::GP_1_BUTTON_8;
224
- unsigned Gosu_GP_1_BUTTON_9 = Gosu::GP_1_BUTTON_9;
225
- unsigned Gosu_GP_1_BUTTON_10 = Gosu::GP_1_BUTTON_10;
226
- unsigned Gosu_GP_1_BUTTON_11 = Gosu::GP_1_BUTTON_11;
227
- unsigned Gosu_GP_1_BUTTON_12 = Gosu::GP_1_BUTTON_12;
228
- unsigned Gosu_GP_1_BUTTON_13 = Gosu::GP_1_BUTTON_13;
229
- unsigned Gosu_GP_1_BUTTON_14 = Gosu::GP_1_BUTTON_14;
230
- unsigned Gosu_GP_1_BUTTON_15 = Gosu::GP_1_BUTTON_15;
231
-
232
- unsigned Gosu_GP_2_LEFT = Gosu::GP_2_LEFT;
233
- unsigned Gosu_GP_2_RIGHT = Gosu::GP_2_RIGHT;
234
- unsigned Gosu_GP_2_UP = Gosu::GP_2_UP;
235
- unsigned Gosu_GP_2_DOWN = Gosu::GP_2_DOWN;
236
- unsigned Gosu_GP_2_BUTTON_0 = Gosu::GP_2_BUTTON_0;
237
- unsigned Gosu_GP_2_BUTTON_1 = Gosu::GP_2_BUTTON_1;
238
- unsigned Gosu_GP_2_BUTTON_2 = Gosu::GP_2_BUTTON_2;
239
- unsigned Gosu_GP_2_BUTTON_3 = Gosu::GP_2_BUTTON_3;
240
- unsigned Gosu_GP_2_BUTTON_4 = Gosu::GP_2_BUTTON_4;
241
- unsigned Gosu_GP_2_BUTTON_5 = Gosu::GP_2_BUTTON_5;
242
- unsigned Gosu_GP_2_BUTTON_6 = Gosu::GP_2_BUTTON_6;
243
- unsigned Gosu_GP_2_BUTTON_7 = Gosu::GP_2_BUTTON_7;
244
- unsigned Gosu_GP_2_BUTTON_8 = Gosu::GP_2_BUTTON_8;
245
- unsigned Gosu_GP_2_BUTTON_9 = Gosu::GP_2_BUTTON_9;
246
- unsigned Gosu_GP_2_BUTTON_10 = Gosu::GP_2_BUTTON_10;
247
- unsigned Gosu_GP_2_BUTTON_11 = Gosu::GP_2_BUTTON_11;
248
- unsigned Gosu_GP_2_BUTTON_12 = Gosu::GP_2_BUTTON_12;
249
- unsigned Gosu_GP_2_BUTTON_13 = Gosu::GP_2_BUTTON_13;
250
- unsigned Gosu_GP_2_BUTTON_14 = Gosu::GP_2_BUTTON_14;
251
- unsigned Gosu_GP_2_BUTTON_15 = Gosu::GP_2_BUTTON_15;
252
-
253
- unsigned Gosu_GP_3_LEFT = Gosu::GP_3_LEFT;
254
- unsigned Gosu_GP_3_RIGHT = Gosu::GP_3_RIGHT;
255
- unsigned Gosu_GP_3_UP = Gosu::GP_3_UP;
256
- unsigned Gosu_GP_3_DOWN = Gosu::GP_3_DOWN;
257
- unsigned Gosu_GP_3_BUTTON_0 = Gosu::GP_3_BUTTON_0;
258
- unsigned Gosu_GP_3_BUTTON_1 = Gosu::GP_3_BUTTON_1;
259
- unsigned Gosu_GP_3_BUTTON_2 = Gosu::GP_3_BUTTON_2;
260
- unsigned Gosu_GP_3_BUTTON_3 = Gosu::GP_3_BUTTON_3;
261
- unsigned Gosu_GP_3_BUTTON_4 = Gosu::GP_3_BUTTON_4;
262
- unsigned Gosu_GP_3_BUTTON_5 = Gosu::GP_3_BUTTON_5;
263
- unsigned Gosu_GP_3_BUTTON_6 = Gosu::GP_3_BUTTON_6;
264
- unsigned Gosu_GP_3_BUTTON_7 = Gosu::GP_3_BUTTON_7;
265
- unsigned Gosu_GP_3_BUTTON_8 = Gosu::GP_3_BUTTON_8;
266
- unsigned Gosu_GP_3_BUTTON_9 = Gosu::GP_3_BUTTON_9;
267
- unsigned Gosu_GP_3_BUTTON_10 = Gosu::GP_3_BUTTON_10;
268
- unsigned Gosu_GP_3_BUTTON_11 = Gosu::GP_3_BUTTON_11;
269
- unsigned Gosu_GP_3_BUTTON_12 = Gosu::GP_3_BUTTON_12;
270
- unsigned Gosu_GP_3_BUTTON_13 = Gosu::GP_3_BUTTON_13;
271
- unsigned Gosu_GP_3_BUTTON_14 = Gosu::GP_3_BUTTON_14;
272
- unsigned Gosu_GP_3_BUTTON_15 = Gosu::GP_3_BUTTON_15;
273
-
274
- unsigned Gosu_GP_RANGE_END = Gosu::GP_RANGE_END;
275
-
276
- unsigned Gosu_NUM_BUTTONS = Gosu::NUM_BUTTONS;
277
- unsigned Gosu_NUM_GAMEPADS = Gosu::NUM_GAMEPADS;
278
- unsigned Gosu_NO_BUTTON = Gosu::NO_BUTTON;
279
-
280
- unsigned Gosu_KB_NUM = Gosu::KB_NUM;
281
- unsigned Gosu_MS_NUM = Gosu::MS_NUM;
282
- unsigned Gosu_GP_NUM = Gosu::GP_NUM;
283
- unsigned Gosu_GP_NUM_PER_GAMEPAD = Gosu::GP_NUM_PER_GAMEPAD;
284
-
285
- #ifdef __cplusplus
286
- }
287
- #endif