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
@@ -0,0 +1,85 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
|
4
|
+
|
5
|
+
This software is provided 'as-is', without any express or implied
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
7
|
+
arising from the use of this software.
|
8
|
+
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
11
|
+
freely, subject to the following restrictions:
|
12
|
+
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
14
|
+
claim that you wrote the original software. If you use this software
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
16
|
+
appreciated but is not required.
|
17
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
18
|
+
misrepresented as being the original software.
|
19
|
+
3. This notice may not be removed or altered from any source distribution.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef SDL_config_minimal_h_
|
23
|
+
#define SDL_config_minimal_h_
|
24
|
+
#define SDL_config_h_
|
25
|
+
|
26
|
+
#include "SDL_platform.h"
|
27
|
+
|
28
|
+
/**
|
29
|
+
* \file SDL_config_minimal.h
|
30
|
+
*
|
31
|
+
* This is the minimal configuration that can be used to build SDL.
|
32
|
+
*/
|
33
|
+
|
34
|
+
#define HAVE_STDARG_H 1
|
35
|
+
#define HAVE_STDDEF_H 1
|
36
|
+
|
37
|
+
/* Most everything except Visual Studio 2008 and earlier has stdint.h now */
|
38
|
+
#if defined(_MSC_VER) && (_MSC_VER < 1600)
|
39
|
+
/* Here are some reasonable defaults */
|
40
|
+
typedef unsigned int size_t;
|
41
|
+
typedef signed char int8_t;
|
42
|
+
typedef unsigned char uint8_t;
|
43
|
+
typedef signed short int16_t;
|
44
|
+
typedef unsigned short uint16_t;
|
45
|
+
typedef signed int int32_t;
|
46
|
+
typedef unsigned int uint32_t;
|
47
|
+
typedef signed long long int64_t;
|
48
|
+
typedef unsigned long long uint64_t;
|
49
|
+
typedef unsigned long uintptr_t;
|
50
|
+
#else
|
51
|
+
#define HAVE_STDINT_H 1
|
52
|
+
#endif /* Visual Studio 2008 */
|
53
|
+
|
54
|
+
#ifdef __GNUC__
|
55
|
+
#define HAVE_GCC_SYNC_LOCK_TEST_AND_SET 1
|
56
|
+
#endif
|
57
|
+
|
58
|
+
/* Enable the dummy audio driver (src/audio/dummy/\*.c) */
|
59
|
+
#define SDL_AUDIO_DRIVER_DUMMY 1
|
60
|
+
|
61
|
+
/* Enable the stub joystick driver (src/joystick/dummy/\*.c) */
|
62
|
+
#define SDL_JOYSTICK_DISABLED 1
|
63
|
+
|
64
|
+
/* Enable the stub haptic driver (src/haptic/dummy/\*.c) */
|
65
|
+
#define SDL_HAPTIC_DISABLED 1
|
66
|
+
|
67
|
+
/* Enable the stub sensor driver (src/sensor/dummy/\*.c) */
|
68
|
+
#define SDL_SENSOR_DISABLED 1
|
69
|
+
|
70
|
+
/* Enable the stub shared object loader (src/loadso/dummy/\*.c) */
|
71
|
+
#define SDL_LOADSO_DISABLED 1
|
72
|
+
|
73
|
+
/* Enable the stub thread support (src/thread/generic/\*.c) */
|
74
|
+
#define SDL_THREADS_DISABLED 1
|
75
|
+
|
76
|
+
/* Enable the stub timer support (src/timer/dummy/\*.c) */
|
77
|
+
#define SDL_TIMERS_DISABLED 1
|
78
|
+
|
79
|
+
/* Enable the dummy video driver (src/video/dummy/\*.c) */
|
80
|
+
#define SDL_VIDEO_DRIVER_DUMMY 1
|
81
|
+
|
82
|
+
/* Enable the dummy filesystem driver (src/filesystem/dummy/\*.c) */
|
83
|
+
#define SDL_FILESYSTEM_DUMMY 1
|
84
|
+
|
85
|
+
#endif /* SDL_config_minimal_h_ */
|
@@ -0,0 +1,188 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
|
4
|
+
|
5
|
+
This software is provided 'as-is', without any express or implied
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
7
|
+
arising from the use of this software.
|
8
|
+
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
11
|
+
freely, subject to the following restrictions:
|
12
|
+
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
14
|
+
claim that you wrote the original software. If you use this software
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
16
|
+
appreciated but is not required.
|
17
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
18
|
+
misrepresented as being the original software.
|
19
|
+
3. This notice may not be removed or altered from any source distribution.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef SDL_config_os2_h_
|
23
|
+
#define SDL_config_os2_h_
|
24
|
+
#define SDL_config_h_
|
25
|
+
|
26
|
+
#include "SDL_platform.h"
|
27
|
+
|
28
|
+
#define SDL_AUDIO_DRIVER_DUMMY 1
|
29
|
+
#define SDL_AUDIO_DRIVER_DISK 1
|
30
|
+
#define SDL_AUDIO_DRIVER_OS2 1
|
31
|
+
|
32
|
+
#define SDL_POWER_DISABLED 1
|
33
|
+
#define SDL_JOYSTICK_DISABLED 1
|
34
|
+
#define SDL_HAPTIC_DISABLED 1
|
35
|
+
/*#undef SDL_JOYSTICK_HIDAPI */
|
36
|
+
/*#undef SDL_JOYSTICK_VIRTUAL */
|
37
|
+
|
38
|
+
#define SDL_SENSOR_DUMMY 1
|
39
|
+
#define SDL_VIDEO_DRIVER_DUMMY 1
|
40
|
+
#define SDL_VIDEO_DRIVER_OS2 1
|
41
|
+
|
42
|
+
/* Enable OpenGL support */
|
43
|
+
/* #undef SDL_VIDEO_OPENGL */
|
44
|
+
|
45
|
+
/* Enable Vulkan support */
|
46
|
+
/* #undef SDL_VIDEO_VULKAN */
|
47
|
+
|
48
|
+
#define SDL_THREAD_OS2 1
|
49
|
+
#define SDL_LOADSO_OS2 1
|
50
|
+
#define SDL_TIMER_OS2 1
|
51
|
+
#define SDL_FILESYSTEM_OS2 1
|
52
|
+
|
53
|
+
/* Enable assembly routines */
|
54
|
+
#define SDL_ASSEMBLY_ROUTINES 1
|
55
|
+
|
56
|
+
/* use libsamplerate for audio rate conversion. */
|
57
|
+
/*#define HAVE_LIBSAMPLERATE_H 1 */
|
58
|
+
|
59
|
+
/* Enable dynamic libsamplerate support */
|
60
|
+
#define SDL_LIBSAMPLERATE_DYNAMIC "SAMPRATE.DLL"
|
61
|
+
|
62
|
+
#define HAVE_LIBC 1
|
63
|
+
|
64
|
+
#define HAVE_SYS_TYPES_H 1
|
65
|
+
#define HAVE_STDIO_H 1
|
66
|
+
#define STDC_HEADERS 1
|
67
|
+
#define HAVE_STDLIB_H 1
|
68
|
+
#define HAVE_STDARG_H 1
|
69
|
+
#define HAVE_STDDEF_H 1
|
70
|
+
#define HAVE_MALLOC_H 1
|
71
|
+
#define HAVE_MEMORY_H 1
|
72
|
+
#define HAVE_STRING_H 1
|
73
|
+
#define HAVE_STRINGS_H 1
|
74
|
+
#define HAVE_WCHAR_H 1
|
75
|
+
#define HAVE_INTTYPES_H 1
|
76
|
+
#define HAVE_STDINT_H 1
|
77
|
+
#define HAVE_LIMITS_H 1
|
78
|
+
#define HAVE_CTYPE_H 1
|
79
|
+
#define HAVE_MATH_H 1
|
80
|
+
#define HAVE_FLOAT_H 1
|
81
|
+
#define HAVE_SIGNAL_H 1
|
82
|
+
|
83
|
+
#define HAVE_MALLOC 1
|
84
|
+
#define HAVE_CALLOC 1
|
85
|
+
#define HAVE_REALLOC 1
|
86
|
+
#define HAVE_FREE 1
|
87
|
+
#if defined(__WATCOMC__)
|
88
|
+
#define HAVE__FSEEKI64 1
|
89
|
+
#define HAVE__FTELLI64 1
|
90
|
+
#endif
|
91
|
+
#define HAVE_ALLOCA 1
|
92
|
+
#define HAVE_GETENV 1
|
93
|
+
#define HAVE_SETENV 1
|
94
|
+
#define HAVE_PUTENV 1
|
95
|
+
#define HAVE_QSORT 1
|
96
|
+
#define HAVE_ABS 1
|
97
|
+
#define HAVE_BCOPY 1
|
98
|
+
#define HAVE_MEMSET 1
|
99
|
+
#define HAVE_MEMCPY 1
|
100
|
+
#define HAVE_MEMMOVE 1
|
101
|
+
#define HAVE_MEMCMP 1
|
102
|
+
#define HAVE_WCSLEN 1
|
103
|
+
#define HAVE_WCSLCPY 1
|
104
|
+
#define HAVE_WCSLCAT 1
|
105
|
+
#define HAVE_WCSCMP 1
|
106
|
+
#define HAVE__WCSICMP 1
|
107
|
+
#define HAVE__WCSNICMP 1
|
108
|
+
#define HAVE_STRLEN 1
|
109
|
+
#define HAVE_STRLCPY 1
|
110
|
+
#define HAVE_STRLCAT 1
|
111
|
+
#define HAVE__STRREV 1
|
112
|
+
#define HAVE__STRUPR 1
|
113
|
+
#define HAVE__STRLWR 1
|
114
|
+
#define HAVE_INDEX 1
|
115
|
+
#define HAVE_RINDEX 1
|
116
|
+
#define HAVE_STRCHR 1
|
117
|
+
#define HAVE_STRRCHR 1
|
118
|
+
#define HAVE_STRSTR 1
|
119
|
+
/* #undef HAVE_STRTOK_R */
|
120
|
+
#define HAVE_ITOA 1
|
121
|
+
#define HAVE__LTOA 1
|
122
|
+
#define HAVE__ULTOA 1
|
123
|
+
#define HAVE_STRTOL 1
|
124
|
+
#define HAVE_STRTOUL 1
|
125
|
+
#define HAVE__I64TOA 1
|
126
|
+
#define HAVE__UI64TOA 1
|
127
|
+
#define HAVE_STRTOLL 1
|
128
|
+
#define HAVE_STRTOULL 1
|
129
|
+
#define HAVE_STRTOD 1
|
130
|
+
#define HAVE_ATOI 1
|
131
|
+
#define HAVE_ATOF 1
|
132
|
+
#define HAVE_WCSLEN 1
|
133
|
+
#define HAVE_WCSLCPY 1
|
134
|
+
#define HAVE_WCSLCAT 1
|
135
|
+
/* #define HAVE_WCSDUP 1 */
|
136
|
+
/* #define wcsdup _wcsdup */
|
137
|
+
#define HAVE_WCSSTR 1
|
138
|
+
#define HAVE_WCSCMP 1
|
139
|
+
#define HAVE_WCSNCMP 1
|
140
|
+
#define HAVE_STRCMP 1
|
141
|
+
#define HAVE_STRNCMP 1
|
142
|
+
#define HAVE_STRICMP 1
|
143
|
+
#define HAVE_STRCASECMP 1
|
144
|
+
#define HAVE_STRNCASECMP 1
|
145
|
+
#define HAVE_SSCANF 1
|
146
|
+
#define HAVE_VSSCANF 1
|
147
|
+
#define HAVE_SNPRINTF 1
|
148
|
+
#define HAVE_VSNPRINTF 1
|
149
|
+
#define HAVE_SETJMP 1
|
150
|
+
#define HAVE_ACOS 1
|
151
|
+
/* #undef HAVE_ACOSF */
|
152
|
+
#define HAVE_ASIN 1
|
153
|
+
/* #undef HAVE_ASINF */
|
154
|
+
#define HAVE_ATAN 1
|
155
|
+
#define HAVE_ATAN2 1
|
156
|
+
/* #undef HAVE_ATAN2F */
|
157
|
+
#define HAVE_CEIL 1
|
158
|
+
/* #undef HAVE_CEILF */
|
159
|
+
/* #undef HAVE_COPYSIGN */
|
160
|
+
/* #undef HAVE_COPYSIGNF */
|
161
|
+
#define HAVE_COS 1
|
162
|
+
/* #undef HAVE_COSF */
|
163
|
+
#define HAVE_EXP 1
|
164
|
+
/* #undef HAVE_EXPF */
|
165
|
+
#define HAVE_FABS 1
|
166
|
+
/* #undef HAVE_FABSF */
|
167
|
+
#define HAVE_FLOOR 1
|
168
|
+
/* #undef HAVE_FLOORF */
|
169
|
+
#define HAVE_FMOD 1
|
170
|
+
/* #undef HAVE_FMODF */
|
171
|
+
#define HAVE_LOG 1
|
172
|
+
/* #undef HAVE_LOGF */
|
173
|
+
#define HAVE_LOG10 1
|
174
|
+
/* #undef HAVE_LOG10F */
|
175
|
+
#define HAVE_POW 1
|
176
|
+
/* #undef HAVE_POWF */
|
177
|
+
#define HAVE_SIN 1
|
178
|
+
/* #undef HAVE_SINF */
|
179
|
+
/* #undef HAVE_SCALBN */
|
180
|
+
/* #undef HAVE_SCALBNF */
|
181
|
+
#define HAVE_SQRT 1
|
182
|
+
/* #undef HAVE_SQRTF */
|
183
|
+
#define HAVE_TAN 1
|
184
|
+
/* #undef HAVE_TANF */
|
185
|
+
/* #undef HAVE_TRUNC */
|
186
|
+
/* #undef HAVE_TRUNCF */
|
187
|
+
|
188
|
+
#endif /* SDL_config_os2_h_ */
|
@@ -0,0 +1,135 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
|
4
|
+
|
5
|
+
This software is provided 'as-is', without any express or implied
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
7
|
+
arising from the use of this software.
|
8
|
+
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
11
|
+
freely, subject to the following restrictions:
|
12
|
+
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
14
|
+
claim that you wrote the original software. If you use this software
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
16
|
+
appreciated but is not required.
|
17
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
18
|
+
misrepresented as being the original software.
|
19
|
+
3. This notice may not be removed or altered from any source distribution.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef SDL_config_pandora_h_
|
23
|
+
#define SDL_config_pandora_h_
|
24
|
+
#define SDL_config_h_
|
25
|
+
|
26
|
+
/* This is a set of defines to configure the SDL features */
|
27
|
+
|
28
|
+
/* General platform specific identifiers */
|
29
|
+
#include "SDL_platform.h"
|
30
|
+
|
31
|
+
#ifdef __LP64__
|
32
|
+
#define SIZEOF_VOIDP 8
|
33
|
+
#else
|
34
|
+
#define SIZEOF_VOIDP 4
|
35
|
+
#endif
|
36
|
+
|
37
|
+
#define SDL_BYTEORDER 1234
|
38
|
+
|
39
|
+
#define STDC_HEADERS 1
|
40
|
+
#define HAVE_ALLOCA_H 1
|
41
|
+
#define HAVE_CTYPE_H 1
|
42
|
+
#define HAVE_ICONV_H 1
|
43
|
+
#define HAVE_INTTYPES_H 1
|
44
|
+
#define HAVE_LIMITS_H 1
|
45
|
+
#define HAVE_MALLOC_H 1
|
46
|
+
#define HAVE_MATH_H 1
|
47
|
+
#define HAVE_MEMORY_H 1
|
48
|
+
#define HAVE_SIGNAL_H 1
|
49
|
+
#define HAVE_STDARG_H 1
|
50
|
+
#define HAVE_STDINT_H 1
|
51
|
+
#define HAVE_STDIO_H 1
|
52
|
+
#define HAVE_STDLIB_H 1
|
53
|
+
#define HAVE_STRINGS_H 1
|
54
|
+
#define HAVE_STRING_H 1
|
55
|
+
#define HAVE_SYS_TYPES_H 1
|
56
|
+
|
57
|
+
#define HAVE_MALLOC 1
|
58
|
+
#define HAVE_CALLOC 1
|
59
|
+
#define HAVE_REALLOC 1
|
60
|
+
#define HAVE_FREE 1
|
61
|
+
#define HAVE_ALLOCA 1
|
62
|
+
#define HAVE_GETENV 1
|
63
|
+
#define HAVE_SETENV 1
|
64
|
+
#define HAVE_PUTENV 1
|
65
|
+
#define HAVE_UNSETENV 1
|
66
|
+
#define HAVE_QSORT 1
|
67
|
+
#define HAVE_ABS 1
|
68
|
+
#define HAVE_BCOPY 1
|
69
|
+
#define HAVE_MEMSET 1
|
70
|
+
#define HAVE_MEMCPY 1
|
71
|
+
#define HAVE_MEMMOVE 1
|
72
|
+
#define HAVE_STRLEN 1
|
73
|
+
#define HAVE_STRCHR 1
|
74
|
+
#define HAVE_STRRCHR 1
|
75
|
+
#define HAVE_STRSTR 1
|
76
|
+
#define HAVE_STRTOL 1
|
77
|
+
#define HAVE_STRTOUL 1
|
78
|
+
#define HAVE_STRTOLL 1
|
79
|
+
#define HAVE_STRTOULL 1
|
80
|
+
#define HAVE_ATOI 1
|
81
|
+
#define HAVE_ATOF 1
|
82
|
+
#define HAVE_STRCMP 1
|
83
|
+
#define HAVE_STRNCMP 1
|
84
|
+
#define HAVE_STRCASECMP 1
|
85
|
+
#define HAVE_STRNCASECMP 1
|
86
|
+
#define HAVE_VSSCANF 1
|
87
|
+
#define HAVE_VSNPRINTF 1
|
88
|
+
#define HAVE_M_PI 1
|
89
|
+
#define HAVE_CEIL 1
|
90
|
+
#define HAVE_COPYSIGN 1
|
91
|
+
#define HAVE_COS 1
|
92
|
+
#define HAVE_COSF 1
|
93
|
+
#define HAVE_EXP 1
|
94
|
+
#define HAVE_FABS 1
|
95
|
+
#define HAVE_FLOOR 1
|
96
|
+
#define HAVE_LOG 1
|
97
|
+
#define HAVE_LOG10 1
|
98
|
+
#define HAVE_SCALBN 1
|
99
|
+
#define HAVE_SIN 1
|
100
|
+
#define HAVE_SINF 1
|
101
|
+
#define HAVE_SQRT 1
|
102
|
+
#define HAVE_SQRTF 1
|
103
|
+
#define HAVE_TAN 1
|
104
|
+
#define HAVE_TANF 1
|
105
|
+
#define HAVE_TRUNC 1
|
106
|
+
#define HAVE_TRUNCF 1
|
107
|
+
#define HAVE_SIGACTION 1
|
108
|
+
#define HAVE_SETJMP 1
|
109
|
+
#define HAVE_NANOSLEEP 1
|
110
|
+
|
111
|
+
#define SDL_AUDIO_DRIVER_DUMMY 1
|
112
|
+
#define SDL_AUDIO_DRIVER_OSS 1
|
113
|
+
|
114
|
+
#define SDL_INPUT_LINUXEV 1
|
115
|
+
#define SDL_JOYSTICK_LINUX 1
|
116
|
+
#define SDL_JOYSTICK_VIRTUAL 1
|
117
|
+
#define SDL_HAPTIC_LINUX 1
|
118
|
+
|
119
|
+
#define SDL_SENSOR_DUMMY 1
|
120
|
+
|
121
|
+
#define SDL_LOADSO_DLOPEN 1
|
122
|
+
|
123
|
+
#define SDL_THREAD_PTHREAD 1
|
124
|
+
#define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP 1
|
125
|
+
|
126
|
+
#define SDL_TIMER_UNIX 1
|
127
|
+
#define SDL_FILESYSTEM_UNIX 1
|
128
|
+
|
129
|
+
#define SDL_VIDEO_DRIVER_DUMMY 1
|
130
|
+
#define SDL_VIDEO_DRIVER_X11 1
|
131
|
+
#define SDL_VIDEO_DRIVER_PANDORA 1
|
132
|
+
#define SDL_VIDEO_RENDER_OGL_ES 1
|
133
|
+
#define SDL_VIDEO_OPENGL_ES 1
|
134
|
+
|
135
|
+
#endif /* SDL_config_pandora_h_ */
|
@@ -0,0 +1,165 @@
|
|
1
|
+
/*
|
2
|
+
Simple DirectMedia Layer
|
3
|
+
Copyright (C) 1997-2020 Sam Lantinga <slouken@libsdl.org>
|
4
|
+
|
5
|
+
This software is provided 'as-is', without any express or implied
|
6
|
+
warranty. In no event will the authors be held liable for any damages
|
7
|
+
arising from the use of this software.
|
8
|
+
|
9
|
+
Permission is granted to anyone to use this software for any purpose,
|
10
|
+
including commercial applications, and to alter it and redistribute it
|
11
|
+
freely, subject to the following restrictions:
|
12
|
+
|
13
|
+
1. The origin of this software must not be misrepresented; you must not
|
14
|
+
claim that you wrote the original software. If you use this software
|
15
|
+
in a product, an acknowledgment in the product documentation would be
|
16
|
+
appreciated but is not required.
|
17
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
18
|
+
misrepresented as being the original software.
|
19
|
+
3. This notice may not be removed or altered from any source distribution.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#ifndef SDL_config_psp_h_
|
23
|
+
#define SDL_config_psp_h_
|
24
|
+
#define SDL_config_h_
|
25
|
+
|
26
|
+
#include "SDL_platform.h"
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
#ifdef __GNUC__
|
31
|
+
#define HAVE_GCC_SYNC_LOCK_TEST_AND_SET 1
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#define HAVE_GCC_ATOMICS 1
|
35
|
+
|
36
|
+
#define STDC_HEADERS 1
|
37
|
+
#define HAVE_ALLOCA_H 1
|
38
|
+
#define HAVE_CTYPE_H 1
|
39
|
+
#define HAVE_INTTYPES_H 1
|
40
|
+
#define HAVE_LIMITS_H 1
|
41
|
+
#define HAVE_MATH_H 1
|
42
|
+
#define HAVE_SIGNAL_H 1
|
43
|
+
#define HAVE_STDINT_H 1
|
44
|
+
#define HAVE_STDIO_H 1
|
45
|
+
#define HAVE_STRING_H 1
|
46
|
+
#define HAVE_SYS_TYPES_H 1
|
47
|
+
|
48
|
+
/* C library functions */
|
49
|
+
#define HAVE_MALLOC 1
|
50
|
+
#define HAVE_CALLOC 1
|
51
|
+
#define HAVE_REALLOC 1
|
52
|
+
#define HAVE_FREE 1
|
53
|
+
#define HAVE_ALLOCA 1
|
54
|
+
#define HAVE_GETENV 1
|
55
|
+
#define HAVE_SETENV 1
|
56
|
+
#define HAVE_PUTENV 1
|
57
|
+
#define HAVE_SETENV 1
|
58
|
+
#define HAVE_UNSETENV 1
|
59
|
+
#define HAVE_QSORT 1
|
60
|
+
#define HAVE_ABS 1
|
61
|
+
#define HAVE_BCOPY 1
|
62
|
+
#define HAVE_MEMSET 1
|
63
|
+
#define HAVE_MEMCPY 1
|
64
|
+
#define HAVE_MEMMOVE 1
|
65
|
+
#define HAVE_MEMCMP 1
|
66
|
+
#define HAVE_STRLEN 1
|
67
|
+
#define HAVE_STRLCPY 1
|
68
|
+
#define HAVE_STRLCAT 1
|
69
|
+
#define HAVE_STRCHR 1
|
70
|
+
#define HAVE_STRRCHR 1
|
71
|
+
#define HAVE_STRSTR 1
|
72
|
+
#define HAVE_STRTOL 1
|
73
|
+
#define HAVE_STRTOUL 1
|
74
|
+
#define HAVE_STRTOLL 1
|
75
|
+
#define HAVE_STRTOULL 1
|
76
|
+
#define HAVE_STRTOD 1
|
77
|
+
#define HAVE_ATOI 1
|
78
|
+
#define HAVE_ATOF 1
|
79
|
+
#define HAVE_STRCMP 1
|
80
|
+
#define HAVE_STRNCMP 1
|
81
|
+
#define HAVE_STRCASECMP 1
|
82
|
+
#define HAVE_STRNCASECMP 1
|
83
|
+
#define HAVE_VSSCANF 1
|
84
|
+
#define HAVE_VSNPRINTF 1
|
85
|
+
#define HAVE_M_PI 1
|
86
|
+
#define HAVE_ACOS 1
|
87
|
+
#define HAVE_ACOSF 1
|
88
|
+
#define HAVE_ASIN 1
|
89
|
+
#define HAVE_ASINF 1
|
90
|
+
#define HAVE_ATAN 1
|
91
|
+
#define HAVE_ATANF 1
|
92
|
+
#define HAVE_ATAN2 1
|
93
|
+
#define HAVE_ATAN2F 1
|
94
|
+
#define HAVE_CEIL 1
|
95
|
+
#define HAVE_CEILF 1
|
96
|
+
#define HAVE_COPYSIGN 1
|
97
|
+
#define HAVE_COPYSIGNF 1
|
98
|
+
#define HAVE_COS 1
|
99
|
+
#define HAVE_COSF 1
|
100
|
+
#define HAVE_EXP 1
|
101
|
+
#define HAVE_EXPF 1
|
102
|
+
#define HAVE_FABS 1
|
103
|
+
#define HAVE_FABSF 1
|
104
|
+
#define HAVE_FLOOR 1
|
105
|
+
#define HAVE_FLOORF 1
|
106
|
+
#define HAVE_FMOD 1
|
107
|
+
#define HAVE_FMODF 1
|
108
|
+
#define HAVE_LOG 1
|
109
|
+
#define HAVE_LOGF 1
|
110
|
+
#define HAVE_LOG10 1
|
111
|
+
#define HAVE_LOG10F 1
|
112
|
+
#define HAVE_POW 1
|
113
|
+
#define HAVE_POWF 1
|
114
|
+
#define HAVE_SCALBN 1
|
115
|
+
#define HAVE_SCALBNF 1
|
116
|
+
#define HAVE_SIN 1
|
117
|
+
#define HAVE_SINF 1
|
118
|
+
#define HAVE_SQRT 1
|
119
|
+
#define HAVE_SQRTF 1
|
120
|
+
#define HAVE_TAN 1
|
121
|
+
#define HAVE_TANF 1
|
122
|
+
#define HAVE_SETJMP 1
|
123
|
+
#define HAVE_NANOSLEEP 1
|
124
|
+
/* #define HAVE_SYSCONF 1 */
|
125
|
+
/* #define HAVE_SIGACTION 1 */
|
126
|
+
|
127
|
+
|
128
|
+
/* PSP isn't that sophisticated */
|
129
|
+
#define LACKS_SYS_MMAN_H 1
|
130
|
+
|
131
|
+
/* Enable the PSP thread support (src/thread/psp/\*.c) */
|
132
|
+
#define SDL_THREAD_PSP 1
|
133
|
+
|
134
|
+
/* Enable the PSP timer support (src/timer/psp/\*.c) */
|
135
|
+
#define SDL_TIMERS_PSP 1
|
136
|
+
|
137
|
+
/* Enable the PSP joystick driver (src/joystick/psp/\*.c) */
|
138
|
+
#define SDL_JOYSTICK_PSP 1
|
139
|
+
#define SDL_JOYSTICK_VIRTUAL 1
|
140
|
+
|
141
|
+
/* Enable the dummy sensor driver */
|
142
|
+
#define SDL_SENSOR_DUMMY 1
|
143
|
+
|
144
|
+
/* Enable the PSP audio driver (src/audio/psp/\*.c) */
|
145
|
+
#define SDL_AUDIO_DRIVER_PSP 1
|
146
|
+
|
147
|
+
/* PSP video driver */
|
148
|
+
#define SDL_VIDEO_DRIVER_PSP 1
|
149
|
+
|
150
|
+
/* PSP render driver */
|
151
|
+
#define SDL_VIDEO_RENDER_PSP 1
|
152
|
+
|
153
|
+
#define SDL_POWER_PSP 1
|
154
|
+
|
155
|
+
/* !!! FIXME: what does PSP do for filesystem stuff? */
|
156
|
+
#define SDL_FILESYSTEM_DUMMY 1
|
157
|
+
|
158
|
+
/* PSP doesn't have haptic device (src/haptic/dummy/\*.c) */
|
159
|
+
#define SDL_HAPTIC_DISABLED 1
|
160
|
+
|
161
|
+
/* PSP can't load shared object (src/loadso/dummy/\*.c) */
|
162
|
+
#define SDL_LOADSO_DISABLED 1
|
163
|
+
|
164
|
+
|
165
|
+
#endif /* SDL_config_psp_h_ */
|