gosu 0.15.2 → 1.0.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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 +56 -22
- data/{Gosu → include/Gosu}/Audio.hpp +6 -8
- data/{Gosu → include/Gosu}/AutoLink.hpp +0 -0
- data/include/Gosu/Bitmap.hpp +100 -0
- data/{Gosu → include/Gosu}/Buttons.hpp +94 -35
- data/{Gosu → include/Gosu}/Channel.h +0 -0
- data/{Gosu → include/Gosu}/Color.h +0 -0
- data/{Gosu → include/Gosu}/Color.hpp +0 -0
- data/{Gosu → include/Gosu}/Directories.hpp +0 -0
- data/{Gosu → include/Gosu}/Font.h +0 -0
- data/{Gosu → include/Gosu}/Font.hpp +0 -0
- data/{Gosu → include/Gosu}/Fwd.hpp +0 -0
- data/{Gosu → include/Gosu}/Gosu.h +3 -0
- 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.h +0 -0
- data/{Gosu → include/Gosu}/Image.hpp +7 -6
- data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
- data/{Gosu → include/Gosu}/Input.hpp +30 -15
- 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}/Sample.h +0 -0
- data/{Gosu → include/Gosu}/Song.h +0 -0
- data/{Gosu → include/Gosu}/Text.hpp +0 -0
- data/{Gosu → include/Gosu}/TextInput.h +0 -0
- data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
- data/{Gosu → include/Gosu}/Timing.hpp +0 -0
- data/{Gosu → include/Gosu}/Utility.hpp +1 -1
- data/{Gosu → include/Gosu}/Version.hpp +0 -0
- data/{Gosu → include/Gosu}/Window.h +2 -0
- data/{Gosu → include/Gosu}/Window.hpp +21 -13
- data/lib/OpenAL32.dll +0 -0
- data/lib/SDL2.dll +0 -0
- data/lib/gosu.rb +0 -3
- data/lib/gosu/patches.rb +0 -9
- data/lib/gosu/swig_patches.rb +3 -2
- data/lib/libmpg123.dll +0 -0
- data/lib/libsndfile.dll +0 -0
- data/lib64/OpenAL32.dll +0 -0
- data/lib64/SDL2.dll +0 -0
- data/lib64/libmpg123.dll +0 -0
- data/lib64/libsndfile.dll +0 -0
- data/rdoc/gosu.rb +95 -20
- data/src/Audio.cpp +50 -224
- data/src/AudioFile.hpp +17 -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/Constants.cpp +80 -33
- data/src/Font.cpp +3 -1
- data/src/GosuWrapper.cpp +19 -0
- data/src/Graphics.cpp +7 -4
- data/src/Image.cpp +13 -16
- data/src/Input.cpp +408 -159
- data/src/LargeImageData.cpp +1 -1
- data/src/MarkupParser.cpp +2 -1
- data/src/RubyGosu.cxx +349 -83
- data/src/RubyGosu.h +4 -2
- data/src/TexChunk.cpp +1 -1
- data/src/TextBuilder.cpp +3 -1
- data/src/Texture.cpp +1 -1
- data/src/TrueTypeFont.cpp +1 -1
- data/src/Utility.cpp +11 -7
- data/src/Window.cpp +30 -39
- data/src/WindowWrapper.cpp +28 -0
- metadata +207 -52
- data/Gosu/Bitmap.hpp +0 -113
- data/src/AudioToolboxFile.hpp +0 -210
- data/src/OggFile.hpp +0 -92
- data/src/SndFile.hpp +0 -174
- data/src/WinMain.cpp +0 -64
data/Gosu/Bitmap.hpp
DELETED
@@ -1,113 +0,0 @@
|
|
1
|
-
//! \file Bitmap.hpp
|
2
|
-
//! Interface of the Bitmap class.
|
3
|
-
|
4
|
-
#pragma once
|
5
|
-
|
6
|
-
#include <Gosu/Fwd.hpp>
|
7
|
-
#include <Gosu/Color.hpp>
|
8
|
-
#include <Gosu/GraphicsBase.hpp>
|
9
|
-
#include <Gosu/Platform.hpp>
|
10
|
-
#include <string>
|
11
|
-
#include <vector>
|
12
|
-
|
13
|
-
namespace Gosu
|
14
|
-
{
|
15
|
-
//! Rectangular area of pixels, each represented by a Color value. Provides
|
16
|
-
//! minimal drawing functionality and serves as a temporary holder for
|
17
|
-
//! graphical resources which are usually turned into Images later.
|
18
|
-
//! Has (expensive) value semantics.
|
19
|
-
class Bitmap
|
20
|
-
{
|
21
|
-
unsigned w, h;
|
22
|
-
std::vector<Color> pixels;
|
23
|
-
|
24
|
-
public:
|
25
|
-
Bitmap()
|
26
|
-
: w(0), h(0)
|
27
|
-
{
|
28
|
-
}
|
29
|
-
|
30
|
-
Bitmap(unsigned w, unsigned h, Color c = Color::NONE)
|
31
|
-
: w(w), h(h), pixels(w * h, c)
|
32
|
-
{
|
33
|
-
}
|
34
|
-
|
35
|
-
unsigned width() const
|
36
|
-
{
|
37
|
-
return w;
|
38
|
-
}
|
39
|
-
|
40
|
-
unsigned height() const
|
41
|
-
{
|
42
|
-
return h;
|
43
|
-
}
|
44
|
-
|
45
|
-
void swap(Bitmap& other);
|
46
|
-
|
47
|
-
void resize(unsigned width, unsigned height, Color c = Color::NONE);
|
48
|
-
|
49
|
-
//! Returns the color at the specified position. x and y must be on the
|
50
|
-
//! bitmap.
|
51
|
-
Color get_pixel(unsigned x, unsigned y) const
|
52
|
-
{
|
53
|
-
return pixels[y * w + x];
|
54
|
-
}
|
55
|
-
|
56
|
-
//! Sets the pixel at the specified position to a color. x and y must
|
57
|
-
//! be on the bitmap.
|
58
|
-
void set_pixel(unsigned x, unsigned y, Color c)
|
59
|
-
{
|
60
|
-
pixels[y * w + x] = c;
|
61
|
-
}
|
62
|
-
|
63
|
-
//! This updates a pixel using the "over" alpha compositing operator, see:
|
64
|
-
//! https://en.wikipedia.org/wiki/Alpha_compositing
|
65
|
-
void blend_pixel(unsigned x, unsigned y, Color c);
|
66
|
-
|
67
|
-
//! Inserts a bitmap at the given position. Parts of the inserted
|
68
|
-
//! bitmap that would be outside of the target bitmap will be
|
69
|
-
//! clipped away.
|
70
|
-
void insert(const Bitmap& source, int x, int y);
|
71
|
-
|
72
|
-
//! Inserts a portion of a bitmap at the given position. Parts of the
|
73
|
-
//! inserted bitmap that would be outside of the target bitmap will be
|
74
|
-
//! clipped away.
|
75
|
-
void insert(const Bitmap& source, int x, int y, unsigned src_x, unsigned src_y,
|
76
|
-
unsigned src_width, unsigned src_height);
|
77
|
-
|
78
|
-
//! Direct access to the array of color values. May be useful for optimized
|
79
|
-
//! OpenGL operations.
|
80
|
-
const Color* data() const
|
81
|
-
{
|
82
|
-
return &pixels[0];
|
83
|
-
}
|
84
|
-
|
85
|
-
Color* data()
|
86
|
-
{
|
87
|
-
return &pixels[0];
|
88
|
-
}
|
89
|
-
};
|
90
|
-
|
91
|
-
//! Loads any supported image into a Bitmap.
|
92
|
-
void load_image_file(Bitmap& bitmap, const std::string& filename);
|
93
|
-
//! Loads any supported image into a Bitmap.
|
94
|
-
void load_image_file(Bitmap& bitmap, Reader input);
|
95
|
-
|
96
|
-
//! Saves a Bitmap to a file.
|
97
|
-
void save_image_file(const Bitmap& bitmap, const std::string& filename);
|
98
|
-
//! Saves a Bitmap to an arbitrary resource.
|
99
|
-
void save_image_file(const Bitmap& bitmap, Writer writer,
|
100
|
-
const std::string& format_hint = "png");
|
101
|
-
|
102
|
-
//! Set the alpha value of all pixels which are equal to the color key
|
103
|
-
//! to zero. Color values are adjusted so that no borders show up when
|
104
|
-
//! the image is stretched or rotated.
|
105
|
-
void apply_color_key(Bitmap& bitmap, Color key);
|
106
|
-
|
107
|
-
//! The reverse of apply_color_key. Resets all fully transparent pixels by
|
108
|
-
//! a background color, makes all other pixels fully opaque.
|
109
|
-
void unapply_color_key(Bitmap& bitmap, Color background);
|
110
|
-
|
111
|
-
void apply_border_flags(Bitmap& dest, const Bitmap& source, unsigned src_x, unsigned src_y,
|
112
|
-
unsigned src_width, unsigned src_height, unsigned border_flags);
|
113
|
-
}
|
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/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
|
-
}
|
data/src/SndFile.hpp
DELETED
@@ -1,174 +0,0 @@
|
|
1
|
-
#pragma once
|
2
|
-
|
3
|
-
#include <Gosu/Audio.hpp>
|
4
|
-
#include <Gosu/Platform.hpp>
|
5
|
-
#include <Gosu/Utility.hpp>
|
6
|
-
#include <sndfile.h>
|
7
|
-
|
8
|
-
#ifdef GOSU_IS_WIN
|
9
|
-
#define NOMINMAX
|
10
|
-
#include <windows.h>
|
11
|
-
#endif
|
12
|
-
|
13
|
-
namespace Gosu
|
14
|
-
{
|
15
|
-
class SndFile : public AudioFile
|
16
|
-
{
|
17
|
-
SNDFILE* file;
|
18
|
-
SF_INFO info;
|
19
|
-
Reader reader;
|
20
|
-
Buffer buffer;
|
21
|
-
|
22
|
-
// /DELAYLOAD doesn't work with libsndfile.dll (is this still true?); manually lazy-load it.
|
23
|
-
#ifdef GOSU_IS_WIN
|
24
|
-
static HMODULE dll()
|
25
|
-
{
|
26
|
-
static HMODULE dll = LoadLibrary(L"libsndfile.dll");
|
27
|
-
if (!dll) throw std::runtime_error("Cannot find libsndfile.dll");
|
28
|
-
return dll;
|
29
|
-
}
|
30
|
-
|
31
|
-
#define CREATE_STUB(NAME, RETURN, PARAMS, NAMES) \
|
32
|
-
static RETURN NAME PARAMS \
|
33
|
-
{ \
|
34
|
-
typedef RETURN (__cdecl *NAME##_ptr) PARAMS; \
|
35
|
-
static NAME##_ptr f = (NAME##_ptr)GetProcAddress(dll(), #NAME); \
|
36
|
-
if (!f) { \
|
37
|
-
throw std::runtime_error("Cannot find " ## #NAME); \
|
38
|
-
} \
|
39
|
-
return f NAMES; \
|
40
|
-
}
|
41
|
-
CREATE_STUB(sf_open_virtual, SNDFILE*,
|
42
|
-
(SF_VIRTUAL_IO* sfvirtual, int mode, SF_INFO* sfinfo, void* user_data),
|
43
|
-
(sfvirtual, mode, sfinfo, user_data))
|
44
|
-
CREATE_STUB(sf_close, int,
|
45
|
-
(SNDFILE* sndfile),
|
46
|
-
(sndfile))
|
47
|
-
CREATE_STUB(sf_readf_short, sf_count_t,
|
48
|
-
(SNDFILE* sndfile, short* ptr, sf_count_t items),
|
49
|
-
(sndfile, ptr, items))
|
50
|
-
CREATE_STUB(sf_seek, sf_count_t,
|
51
|
-
(SNDFILE* sndfile, sf_count_t frames, int whence),
|
52
|
-
(sndfile, frames, whence))
|
53
|
-
CREATE_STUB(sf_strerror, const char*,
|
54
|
-
(SNDFILE* sndfile),
|
55
|
-
(sndfile))
|
56
|
-
#undef CREATE_STUB
|
57
|
-
#endif
|
58
|
-
|
59
|
-
static sf_count_t get_filelen(SndFile* self)
|
60
|
-
{
|
61
|
-
return self->buffer.size();
|
62
|
-
}
|
63
|
-
|
64
|
-
static sf_count_t seek(sf_count_t offset, int whence, SndFile* self)
|
65
|
-
{
|
66
|
-
switch (whence) {
|
67
|
-
case SEEK_SET:
|
68
|
-
self->reader.set_position(offset);
|
69
|
-
break;
|
70
|
-
case SEEK_CUR:
|
71
|
-
self->reader.seek(offset);
|
72
|
-
break;
|
73
|
-
case SEEK_END:
|
74
|
-
self->reader.set_position(self->buffer.size() - offset);
|
75
|
-
break;
|
76
|
-
}
|
77
|
-
|
78
|
-
if (self->reader.position() > self->buffer.size()) {
|
79
|
-
self->reader.set_position(self->buffer.size());
|
80
|
-
}
|
81
|
-
|
82
|
-
return 0;
|
83
|
-
}
|
84
|
-
|
85
|
-
static sf_count_t read(void* ptr, sf_count_t count, SndFile* self)
|
86
|
-
{
|
87
|
-
sf_count_t avail = self->buffer.size() - self->reader.position();
|
88
|
-
count = std::min(avail, count);
|
89
|
-
self->reader.read(ptr, count);
|
90
|
-
return count;
|
91
|
-
}
|
92
|
-
|
93
|
-
static sf_count_t tell(SndFile* self)
|
94
|
-
{
|
95
|
-
return self->reader.position();
|
96
|
-
}
|
97
|
-
|
98
|
-
static SF_VIRTUAL_IO* io_interface()
|
99
|
-
{
|
100
|
-
static SF_VIRTUAL_IO io;
|
101
|
-
io.get_filelen = (sf_vio_get_filelen)&get_filelen;
|
102
|
-
io.seek = (sf_vio_seek)&seek;
|
103
|
-
io.read = (sf_vio_read)&read;
|
104
|
-
io.tell = (sf_vio_tell)&tell;
|
105
|
-
io.write = nullptr;
|
106
|
-
return &io;
|
107
|
-
}
|
108
|
-
|
109
|
-
public:
|
110
|
-
SndFile(Reader reader)
|
111
|
-
: file(nullptr), reader(buffer.front_reader())
|
112
|
-
{
|
113
|
-
info.format = 0;
|
114
|
-
buffer.resize(reader.resource().size() - reader.position());
|
115
|
-
reader.read(buffer.data(), buffer.size());
|
116
|
-
file = sf_open_virtual(io_interface(), SFM_READ, &info, this);
|
117
|
-
if (!file) {
|
118
|
-
throw std::runtime_error(sf_strerror(nullptr));
|
119
|
-
}
|
120
|
-
}
|
121
|
-
|
122
|
-
SndFile(const std::string& filename)
|
123
|
-
: file(nullptr), reader(buffer.front_reader())
|
124
|
-
{
|
125
|
-
info.format = 0;
|
126
|
-
// TODO: Not sure if this is still necessary.
|
127
|
-
// Can libsndfile open UTF-8 filenames on Windows?
|
128
|
-
#ifdef GOSU_IS_WIN
|
129
|
-
load_file(buffer, filename);
|
130
|
-
file = sf_open_virtual(io_interface(), SFM_READ, &info, this);
|
131
|
-
#else
|
132
|
-
file = sf_open(filename.c_str(), SFM_READ, &info);
|
133
|
-
#endif
|
134
|
-
if (!file) {
|
135
|
-
throw std::runtime_error(sf_strerror(nullptr));
|
136
|
-
}
|
137
|
-
}
|
138
|
-
|
139
|
-
~SndFile() override
|
140
|
-
{
|
141
|
-
if (file) {
|
142
|
-
sf_close(file);
|
143
|
-
}
|
144
|
-
}
|
145
|
-
|
146
|
-
ALenum format() const override
|
147
|
-
{
|
148
|
-
switch (info.channels) {
|
149
|
-
case 1:
|
150
|
-
return AL_FORMAT_MONO16;
|
151
|
-
case 2:
|
152
|
-
return AL_FORMAT_STEREO16;
|
153
|
-
default:
|
154
|
-
throw std::runtime_error("Too many channels in audio file");
|
155
|
-
};
|
156
|
-
}
|
157
|
-
|
158
|
-
ALuint sample_rate() const override
|
159
|
-
{
|
160
|
-
return info.samplerate;
|
161
|
-
}
|
162
|
-
|
163
|
-
std::size_t read_data(void* dest, std::size_t length) override
|
164
|
-
{
|
165
|
-
int frame_size = sizeof(short) * info.channels;
|
166
|
-
return sf_readf_short(file, (short*)dest, length / frame_size) * frame_size;
|
167
|
-
}
|
168
|
-
|
169
|
-
void rewind() override
|
170
|
-
{
|
171
|
-
sf_seek(file, 0, SEEK_SET);
|
172
|
-
}
|
173
|
-
};
|
174
|
-
}
|