gosu 0.15.1 → 1.1.0.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +1 -0
  3. data/COPYING +1 -1
  4. data/dependencies/SDL/include/SDL.h +138 -0
  5. data/dependencies/SDL/include/SDL_assert.h +293 -0
  6. data/dependencies/SDL/include/SDL_atomic.h +295 -0
  7. data/dependencies/SDL/include/SDL_audio.h +859 -0
  8. data/dependencies/SDL/include/SDL_bits.h +121 -0
  9. data/dependencies/SDL/include/SDL_blendmode.h +123 -0
  10. data/dependencies/SDL/include/SDL_clipboard.h +71 -0
  11. data/dependencies/SDL/include/SDL_config.h +55 -0
  12. data/dependencies/SDL/include/SDL_config_android.h +182 -0
  13. data/dependencies/SDL/include/SDL_config_iphoneos.h +207 -0
  14. data/dependencies/SDL/include/SDL_config_macosx.h +266 -0
  15. data/dependencies/SDL/include/SDL_config_minimal.h +85 -0
  16. data/dependencies/SDL/include/SDL_config_os2.h +188 -0
  17. data/dependencies/SDL/include/SDL_config_pandora.h +135 -0
  18. data/dependencies/SDL/include/SDL_config_psp.h +165 -0
  19. data/dependencies/SDL/include/SDL_config_windows.h +288 -0
  20. data/dependencies/SDL/include/SDL_config_winrt.h +243 -0
  21. data/dependencies/SDL/include/SDL_config_wiz.h +149 -0
  22. data/dependencies/SDL/include/SDL_copying.h +20 -0
  23. data/dependencies/SDL/include/SDL_cpuinfo.h +299 -0
  24. data/dependencies/SDL/include/SDL_egl.h +1676 -0
  25. data/dependencies/SDL/include/SDL_endian.h +263 -0
  26. data/dependencies/SDL/include/SDL_error.h +112 -0
  27. data/dependencies/SDL/include/SDL_events.h +827 -0
  28. data/dependencies/SDL/include/SDL_filesystem.h +136 -0
  29. data/dependencies/SDL/include/SDL_gamecontroller.h +541 -0
  30. data/dependencies/SDL/include/SDL_gesture.h +87 -0
  31. data/dependencies/SDL/include/SDL_haptic.h +1247 -0
  32. data/dependencies/SDL/include/SDL_hints.h +1578 -0
  33. data/dependencies/SDL/include/SDL_joystick.h +499 -0
  34. data/dependencies/SDL/include/SDL_keyboard.h +217 -0
  35. data/dependencies/SDL/include/SDL_keycode.h +351 -0
  36. data/dependencies/SDL/include/SDL_loadso.h +81 -0
  37. data/dependencies/SDL/include/SDL_locale.h +101 -0
  38. data/dependencies/SDL/include/SDL_log.h +211 -0
  39. data/dependencies/SDL/include/SDL_main.h +180 -0
  40. data/dependencies/SDL/include/SDL_messagebox.h +146 -0
  41. data/dependencies/SDL/include/SDL_metal.h +117 -0
  42. data/dependencies/SDL/include/SDL_misc.h +75 -0
  43. data/dependencies/SDL/include/SDL_mouse.h +302 -0
  44. data/dependencies/SDL/include/SDL_mutex.h +251 -0
  45. data/dependencies/SDL/include/SDL_name.h +33 -0
  46. data/dependencies/SDL/include/SDL_opengl.h +2183 -0
  47. data/dependencies/SDL/include/SDL_opengl_glext.h +11180 -0
  48. data/dependencies/SDL/include/SDL_opengles.h +39 -0
  49. data/dependencies/SDL/include/SDL_opengles2.h +52 -0
  50. data/dependencies/SDL/include/SDL_opengles2_gl2.h +621 -0
  51. data/dependencies/SDL/include/SDL_opengles2_gl2ext.h +2050 -0
  52. data/dependencies/SDL/include/SDL_opengles2_gl2platform.h +30 -0
  53. data/dependencies/SDL/include/SDL_opengles2_khrplatform.h +282 -0
  54. data/dependencies/SDL/include/SDL_pixels.h +479 -0
  55. data/dependencies/SDL/include/SDL_platform.h +198 -0
  56. data/dependencies/SDL/include/SDL_power.h +75 -0
  57. data/dependencies/SDL/include/SDL_quit.h +58 -0
  58. data/dependencies/SDL/include/SDL_rect.h +174 -0
  59. data/dependencies/SDL/include/SDL_render.h +1158 -0
  60. data/dependencies/SDL/include/SDL_revision.h +2 -0
  61. data/dependencies/SDL/include/SDL_rwops.h +283 -0
  62. data/dependencies/SDL/include/SDL_scancode.h +413 -0
  63. data/dependencies/SDL/include/SDL_sensor.h +267 -0
  64. data/dependencies/SDL/include/SDL_shape.h +144 -0
  65. data/dependencies/SDL/include/SDL_stdinc.h +647 -0
  66. data/dependencies/SDL/include/SDL_surface.h +563 -0
  67. data/dependencies/SDL/include/SDL_system.h +325 -0
  68. data/dependencies/SDL/include/SDL_syswm.h +354 -0
  69. data/dependencies/SDL/include/SDL_test.h +69 -0
  70. data/dependencies/SDL/include/SDL_test_assert.h +105 -0
  71. data/dependencies/SDL/include/SDL_test_common.h +218 -0
  72. data/dependencies/SDL/include/SDL_test_compare.h +69 -0
  73. data/dependencies/SDL/include/SDL_test_crc32.h +124 -0
  74. data/dependencies/SDL/include/SDL_test_font.h +81 -0
  75. data/dependencies/SDL/include/SDL_test_fuzzer.h +384 -0
  76. data/dependencies/SDL/include/SDL_test_harness.h +134 -0
  77. data/dependencies/SDL/include/SDL_test_images.h +78 -0
  78. data/dependencies/SDL/include/SDL_test_log.h +67 -0
  79. data/dependencies/SDL/include/SDL_test_md5.h +129 -0
  80. data/dependencies/SDL/include/SDL_test_memory.h +63 -0
  81. data/dependencies/SDL/include/SDL_test_random.h +115 -0
  82. data/dependencies/SDL/include/SDL_thread.h +366 -0
  83. data/dependencies/SDL/include/SDL_timer.h +115 -0
  84. data/dependencies/SDL/include/SDL_touch.h +102 -0
  85. data/dependencies/SDL/include/SDL_types.h +29 -0
  86. data/dependencies/SDL/include/SDL_version.h +162 -0
  87. data/dependencies/SDL/include/SDL_video.h +1282 -0
  88. data/dependencies/SDL/include/SDL_vulkan.h +276 -0
  89. data/dependencies/SDL/include/begin_code.h +166 -0
  90. data/dependencies/SDL/include/close_code.h +40 -0
  91. data/dependencies/SDL/lib/x64/libSDL2.dll.a +0 -0
  92. data/dependencies/SDL/lib/x86/libSDL2.dll.a +0 -0
  93. data/dependencies/SDL_sound/SDL_sound.c +795 -0
  94. data/dependencies/SDL_sound/SDL_sound.h +725 -0
  95. data/dependencies/SDL_sound/SDL_sound_aiff.c +537 -0
  96. data/dependencies/SDL_sound/SDL_sound_au.c +352 -0
  97. data/dependencies/SDL_sound/SDL_sound_coreaudio.c +747 -0
  98. data/dependencies/SDL_sound/SDL_sound_flac.c +182 -0
  99. data/dependencies/SDL_sound/SDL_sound_internal.h +304 -0
  100. data/dependencies/SDL_sound/SDL_sound_modplug.c +228 -0
  101. data/dependencies/SDL_sound/SDL_sound_mp3.c +184 -0
  102. data/dependencies/SDL_sound/SDL_sound_raw.c +164 -0
  103. data/dependencies/SDL_sound/SDL_sound_shn.c +1309 -0
  104. data/dependencies/SDL_sound/SDL_sound_voc.c +550 -0
  105. data/dependencies/SDL_sound/SDL_sound_vorbis.c +223 -0
  106. data/dependencies/SDL_sound/SDL_sound_wav.c +783 -0
  107. data/dependencies/SDL_sound/dr_flac.h +5906 -0
  108. data/dependencies/SDL_sound/dr_mp3.h +2832 -0
  109. data/dependencies/SDL_sound/libmodplug/fastmix.c +1748 -0
  110. data/dependencies/SDL_sound/libmodplug/libmodplug.h +1001 -0
  111. data/dependencies/SDL_sound/libmodplug/load_669.c +188 -0
  112. data/dependencies/SDL_sound/libmodplug/load_abc.c +4725 -0
  113. data/dependencies/SDL_sound/libmodplug/load_amf.c +403 -0
  114. data/dependencies/SDL_sound/libmodplug/load_ams.c +587 -0
  115. data/dependencies/SDL_sound/libmodplug/load_dbm.c +357 -0
  116. data/dependencies/SDL_sound/libmodplug/load_dmf.c +531 -0
  117. data/dependencies/SDL_sound/libmodplug/load_dsm.c +232 -0
  118. data/dependencies/SDL_sound/libmodplug/load_far.c +253 -0
  119. data/dependencies/SDL_sound/libmodplug/load_it.c +796 -0
  120. data/dependencies/SDL_sound/libmodplug/load_mdl.c +488 -0
  121. data/dependencies/SDL_sound/libmodplug/load_med.c +757 -0
  122. data/dependencies/SDL_sound/libmodplug/load_mid.c +1405 -0
  123. data/dependencies/SDL_sound/libmodplug/load_mod.c +269 -0
  124. data/dependencies/SDL_sound/libmodplug/load_mt2.c +546 -0
  125. data/dependencies/SDL_sound/libmodplug/load_mtm.c +142 -0
  126. data/dependencies/SDL_sound/libmodplug/load_okt.c +192 -0
  127. data/dependencies/SDL_sound/libmodplug/load_pat.c +1143 -0
  128. data/dependencies/SDL_sound/libmodplug/load_pat.h +25 -0
  129. data/dependencies/SDL_sound/libmodplug/load_psm.c +350 -0
  130. data/dependencies/SDL_sound/libmodplug/load_ptm.c +204 -0
  131. data/dependencies/SDL_sound/libmodplug/load_s3m.c +325 -0
  132. data/dependencies/SDL_sound/libmodplug/load_stm.c +180 -0
  133. data/dependencies/SDL_sound/libmodplug/load_ult.c +206 -0
  134. data/dependencies/SDL_sound/libmodplug/load_umx.c +51 -0
  135. data/dependencies/SDL_sound/libmodplug/load_xm.c +554 -0
  136. data/dependencies/SDL_sound/libmodplug/mmcmp.c +382 -0
  137. data/dependencies/SDL_sound/libmodplug/modplug.c +170 -0
  138. data/dependencies/SDL_sound/libmodplug/modplug.h +90 -0
  139. data/dependencies/SDL_sound/libmodplug/snd_dsp.c +301 -0
  140. data/dependencies/SDL_sound/libmodplug/snd_flt.c +63 -0
  141. data/dependencies/SDL_sound/libmodplug/snd_fx.c +2350 -0
  142. data/dependencies/SDL_sound/libmodplug/sndfile.c +1169 -0
  143. data/dependencies/SDL_sound/libmodplug/sndmix.c +1034 -0
  144. data/dependencies/SDL_sound/libmodplug/tables.h +371 -0
  145. data/{src/stb_vorbis.c → dependencies/SDL_sound/stb_vorbis.h} +143 -78
  146. data/dependencies/al_soft/AL/al.h +655 -0
  147. data/dependencies/al_soft/AL/alc.h +270 -0
  148. data/dependencies/al_soft/AL/alext.h +585 -0
  149. data/dependencies/al_soft/AL/efx-creative.h +3 -0
  150. data/dependencies/al_soft/AL/efx-presets.h +402 -0
  151. data/dependencies/al_soft/AL/efx.h +762 -0
  152. data/dependencies/al_soft/x64/libOpenAL32.dll.a +0 -0
  153. data/dependencies/al_soft/x86/libOpenAL32.dll.a +0 -0
  154. data/{src → dependencies/stb}/stb_image.h +330 -127
  155. data/{src → dependencies/stb}/stb_image_write.h +156 -85
  156. data/{src → dependencies/stb}/stb_truetype.h +192 -69
  157. data/{src → dependencies/utf8proc}/utf8proc.c +0 -0
  158. data/{src → dependencies/utf8proc}/utf8proc.h +0 -0
  159. data/{src → dependencies/utf8proc}/utf8proc_data.h +0 -0
  160. data/ext/gosu/extconf.rb +53 -39
  161. data/{Gosu → include/Gosu}/Audio.hpp +6 -8
  162. data/include/Gosu/Bitmap.hpp +100 -0
  163. data/{Gosu → include/Gosu}/Buttons.hpp +104 -44
  164. data/{Gosu → include/Gosu}/Color.hpp +0 -0
  165. data/{Gosu → include/Gosu}/Directories.hpp +0 -0
  166. data/{Gosu → include/Gosu}/Font.hpp +1 -1
  167. data/{Gosu → include/Gosu}/Fwd.hpp +0 -5
  168. data/{Gosu → include/Gosu}/Gosu.hpp +0 -0
  169. data/{Gosu → include/Gosu}/Graphics.hpp +0 -0
  170. data/{Gosu → include/Gosu}/GraphicsBase.hpp +0 -0
  171. data/{Gosu → include/Gosu}/IO.hpp +0 -0
  172. data/{Gosu → include/Gosu}/Image.hpp +7 -6
  173. data/{Gosu → include/Gosu}/ImageData.hpp +0 -0
  174. data/{Gosu → include/Gosu}/Input.hpp +39 -51
  175. data/{Gosu → include/Gosu}/Inspection.hpp +0 -0
  176. data/{Gosu → include/Gosu}/Math.hpp +0 -0
  177. data/{Gosu → include/Gosu}/Platform.hpp +0 -0
  178. data/{Gosu → include/Gosu}/Text.hpp +0 -0
  179. data/{Gosu → include/Gosu}/TextInput.hpp +0 -0
  180. data/{Gosu → include/Gosu}/Timing.hpp +0 -0
  181. data/{Gosu → include/Gosu}/Utility.hpp +15 -4
  182. data/{Gosu → include/Gosu}/Version.hpp +3 -3
  183. data/{Gosu → include/Gosu}/Window.hpp +46 -34
  184. data/lib/OpenAL32.dll +0 -0
  185. data/lib/SDL2.dll +0 -0
  186. data/lib/gosu.rb +0 -3
  187. data/lib/gosu/patches.rb +0 -23
  188. data/lib/gosu/preview.rb +1 -3
  189. data/lib/gosu/swig_patches.rb +6 -8
  190. data/lib64/OpenAL32.dll +0 -0
  191. data/lib64/SDL2.dll +0 -0
  192. data/rdoc/gosu.rb +112 -23
  193. data/src/Audio.cpp +50 -224
  194. data/src/AudioFile.hpp +20 -37
  195. data/src/AudioFileAudioToolbox.cpp +237 -0
  196. data/src/AudioFileSDLSound.cpp +147 -0
  197. data/src/AudioImpl.cpp +3 -12
  198. data/src/AudioImpl.hpp +3 -1
  199. data/src/Bitmap.cpp +85 -83
  200. data/src/BitmapIO.cpp +52 -58
  201. data/src/Font.cpp +4 -1
  202. data/src/Graphics.cpp +7 -4
  203. data/src/Image.cpp +13 -16
  204. data/src/Input.cpp +412 -164
  205. data/src/LargeImageData.cpp +2 -1
  206. data/src/MarkupParser.cpp +2 -1
  207. data/src/Resolution.cpp +8 -8
  208. data/src/RubyGosu.cxx +1184 -352
  209. data/src/RubyGosu.h +3 -2
  210. data/src/TexChunk.cpp +1 -1
  211. data/src/Text.cpp +1 -0
  212. data/src/TextBuilder.cpp +3 -1
  213. data/src/Texture.cpp +1 -1
  214. data/src/TrueTypeFont.cpp +2 -1
  215. data/src/TrueTypeFontWin.cpp +3 -3
  216. data/src/Utility.cpp +11 -7
  217. data/src/Window.cpp +90 -62
  218. data/src/WindowUIKit.cpp +21 -9
  219. metadata +195 -46
  220. data/Gosu/AutoLink.hpp +0 -14
  221. data/Gosu/Bitmap.hpp +0 -113
  222. data/lib/gosu/zen.rb +0 -89
  223. data/src/AudioToolboxFile.hpp +0 -210
  224. data/src/MPEGFile.hpp +0 -90
  225. data/src/OggFile.hpp +0 -92
  226. data/src/SndFile.hpp +0 -174
  227. 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_ */