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.
- 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 +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 +14 -12
- 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 +3 -1
- data/src/Graphics.cpp +7 -4
- data/src/Image.cpp +13 -16
- data/src/Input.cpp +412 -164
- data/src/LargeImageData.cpp +1 -1
- data/src/MarkupParser.cpp +2 -1
- data/src/Resolution.cpp +8 -8
- data/src/RubyGosu.cxx +1017 -196
- 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/TrueTypeFontWin.cpp +3 -3
- data/src/Utility.cpp +11 -7
- data/src/Window.cpp +90 -62
- data/src/WindowUIKit.cpp +21 -9
- metadata +194 -65
- data/Gosu/AutoLink.hpp +0 -14
- data/Gosu/Bitmap.hpp +0 -113
- data/Gosu/Channel.h +0 -25
- data/Gosu/Color.h +0 -38
- data/Gosu/Font.h +0 -36
- data/Gosu/Gosu.h +0 -79
- data/Gosu/Image.h +0 -54
- data/Gosu/Sample.h +0 -19
- data/Gosu/Song.h +0 -24
- data/Gosu/TextInput.h +0 -30
- data/Gosu/Window.h +0 -61
- data/lib/gosu/zen.rb +0 -89
- data/src/AudioToolboxFile.hpp +0 -210
- data/src/ChannelWrapper.cpp +0 -50
- data/src/ColorWrapper.cpp +0 -126
- data/src/Constants.cpp +0 -287
- data/src/FontWrapper.cpp +0 -74
- data/src/GosuWrapper.cpp +0 -232
- data/src/ImageWrapper.cpp +0 -168
- data/src/MPEGFile.hpp +0 -90
- data/src/OggFile.hpp +0 -92
- data/src/SampleWrapper.cpp +0 -30
- data/src/SndFile.hpp +0 -174
- data/src/SongWrapper.cpp +0 -52
- data/src/TextInputWrapper.cpp +0 -101
- data/src/WinMain.cpp +0 -64
- data/src/WindowWrapper.cpp +0 -289
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
|
-
}
|
data/src/SampleWrapper.cpp
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
#include <Gosu/Audio.hpp>
|
2
|
-
#include <Gosu/Sample.h>
|
3
|
-
|
4
|
-
extern "C" {
|
5
|
-
|
6
|
-
Gosu_Sample *Gosu_Sample_create(const char *filename)
|
7
|
-
{
|
8
|
-
return reinterpret_cast<Gosu_Sample *>( new Gosu::Sample(filename) );
|
9
|
-
}
|
10
|
-
|
11
|
-
void Gosu_Sample_destroy(Gosu_Sample *sample)
|
12
|
-
{
|
13
|
-
delete( reinterpret_cast<Gosu::Sample *>( sample ) );
|
14
|
-
}
|
15
|
-
|
16
|
-
Gosu_Channel *Gosu_Sample_play(Gosu_Sample *sample, double volume, double speed, bool looping)
|
17
|
-
{
|
18
|
-
Gosu::Channel channel = reinterpret_cast<Gosu::Sample *>( sample )->play(volume, speed, looping);
|
19
|
-
|
20
|
-
return reinterpret_cast<Gosu_Channel *>( new Gosu::Channel(channel) );
|
21
|
-
}
|
22
|
-
|
23
|
-
Gosu_Channel *Gosu_Sample_play_pan(Gosu_Sample *sample, double pan, double volume, double speed, bool looping)
|
24
|
-
{
|
25
|
-
Gosu::Channel channel = reinterpret_cast<Gosu::Sample *>( sample )->play_pan(pan, volume, speed, looping);
|
26
|
-
|
27
|
-
return reinterpret_cast<Gosu_Channel *>( new Gosu::Channel(channel) );
|
28
|
-
}
|
29
|
-
|
30
|
-
}
|
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
|
-
}
|
data/src/SongWrapper.cpp
DELETED
@@ -1,52 +0,0 @@
|
|
1
|
-
#include <Gosu/Audio.hpp>
|
2
|
-
#include <Gosu/Song.h>
|
3
|
-
|
4
|
-
extern "C" {
|
5
|
-
Gosu_Song* Gosu_Song_create(const char* filename)
|
6
|
-
{
|
7
|
-
return reinterpret_cast<Gosu_Song*>( new Gosu::Song(filename) );
|
8
|
-
}
|
9
|
-
|
10
|
-
void Gosu_Song_destroy(Gosu_Song* song)
|
11
|
-
{
|
12
|
-
delete( reinterpret_cast<Gosu::Song*>( song ));
|
13
|
-
}
|
14
|
-
|
15
|
-
void Gosu_Song_play(Gosu_Song* song, bool looping)
|
16
|
-
{
|
17
|
-
reinterpret_cast<Gosu::Song*>( song )->play(looping);
|
18
|
-
}
|
19
|
-
|
20
|
-
bool Gosu_Song_playing(Gosu_Song* song)
|
21
|
-
{
|
22
|
-
return reinterpret_cast<Gosu::Song*>( song )->playing();
|
23
|
-
}
|
24
|
-
|
25
|
-
void Gosu_Song_pause(Gosu_Song* song)
|
26
|
-
{
|
27
|
-
reinterpret_cast<Gosu::Song*>( song )->pause();
|
28
|
-
}
|
29
|
-
|
30
|
-
bool Gosu_Song_paused(Gosu_Song* song)
|
31
|
-
{
|
32
|
-
return reinterpret_cast<Gosu::Song*>( song )->paused();
|
33
|
-
}
|
34
|
-
|
35
|
-
void Gosu_Song_stop(Gosu_Song* song)
|
36
|
-
{
|
37
|
-
reinterpret_cast<Gosu::Song*>( song )->stop();
|
38
|
-
}
|
39
|
-
|
40
|
-
double Gosu_Song_volume(Gosu_Song* song){
|
41
|
-
return reinterpret_cast<Gosu::Song*>( song )->volume();
|
42
|
-
}
|
43
|
-
|
44
|
-
void Gosu_Song_set_volume(Gosu_Song* song, double volume){
|
45
|
-
return reinterpret_cast<Gosu::Song*>( song )->set_volume(volume);
|
46
|
-
}
|
47
|
-
|
48
|
-
Gosu_Song* Gosu_Song_current_song()
|
49
|
-
{
|
50
|
-
return reinterpret_cast<Gosu_Song*>(Gosu::Song::current_song());
|
51
|
-
}
|
52
|
-
}
|
data/src/TextInputWrapper.cpp
DELETED
@@ -1,101 +0,0 @@
|
|
1
|
-
#include <Gosu/Gosu.hpp>
|
2
|
-
|
3
|
-
namespace Gosu
|
4
|
-
{
|
5
|
-
class TextInputForWrapper : public Gosu::TextInput
|
6
|
-
{
|
7
|
-
public:
|
8
|
-
TextInputForWrapper();
|
9
|
-
std::string filter(std::string text) const override;
|
10
|
-
std::function<void (const char *text)> filter_callback;
|
11
|
-
std::string filter_result = "";
|
12
|
-
};
|
13
|
-
} // namespace Gosu
|
14
|
-
|
15
|
-
Gosu::TextInputForWrapper::TextInputForWrapper() : Gosu::TextInput()
|
16
|
-
{
|
17
|
-
}
|
18
|
-
|
19
|
-
std::string Gosu::TextInputForWrapper::filter(std::string text) const
|
20
|
-
{
|
21
|
-
if (filter_callback != nullptr) {
|
22
|
-
filter_callback(text.c_str());
|
23
|
-
return filter_result;
|
24
|
-
}
|
25
|
-
else {
|
26
|
-
return text;
|
27
|
-
}
|
28
|
-
}
|
29
|
-
|
30
|
-
extern "C" {
|
31
|
-
#include <Gosu/TextInput.h>
|
32
|
-
|
33
|
-
Gosu_TextInput *Gosu_TextInput_create()
|
34
|
-
{
|
35
|
-
return reinterpret_cast<Gosu_TextInput *>(new Gosu::TextInputForWrapper());
|
36
|
-
}
|
37
|
-
|
38
|
-
const char *Gosu_TextInput_text(Gosu_TextInput *text_input)
|
39
|
-
{
|
40
|
-
thread_local std::string string;
|
41
|
-
string = reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->text();
|
42
|
-
|
43
|
-
return string.c_str();
|
44
|
-
}
|
45
|
-
|
46
|
-
void Gosu_TextInput_set_text(Gosu_TextInput *text_input, const char *text)
|
47
|
-
{
|
48
|
-
reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->set_text(text);
|
49
|
-
}
|
50
|
-
|
51
|
-
unsigned Gosu_TextInput_caret_pos(Gosu_TextInput *text_input)
|
52
|
-
{
|
53
|
-
return reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->caret_pos();
|
54
|
-
}
|
55
|
-
|
56
|
-
void Gosu_TextInput_set_caret_pos(Gosu_TextInput *text_input, unsigned pos)
|
57
|
-
{
|
58
|
-
return reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->set_caret_pos(pos);
|
59
|
-
}
|
60
|
-
|
61
|
-
unsigned Gosu_TextInput_selection_start(Gosu_TextInput *text_input)
|
62
|
-
{
|
63
|
-
return reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->selection_start();
|
64
|
-
}
|
65
|
-
|
66
|
-
void Gosu_TextInput_set_selection_start(Gosu_TextInput *text_input, unsigned pos)
|
67
|
-
{
|
68
|
-
return reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->set_selection_start(pos);
|
69
|
-
}
|
70
|
-
|
71
|
-
void Gosu_TextInput_set_filter(Gosu_TextInput *text_input, void function(void *data, const char *text), void *data)
|
72
|
-
{
|
73
|
-
reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->filter_callback = [=](const char *text) { function(data, text); };
|
74
|
-
}
|
75
|
-
|
76
|
-
void Gosu_TextInput_set_filter_result(Gosu_TextInput *text_input, const char *result)
|
77
|
-
{
|
78
|
-
reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->filter_result = result;
|
79
|
-
}
|
80
|
-
|
81
|
-
void Gosu_TextInput_insert_text(Gosu_TextInput *text_input, const char *text)
|
82
|
-
{
|
83
|
-
reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->insert_text(text);
|
84
|
-
}
|
85
|
-
|
86
|
-
void Gosu_TextInput_delete_backward(Gosu_TextInput *text_input)
|
87
|
-
{
|
88
|
-
reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->delete_backward();
|
89
|
-
}
|
90
|
-
|
91
|
-
void Gosu_TextInput_delete_forward(Gosu_TextInput *text_input)
|
92
|
-
{
|
93
|
-
reinterpret_cast<Gosu::TextInputForWrapper *>(text_input)->delete_forward();
|
94
|
-
}
|
95
|
-
|
96
|
-
void Gosu_TextInput_destroy(Gosu_TextInput *text_input)
|
97
|
-
{
|
98
|
-
delete (reinterpret_cast<Gosu::TextInputForWrapper *>(text_input));
|
99
|
-
}
|
100
|
-
|
101
|
-
}
|