gosu 0.15.1 → 1.1.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -0
- data/COPYING +1 -1
- data/dependencies/SDL/include/SDL.h +138 -0
- data/dependencies/SDL/include/SDL_assert.h +293 -0
- data/dependencies/SDL/include/SDL_atomic.h +295 -0
- data/dependencies/SDL/include/SDL_audio.h +859 -0
- data/dependencies/SDL/include/SDL_bits.h +121 -0
- data/dependencies/SDL/include/SDL_blendmode.h +123 -0
- data/dependencies/SDL/include/SDL_clipboard.h +71 -0
- data/dependencies/SDL/include/SDL_config.h +55 -0
- data/dependencies/SDL/include/SDL_config_android.h +182 -0
- data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
- data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
- data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
- data/dependencies/SDL/include/SDL_config_os2.h +188 -0
- data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
- data/dependencies/SDL/include/SDL_config_psp.h +165 -0
- data/dependencies/SDL/include/SDL_config_windows.h +288 -0
- data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
- data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
- data/dependencies/SDL/include/SDL_copying.h +20 -0
- data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
- data/dependencies/SDL/include/SDL_egl.h +1676 -0
- data/dependencies/SDL/include/SDL_endian.h +263 -0
- data/dependencies/SDL/include/SDL_error.h +112 -0
- data/dependencies/SDL/include/SDL_events.h +827 -0
- data/dependencies/SDL/include/SDL_filesystem.h +136 -0
- data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
- data/dependencies/SDL/include/SDL_gesture.h +87 -0
- data/dependencies/SDL/include/SDL_haptic.h +1247 -0
- data/dependencies/SDL/include/SDL_hints.h +1578 -0
- data/dependencies/SDL/include/SDL_joystick.h +499 -0
- data/dependencies/SDL/include/SDL_keyboard.h +217 -0
- data/dependencies/SDL/include/SDL_keycode.h +351 -0
- data/dependencies/SDL/include/SDL_loadso.h +81 -0
- data/dependencies/SDL/include/SDL_locale.h +101 -0
- data/dependencies/SDL/include/SDL_log.h +211 -0
- data/dependencies/SDL/include/SDL_main.h +180 -0
- data/dependencies/SDL/include/SDL_messagebox.h +146 -0
- data/dependencies/SDL/include/SDL_metal.h +117 -0
- data/dependencies/SDL/include/SDL_misc.h +75 -0
- data/dependencies/SDL/include/SDL_mouse.h +302 -0
- data/dependencies/SDL/include/SDL_mutex.h +251 -0
- data/dependencies/SDL/include/SDL_name.h +33 -0
- data/dependencies/SDL/include/SDL_opengl.h +2183 -0
- data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
- data/dependencies/SDL/include/SDL_opengles.h +39 -0
- data/dependencies/SDL/include/SDL_opengles2.h +52 -0
- data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
- data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
- data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
- data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
- data/dependencies/SDL/include/SDL_pixels.h +479 -0
- data/dependencies/SDL/include/SDL_platform.h +198 -0
- data/dependencies/SDL/include/SDL_power.h +75 -0
- data/dependencies/SDL/include/SDL_quit.h +58 -0
- data/dependencies/SDL/include/SDL_rect.h +174 -0
- data/dependencies/SDL/include/SDL_render.h +1158 -0
- data/dependencies/SDL/include/SDL_revision.h +2 -0
- data/dependencies/SDL/include/SDL_rwops.h +283 -0
- data/dependencies/SDL/include/SDL_scancode.h +413 -0
- data/dependencies/SDL/include/SDL_sensor.h +267 -0
- data/dependencies/SDL/include/SDL_shape.h +144 -0
- data/dependencies/SDL/include/SDL_stdinc.h +647 -0
- data/dependencies/SDL/include/SDL_surface.h +563 -0
- data/dependencies/SDL/include/SDL_system.h +325 -0
- data/dependencies/SDL/include/SDL_syswm.h +354 -0
- data/dependencies/SDL/include/SDL_test.h +69 -0
- data/dependencies/SDL/include/SDL_test_assert.h +105 -0
- data/dependencies/SDL/include/SDL_test_common.h +218 -0
- data/dependencies/SDL/include/SDL_test_compare.h +69 -0
- data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
- data/dependencies/SDL/include/SDL_test_font.h +81 -0
- data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
- data/dependencies/SDL/include/SDL_test_harness.h +134 -0
- data/dependencies/SDL/include/SDL_test_images.h +78 -0
- data/dependencies/SDL/include/SDL_test_log.h +67 -0
- data/dependencies/SDL/include/SDL_test_md5.h +129 -0
- data/dependencies/SDL/include/SDL_test_memory.h +63 -0
- data/dependencies/SDL/include/SDL_test_random.h +115 -0
- data/dependencies/SDL/include/SDL_thread.h +366 -0
- data/dependencies/SDL/include/SDL_timer.h +115 -0
- data/dependencies/SDL/include/SDL_touch.h +102 -0
- data/dependencies/SDL/include/SDL_types.h +29 -0
- data/dependencies/SDL/include/SDL_version.h +162 -0
- data/dependencies/SDL/include/SDL_video.h +1282 -0
- data/dependencies/SDL/include/SDL_vulkan.h +276 -0
- data/dependencies/SDL/include/begin_code.h +166 -0
- data/dependencies/SDL/include/close_code.h +40 -0
- data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
- data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
- data/dependencies/SDL_sound/SDL_sound.c +795 -0
- data/dependencies/SDL_sound/SDL_sound.h +725 -0
- data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
- data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
- data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
- data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
- data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
- data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
- data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
- data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
- data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
- data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
- data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
- data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
- data/dependencies/SDL_sound/dr_flac.h +5906 -0
- data/dependencies/SDL_sound/dr_mp3.h +2832 -0
- data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
- data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
- data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
- data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
- data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
- data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
- data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
- data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
- data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
- data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
- data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
- data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
- data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
- data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
- data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
- data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
- data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
- data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
- data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
- data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
- data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
- data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
- data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
- data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
- data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
- data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
- data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
- data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
- data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
- data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
- data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
- data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
- data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
- data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
- data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
- data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
- data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
- data/dependencies/al_soft/AL/al.h +655 -0
- data/dependencies/al_soft/AL/alc.h +270 -0
- data/dependencies/al_soft/AL/alext.h +585 -0
- data/dependencies/al_soft/AL/efx-creative.h +3 -0
- data/dependencies/al_soft/AL/efx-presets.h +402 -0
- data/dependencies/al_soft/AL/efx.h +762 -0
- data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
- data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
- data/{src → dependencies/stb}/stb_image.h +330 -127
- data/{src → dependencies/stb}/stb_image_write.h +156 -85
- data/{src → dependencies/stb}/stb_truetype.h +192 -69
- data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
- data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
- data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
- data/ext/gosu/extconf.rb +53 -39
- data/{Gosu → include/Gosu}/Audio.hpp +6 -8
- data/include/Gosu/Bitmap.hpp +100 -0
- data/{Gosu → include/Gosu}/Buttons.hpp +104 -44
- data/{Gosu → include/Gosu}/Color.hpp +0 -0
- data/{Gosu → include/Gosu}/Directories.hpp +0 -0
- data/{Gosu → include/Gosu}/Font.hpp +1 -1
- data/{Gosu → include/Gosu}/Fwd.hpp +0 -5
- data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
- data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
- data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
- data/{Gosu → include/Gosu}/IO.hpp +0 -0
- data/{Gosu → include/Gosu}/Image.hpp +7 -6
- data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
- data/{Gosu → include/Gosu}/Input.hpp +39 -51
- data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
- data/{Gosu → include/Gosu}/Math.hpp +0 -0
- data/{Gosu → include/Gosu}/Platform.hpp +0 -0
- data/{Gosu → include/Gosu}/Text.hpp +0 -0
- data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
- data/{Gosu → include/Gosu}/Timing.hpp +0 -0
- data/{Gosu → include/Gosu}/Utility.hpp +15 -4
- data/{Gosu → include/Gosu}/Version.hpp +3 -3
- data/{Gosu → include/Gosu}/Window.hpp +46 -34
- data/lib/OpenAL32.dll +0 -0
- data/lib/SDL2.dll +0 -0
- data/lib/gosu.rb +0 -3
- data/lib/gosu/patches.rb +0 -23
- data/lib/gosu/preview.rb +1 -3
- data/lib/gosu/swig_patches.rb +6 -8
- data/lib64/OpenAL32.dll +0 -0
- data/lib64/SDL2.dll +0 -0
- data/rdoc/gosu.rb +112 -23
- data/src/Audio.cpp +50 -224
- data/src/AudioFile.hpp +20 -37
- data/src/AudioFileAudioToolbox.cpp +237 -0
- data/src/AudioFileSDLSound.cpp +147 -0
- data/src/AudioImpl.cpp +3 -12
- data/src/AudioImpl.hpp +3 -1
- data/src/Bitmap.cpp +85 -83
- data/src/BitmapIO.cpp +52 -58
- data/src/Font.cpp +4 -1
- data/src/Graphics.cpp +7 -4
- data/src/Image.cpp +13 -16
- data/src/Input.cpp +412 -164
- data/src/LargeImageData.cpp +2 -1
- data/src/MarkupParser.cpp +2 -1
- data/src/Resolution.cpp +8 -8
- data/src/RubyGosu.cxx +1184 -352
- data/src/RubyGosu.h +3 -2
- data/src/TexChunk.cpp +1 -1
- data/src/Text.cpp +1 -0
- data/src/TextBuilder.cpp +3 -1
- data/src/Texture.cpp +1 -1
- data/src/TrueTypeFont.cpp +2 -1
- data/src/TrueTypeFontWin.cpp +3 -3
- data/src/Utility.cpp +11 -7
- data/src/Window.cpp +90 -62
- data/src/WindowUIKit.cpp +21 -9
- metadata +195 -46
- data/Gosu/AutoLink.hpp +0 -14
- data/Gosu/Bitmap.hpp +0 -113
- data/lib/gosu/zen.rb +0 -89
- data/src/AudioToolboxFile.hpp +0 -210
- data/src/MPEGFile.hpp +0 -90
- data/src/OggFile.hpp +0 -92
- data/src/SndFile.hpp +0 -174
- data/src/WinMain.cpp +0 -64
data/lib/gosu/zen.rb
DELETED
@@ -1,89 +0,0 @@
|
|
1
|
-
require 'gosu/preview'
|
2
|
-
|
3
|
-
module Gosu
|
4
|
-
module Zen
|
5
|
-
|
6
|
-
@@window_args = [800, 600, {}]
|
7
|
-
@@options = {}
|
8
|
-
|
9
|
-
def window width, height, options = nil
|
10
|
-
if $window.nil?
|
11
|
-
@@window_args[0] = width
|
12
|
-
@@window_args[1] = height
|
13
|
-
@@window_args[2].merge! options if options
|
14
|
-
else
|
15
|
-
raise "window size can only be set before the window is created"
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
def set what, value
|
20
|
-
if $window.nil?
|
21
|
-
@@options[what.to_sym] = value
|
22
|
-
else
|
23
|
-
$window.send "#{what}=", value
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def init &body
|
28
|
-
ZenWindow.send :define_method, :init, &body
|
29
|
-
end
|
30
|
-
|
31
|
-
def button_down id = nil, &body
|
32
|
-
m = id ? "button_down_#{id}" : :button_down_other
|
33
|
-
ZenWindow.send :define_method, m, &body
|
34
|
-
end
|
35
|
-
|
36
|
-
def button_up id = nil, &body
|
37
|
-
m = id ? "button_up_#{id}" : :button_up_other
|
38
|
-
ZenWindow.send :define_method, m, &body
|
39
|
-
end
|
40
|
-
|
41
|
-
def update &body
|
42
|
-
ZenWindow.send :define_method, :update, &body
|
43
|
-
end
|
44
|
-
|
45
|
-
def draw &body
|
46
|
-
ZenWindow.send :define_method, :draw, &body
|
47
|
-
end
|
48
|
-
|
49
|
-
def run!
|
50
|
-
window = ZenWindow.new *@@window_args
|
51
|
-
@@options.each do |opt, value|
|
52
|
-
window.send "#{opt}=", value
|
53
|
-
end
|
54
|
-
window.show
|
55
|
-
end
|
56
|
-
|
57
|
-
def Zen.included mod
|
58
|
-
at_exit { run! unless $! }
|
59
|
-
end
|
60
|
-
|
61
|
-
end
|
62
|
-
|
63
|
-
class ZenWindow < Window
|
64
|
-
def initialize *args
|
65
|
-
super
|
66
|
-
init
|
67
|
-
end
|
68
|
-
|
69
|
-
def init
|
70
|
-
end
|
71
|
-
|
72
|
-
def button_down id
|
73
|
-
m = :"button_down_#{id}"
|
74
|
-
respond_to?(m) ? send(m) : button_down_other(id)
|
75
|
-
end
|
76
|
-
|
77
|
-
def button_up id
|
78
|
-
m = :"button_up_#{id}"
|
79
|
-
respond_to?(m) ? send(m) : button_up_other(id)
|
80
|
-
end
|
81
|
-
|
82
|
-
def button_down_other id
|
83
|
-
end
|
84
|
-
|
85
|
-
def button_up_other id
|
86
|
-
end
|
87
|
-
|
88
|
-
end
|
89
|
-
end
|
data/src/AudioToolboxFile.hpp
DELETED
@@ -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
|
-
}
|
data/src/MPEGFile.hpp
DELETED
@@ -1,90 +0,0 @@
|
|
1
|
-
#pragma once
|
2
|
-
|
3
|
-
#include "AudioFile.hpp"
|
4
|
-
#include <Gosu/IO.hpp>
|
5
|
-
#include <algorithm>
|
6
|
-
#include <stdexcept>
|
7
|
-
#include <string>
|
8
|
-
|
9
|
-
#include <mpg123.h>
|
10
|
-
|
11
|
-
namespace Gosu
|
12
|
-
{
|
13
|
-
class MPEGFile : public AudioFile
|
14
|
-
{
|
15
|
-
Gosu::Buffer contents_;
|
16
|
-
off_t position_ = 0;
|
17
|
-
mpg123_handle* handle_;
|
18
|
-
|
19
|
-
enum {
|
20
|
-
SAMPLE_RATE = 44100,
|
21
|
-
INPUT_SIZE = 16384
|
22
|
-
};
|
23
|
-
|
24
|
-
public:
|
25
|
-
MPEGFile(Gosu::Reader reader)
|
26
|
-
{
|
27
|
-
contents_.resize(reader.resource().size() - reader.position());
|
28
|
-
reader.read(contents_.data(), contents_.size());
|
29
|
-
|
30
|
-
static int init_error = mpg123_init();
|
31
|
-
if (init_error != MPG123_OK) {
|
32
|
-
throw std::runtime_error("Cannot initialize mpg123: " +
|
33
|
-
std::string(mpg123_plain_strerror(init_error)));
|
34
|
-
}
|
35
|
-
|
36
|
-
int new_error;
|
37
|
-
handle_ = mpg123_new(nullptr, &new_error);
|
38
|
-
if (handle_ == nullptr) {
|
39
|
-
throw std::runtime_error("Cannot initialize mpg123 decoder: " +
|
40
|
-
std::string(mpg123_plain_strerror(new_error)));
|
41
|
-
}
|
42
|
-
|
43
|
-
mpg123_param(handle_, MPG123_FORCE_RATE, SAMPLE_RATE, 0);
|
44
|
-
mpg123_param(handle_, MPG123_FLAGS, MPG123_FORCE_STEREO, 0);
|
45
|
-
|
46
|
-
mpg123_open_feed(handle_);
|
47
|
-
}
|
48
|
-
|
49
|
-
~MPEGFile() override
|
50
|
-
{
|
51
|
-
mpg123_delete(handle_);
|
52
|
-
}
|
53
|
-
|
54
|
-
ALenum format() const override
|
55
|
-
{
|
56
|
-
return AL_FORMAT_STEREO16;
|
57
|
-
}
|
58
|
-
|
59
|
-
ALuint sample_rate() const override
|
60
|
-
{
|
61
|
-
return SAMPLE_RATE;
|
62
|
-
}
|
63
|
-
|
64
|
-
std::size_t read_data(void* dest, std::size_t length) override
|
65
|
-
{
|
66
|
-
std::size_t written = 0;
|
67
|
-
int error = 0;
|
68
|
-
|
69
|
-
error = mpg123_read(handle_, static_cast<unsigned char*>(dest), length, &written);
|
70
|
-
while (written == 0
|
71
|
-
&& (error == MPG123_NEED_MORE || error == MPG123_NEW_FORMAT)
|
72
|
-
&& position_ != contents_.size()) {
|
73
|
-
auto bytes = std::min<std::size_t>(contents_.size() - position_, INPUT_SIZE);
|
74
|
-
// (Not sure what to do about the return value of mpg123_feed here.)
|
75
|
-
mpg123_feed(handle_, static_cast<unsigned char*>(contents_.data()) + position_,
|
76
|
-
bytes);
|
77
|
-
position_ += bytes;
|
78
|
-
error = mpg123_read(handle_, static_cast<unsigned char*>(dest), length, &written);
|
79
|
-
}
|
80
|
-
|
81
|
-
return written;
|
82
|
-
}
|
83
|
-
|
84
|
-
void rewind() override
|
85
|
-
{
|
86
|
-
mpg123_feedseek(handle_, 0, SEEK_SET, &position_);
|
87
|
-
assert (position_ >= 0 && position_ <= contents_.size());
|
88
|
-
}
|
89
|
-
};
|
90
|
-
}
|
data/src/OggFile.hpp
DELETED
@@ -1,92 +0,0 @@
|
|
1
|
-
#pragma once
|
2
|
-
|
3
|
-
#include "AudioFile.hpp"
|
4
|
-
#include <Gosu/IO.hpp>
|
5
|
-
#include <stdexcept>
|
6
|
-
#include <string>
|
7
|
-
|
8
|
-
// Disable comma warnings in stb headers.
|
9
|
-
#ifdef __GNUC__
|
10
|
-
#pragma GCC diagnostic push
|
11
|
-
#pragma GCC diagnostic ignored "-Wcomma"
|
12
|
-
#endif
|
13
|
-
|
14
|
-
#define STB_VORBIS_HEADER_ONLY
|
15
|
-
#include "stb_vorbis.c"
|
16
|
-
|
17
|
-
#ifdef __GNUC__
|
18
|
-
#pragma GCC diagnostic pop
|
19
|
-
#endif
|
20
|
-
|
21
|
-
namespace Gosu
|
22
|
-
{
|
23
|
-
class OggFile : public AudioFile
|
24
|
-
{
|
25
|
-
Gosu::Buffer contents_;
|
26
|
-
int channels_;
|
27
|
-
ALenum sample_rate_;
|
28
|
-
stb_vorbis* stream_;
|
29
|
-
|
30
|
-
public:
|
31
|
-
OggFile(Gosu::Reader reader)
|
32
|
-
{
|
33
|
-
contents_.resize(reader.resource().size() - reader.position());
|
34
|
-
reader.read(contents_.data(), contents_.size());
|
35
|
-
|
36
|
-
int error = 0;
|
37
|
-
|
38
|
-
auto data = static_cast<const unsigned char*>(contents_.data());
|
39
|
-
auto size = static_cast<int>(contents_.size());
|
40
|
-
stream_ = stb_vorbis_open_memory(data, size, &error, 0);
|
41
|
-
|
42
|
-
if (stream_ == nullptr) {
|
43
|
-
throw std::runtime_error("Cannot open Ogg Vorbis file, error code: " +
|
44
|
-
std::to_string(error));
|
45
|
-
}
|
46
|
-
|
47
|
-
stb_vorbis_info info = stb_vorbis_get_info(stream_);
|
48
|
-
channels_ = info.channels;
|
49
|
-
sample_rate_ = info.sample_rate;
|
50
|
-
}
|
51
|
-
|
52
|
-
~OggFile() override
|
53
|
-
{
|
54
|
-
stb_vorbis_close(stream_);
|
55
|
-
stream_ = nullptr;
|
56
|
-
}
|
57
|
-
|
58
|
-
ALenum format() const override
|
59
|
-
{
|
60
|
-
return (channels_ == 1 ? AL_FORMAT_MONO16 : AL_FORMAT_STEREO16);
|
61
|
-
}
|
62
|
-
|
63
|
-
ALuint sample_rate() const override
|
64
|
-
{
|
65
|
-
return sample_rate_;
|
66
|
-
}
|
67
|
-
|
68
|
-
std::size_t read_data(void* dest, std::size_t length) override
|
69
|
-
{
|
70
|
-
int samples = 0;
|
71
|
-
int max_samples = static_cast<int>(length / sizeof(short));
|
72
|
-
|
73
|
-
while (samples < max_samples) {
|
74
|
-
int samples_per_channel =
|
75
|
-
stb_vorbis_get_samples_short_interleaved(stream_, channels_,
|
76
|
-
static_cast<short*>(dest) + samples,
|
77
|
-
max_samples - samples);
|
78
|
-
|
79
|
-
if (samples_per_channel == 0) break;
|
80
|
-
|
81
|
-
samples += samples_per_channel * channels_;
|
82
|
-
}
|
83
|
-
|
84
|
-
return samples * sizeof(short);
|
85
|
-
}
|
86
|
-
|
87
|
-
void rewind() override
|
88
|
-
{
|
89
|
-
stb_vorbis_seek_start(stream_);
|
90
|
-
}
|
91
|
-
};
|
92
|
-
}
|