sdl2-bindings 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +124 -108
  3. data/LICENSE.txt +0 -0
  4. data/README.md +77 -68
  5. data/lib/sdl2.rb +131 -127
  6. data/lib/sdl2_audio.rb +261 -261
  7. data/lib/sdl2_blendmode.rb +72 -72
  8. data/lib/sdl2_clipboard.rb +56 -56
  9. data/lib/sdl2_cpuinfo.rb +129 -129
  10. data/lib/sdl2_error.rb +71 -71
  11. data/lib/sdl2_events.rb +564 -552
  12. data/lib/sdl2_filesystem.rb +52 -52
  13. data/lib/sdl2_framerate.rb +74 -74
  14. data/lib/sdl2_gamecontroller.rb +329 -329
  15. data/lib/sdl2_gesture.rb +61 -61
  16. data/lib/sdl2_gfxPrimitives.rb +283 -283
  17. data/lib/sdl2_haptic.rb +301 -301
  18. data/lib/sdl2_hidapi.rb +139 -139
  19. data/lib/sdl2_hints.rb +221 -207
  20. data/lib/sdl2_image.rb +232 -232
  21. data/lib/sdl2_imageFilter.rb +164 -164
  22. data/lib/sdl2_joystick.rb +294 -294
  23. data/lib/sdl2_keyboard.rb +125 -117
  24. data/lib/sdl2_keycode.rb +307 -307
  25. data/lib/sdl2_log.rb +131 -131
  26. data/lib/sdl2_main.rb +74 -74
  27. data/lib/sdl2_messagebox.rb +102 -102
  28. data/lib/sdl2_misc.rb +48 -48
  29. data/lib/sdl2_mixer.rb +392 -392
  30. data/lib/sdl2_mouse.rb +136 -136
  31. data/lib/sdl2_pixels.rb +240 -240
  32. data/lib/sdl2_platform.rb +48 -48
  33. data/lib/sdl2_power.rb +54 -54
  34. data/lib/sdl2_rect.rb +145 -109
  35. data/lib/sdl2_render.rb +408 -404
  36. data/lib/sdl2_rotozoom.rb +76 -76
  37. data/lib/sdl2_rwops.rb +238 -238
  38. data/lib/sdl2_scancode.rb +289 -289
  39. data/lib/sdl2_sensor.rb +115 -115
  40. data/lib/sdl2_shape.rb +83 -83
  41. data/lib/sdl2_sound.rb +154 -0
  42. data/lib/sdl2_stdinc.rb +556 -564
  43. data/lib/sdl2_surface.rb +229 -229
  44. data/lib/sdl2_syswm.rb +160 -160
  45. data/lib/sdl2_timer.rb +74 -74
  46. data/lib/sdl2_touch.rb +86 -82
  47. data/lib/sdl2_ttf.rb +358 -357
  48. data/lib/sdl2_version.rb +67 -67
  49. data/lib/sdl2_video.rb +540 -540
  50. data/lib/sdl2_vulkan.rb +72 -72
  51. metadata +3 -2
data/lib/sdl2_stdinc.rb CHANGED
@@ -1,564 +1,556 @@
1
- # Ruby-SDL2 : Yet another SDL2 wrapper for Ruby
2
- #
3
- # * https://github.com/vaiorabbit/sdl2-bindings
4
- #
5
- # [NOTICE] This is an automatically generated file.
6
-
7
- require 'ffi'
8
-
9
- module SDL
10
- extend FFI::Library
11
- # Define/Macro
12
-
13
- ICONV_ERROR = -1
14
- ICONV_E2BIG = -2
15
- ICONV_EILSEQ = -3
16
- ICONV_EINVAL = -4
17
-
18
- # Enum
19
-
20
- FALSE = 0
21
- TRUE = 1
22
-
23
- # Typedef
24
-
25
- typedef :char, :int8_t
26
- typedef :short, :int16_t
27
- typedef :int, :int32_t
28
- typedef :long_long, :int64_t
29
- typedef :uchar, :uint8_t
30
- typedef :ushort, :uint16_t
31
- typedef :uint, :uint32_t
32
- typedef :ulong_long, :uint64_t
33
- typedef :int, :SDL_bool
34
- typedef :char, :Sint8
35
- typedef :uchar, :Uint8
36
- typedef :short, :Sint16
37
- typedef :ushort, :Uint16
38
- typedef :int, :Sint32
39
- typedef :uint, :Uint32
40
- typedef :long_long, :Sint64
41
- typedef :ulong_long, :Uint64
42
- callback :SDL_malloc_func, [:int], :pointer
43
- callback :SDL_calloc_func, [:int, :int], :pointer
44
- callback :SDL_realloc_func, [:pointer, :int], :pointer
45
- callback :SDL_free_func, [:pointer], :void
46
- typedef :pointer, :SDL_iconv_t
47
-
48
- # Struct
49
-
50
-
51
- # Function
52
-
53
- def self.setup_stdinc_symbols(output_error = false)
54
- symbols = [
55
- :SDL_malloc,
56
- :SDL_calloc,
57
- :SDL_realloc,
58
- :SDL_free,
59
- :SDL_GetMemoryFunctions,
60
- :SDL_SetMemoryFunctions,
61
- :SDL_GetNumAllocations,
62
- :SDL_getenv,
63
- :SDL_setenv,
64
- :SDL_qsort,
65
- :SDL_abs,
66
- :SDL_isalpha,
67
- :SDL_isalnum,
68
- :SDL_isblank,
69
- :SDL_iscntrl,
70
- :SDL_isdigit,
71
- :SDL_isxdigit,
72
- :SDL_ispunct,
73
- :SDL_isspace,
74
- :SDL_isupper,
75
- :SDL_islower,
76
- :SDL_isprint,
77
- :SDL_isgraph,
78
- :SDL_toupper,
79
- :SDL_tolower,
80
- :SDL_crc32,
81
- :SDL_memset,
82
- :SDL_memset4,
83
- :SDL_memcpy,
84
- :SDL_memmove,
85
- :SDL_memcmp,
86
- :SDL_wcslen,
87
- :SDL_wcslcpy,
88
- :SDL_wcslcat,
89
- :SDL_wcsdup,
90
- :SDL_wcsstr,
91
- :SDL_wcscmp,
92
- :SDL_wcsncmp,
93
- :SDL_wcscasecmp,
94
- :SDL_wcsncasecmp,
95
- :SDL_strlen,
96
- :SDL_strlcpy,
97
- :SDL_utf8strlcpy,
98
- :SDL_strlcat,
99
- :SDL_strdup,
100
- :SDL_strrev,
101
- :SDL_strupr,
102
- :SDL_strlwr,
103
- :SDL_strchr,
104
- :SDL_strrchr,
105
- :SDL_strstr,
106
- :SDL_strtokr,
107
- :SDL_utf8strlen,
108
- :SDL_itoa,
109
- :SDL_uitoa,
110
- :SDL_ltoa,
111
- :SDL_ultoa,
112
- :SDL_lltoa,
113
- :SDL_ulltoa,
114
- :SDL_atoi,
115
- :SDL_atof,
116
- :SDL_strtol,
117
- :SDL_strtoul,
118
- :SDL_strtoll,
119
- :SDL_strtoull,
120
- :SDL_strtod,
121
- :SDL_strcmp,
122
- :SDL_strncmp,
123
- :SDL_strcasecmp,
124
- :SDL_strncasecmp,
125
- :SDL_sscanf,
126
- :SDL_vsscanf,
127
- :SDL_snprintf,
128
- :SDL_vsnprintf,
129
- :SDL_asprintf,
130
- :SDL_vasprintf,
131
- :SDL_acos,
132
- :SDL_acosf,
133
- :SDL_asin,
134
- :SDL_asinf,
135
- :SDL_atan,
136
- :SDL_atanf,
137
- :SDL_atan2,
138
- :SDL_atan2f,
139
- :SDL_ceil,
140
- :SDL_ceilf,
141
- :SDL_copysign,
142
- :SDL_copysignf,
143
- :SDL_cos,
144
- :SDL_cosf,
145
- :SDL_exp,
146
- :SDL_expf,
147
- :SDL_fabs,
148
- :SDL_fabsf,
149
- :SDL_floor,
150
- :SDL_floorf,
151
- :SDL_trunc,
152
- :SDL_truncf,
153
- :SDL_fmod,
154
- :SDL_fmodf,
155
- :SDL_log,
156
- :SDL_logf,
157
- :SDL_log10,
158
- :SDL_log10f,
159
- :SDL_pow,
160
- :SDL_powf,
161
- :SDL_round,
162
- :SDL_roundf,
163
- :SDL_lround,
164
- :SDL_lroundf,
165
- :SDL_scalbn,
166
- :SDL_scalbnf,
167
- :SDL_sin,
168
- :SDL_sinf,
169
- :SDL_sqrt,
170
- :SDL_sqrtf,
171
- :SDL_tan,
172
- :SDL_tanf,
173
- :SDL_iconv_open,
174
- :SDL_iconv_close,
175
- :SDL_iconv,
176
- :SDL_iconv_string,
177
- :SDL_memcpy4,
178
- ]
179
- apis = {
180
- :SDL_malloc => :malloc,
181
- :SDL_calloc => :calloc,
182
- :SDL_realloc => :realloc,
183
- :SDL_free => :free,
184
- :SDL_GetMemoryFunctions => :GetMemoryFunctions,
185
- :SDL_SetMemoryFunctions => :SetMemoryFunctions,
186
- :SDL_GetNumAllocations => :GetNumAllocations,
187
- :SDL_getenv => :getenv,
188
- :SDL_setenv => :setenv,
189
- :SDL_qsort => :qsort,
190
- :SDL_abs => :abs,
191
- :SDL_isalpha => :isalpha,
192
- :SDL_isalnum => :isalnum,
193
- :SDL_isblank => :isblank,
194
- :SDL_iscntrl => :iscntrl,
195
- :SDL_isdigit => :isdigit,
196
- :SDL_isxdigit => :isxdigit,
197
- :SDL_ispunct => :ispunct,
198
- :SDL_isspace => :isspace,
199
- :SDL_isupper => :isupper,
200
- :SDL_islower => :islower,
201
- :SDL_isprint => :isprint,
202
- :SDL_isgraph => :isgraph,
203
- :SDL_toupper => :toupper,
204
- :SDL_tolower => :tolower,
205
- :SDL_crc32 => :crc32,
206
- :SDL_memset => :memset,
207
- :SDL_memset4 => :memset4,
208
- :SDL_memcpy => :memcpy,
209
- :SDL_memmove => :memmove,
210
- :SDL_memcmp => :memcmp,
211
- :SDL_wcslen => :wcslen,
212
- :SDL_wcslcpy => :wcslcpy,
213
- :SDL_wcslcat => :wcslcat,
214
- :SDL_wcsdup => :wcsdup,
215
- :SDL_wcsstr => :wcsstr,
216
- :SDL_wcscmp => :wcscmp,
217
- :SDL_wcsncmp => :wcsncmp,
218
- :SDL_wcscasecmp => :wcscasecmp,
219
- :SDL_wcsncasecmp => :wcsncasecmp,
220
- :SDL_strlen => :strlen,
221
- :SDL_strlcpy => :strlcpy,
222
- :SDL_utf8strlcpy => :utf8strlcpy,
223
- :SDL_strlcat => :strlcat,
224
- :SDL_strdup => :strdup,
225
- :SDL_strrev => :strrev,
226
- :SDL_strupr => :strupr,
227
- :SDL_strlwr => :strlwr,
228
- :SDL_strchr => :strchr,
229
- :SDL_strrchr => :strrchr,
230
- :SDL_strstr => :strstr,
231
- :SDL_strtokr => :strtokr,
232
- :SDL_utf8strlen => :utf8strlen,
233
- :SDL_itoa => :itoa,
234
- :SDL_uitoa => :uitoa,
235
- :SDL_ltoa => :ltoa,
236
- :SDL_ultoa => :ultoa,
237
- :SDL_lltoa => :lltoa,
238
- :SDL_ulltoa => :ulltoa,
239
- :SDL_atoi => :atoi,
240
- :SDL_atof => :atof,
241
- :SDL_strtol => :strtol,
242
- :SDL_strtoul => :strtoul,
243
- :SDL_strtoll => :strtoll,
244
- :SDL_strtoull => :strtoull,
245
- :SDL_strtod => :strtod,
246
- :SDL_strcmp => :strcmp,
247
- :SDL_strncmp => :strncmp,
248
- :SDL_strcasecmp => :strcasecmp,
249
- :SDL_strncasecmp => :strncasecmp,
250
- :SDL_sscanf => :sscanf,
251
- :SDL_vsscanf => :vsscanf,
252
- :SDL_snprintf => :snprintf,
253
- :SDL_vsnprintf => :vsnprintf,
254
- :SDL_asprintf => :asprintf,
255
- :SDL_vasprintf => :vasprintf,
256
- :SDL_acos => :acos,
257
- :SDL_acosf => :acosf,
258
- :SDL_asin => :asin,
259
- :SDL_asinf => :asinf,
260
- :SDL_atan => :atan,
261
- :SDL_atanf => :atanf,
262
- :SDL_atan2 => :atan2,
263
- :SDL_atan2f => :atan2f,
264
- :SDL_ceil => :ceil,
265
- :SDL_ceilf => :ceilf,
266
- :SDL_copysign => :copysign,
267
- :SDL_copysignf => :copysignf,
268
- :SDL_cos => :cos,
269
- :SDL_cosf => :cosf,
270
- :SDL_exp => :exp,
271
- :SDL_expf => :expf,
272
- :SDL_fabs => :fabs,
273
- :SDL_fabsf => :fabsf,
274
- :SDL_floor => :floor,
275
- :SDL_floorf => :floorf,
276
- :SDL_trunc => :trunc,
277
- :SDL_truncf => :truncf,
278
- :SDL_fmod => :fmod,
279
- :SDL_fmodf => :fmodf,
280
- :SDL_log => :log,
281
- :SDL_logf => :logf,
282
- :SDL_log10 => :log10,
283
- :SDL_log10f => :log10f,
284
- :SDL_pow => :pow,
285
- :SDL_powf => :powf,
286
- :SDL_round => :round,
287
- :SDL_roundf => :roundf,
288
- :SDL_lround => :lround,
289
- :SDL_lroundf => :lroundf,
290
- :SDL_scalbn => :scalbn,
291
- :SDL_scalbnf => :scalbnf,
292
- :SDL_sin => :sin,
293
- :SDL_sinf => :sinf,
294
- :SDL_sqrt => :sqrt,
295
- :SDL_sqrtf => :sqrtf,
296
- :SDL_tan => :tan,
297
- :SDL_tanf => :tanf,
298
- :SDL_iconv_open => :iconv_open,
299
- :SDL_iconv_close => :iconv_close,
300
- :SDL_iconv => :iconv,
301
- :SDL_iconv_string => :iconv_string,
302
- :SDL_memcpy4 => :memcpy4,
303
- }
304
- args = {
305
- :SDL_malloc => [:int],
306
- :SDL_calloc => [:int, :int],
307
- :SDL_realloc => [:pointer, :int],
308
- :SDL_free => [:pointer],
309
- :SDL_GetMemoryFunctions => [:pointer, :pointer, :pointer, :pointer],
310
- :SDL_SetMemoryFunctions => [:SDL_malloc_func, :SDL_calloc_func, :SDL_realloc_func, :SDL_free_func],
311
- :SDL_GetNumAllocations => [],
312
- :SDL_getenv => [:pointer],
313
- :SDL_setenv => [:pointer, :pointer, :int],
314
- :SDL_qsort => [:pointer, :int, :int, :pointer],
315
- :SDL_abs => [:int],
316
- :SDL_isalpha => [:int],
317
- :SDL_isalnum => [:int],
318
- :SDL_isblank => [:int],
319
- :SDL_iscntrl => [:int],
320
- :SDL_isdigit => [:int],
321
- :SDL_isxdigit => [:int],
322
- :SDL_ispunct => [:int],
323
- :SDL_isspace => [:int],
324
- :SDL_isupper => [:int],
325
- :SDL_islower => [:int],
326
- :SDL_isprint => [:int],
327
- :SDL_isgraph => [:int],
328
- :SDL_toupper => [:int],
329
- :SDL_tolower => [:int],
330
- :SDL_crc32 => [:uint, :pointer, :int],
331
- :SDL_memset => [:pointer, :int, :int],
332
- :SDL_memset4 => [:pointer, :uint, :int],
333
- :SDL_memcpy => [:pointer, :pointer, :int],
334
- :SDL_memmove => [:pointer, :pointer, :int],
335
- :SDL_memcmp => [:pointer, :pointer, :int],
336
- :SDL_wcslen => [:pointer],
337
- :SDL_wcslcpy => [:pointer, :pointer, :int],
338
- :SDL_wcslcat => [:pointer, :pointer, :int],
339
- :SDL_wcsdup => [:pointer],
340
- :SDL_wcsstr => [:pointer, :pointer],
341
- :SDL_wcscmp => [:pointer, :pointer],
342
- :SDL_wcsncmp => [:pointer, :pointer, :int],
343
- :SDL_wcscasecmp => [:pointer, :pointer],
344
- :SDL_wcsncasecmp => [:pointer, :pointer, :int],
345
- :SDL_strlen => [:pointer],
346
- :SDL_strlcpy => [:pointer, :pointer, :int],
347
- :SDL_utf8strlcpy => [:pointer, :pointer, :int],
348
- :SDL_strlcat => [:pointer, :pointer, :int],
349
- :SDL_strdup => [:pointer],
350
- :SDL_strrev => [:pointer],
351
- :SDL_strupr => [:pointer],
352
- :SDL_strlwr => [:pointer],
353
- :SDL_strchr => [:pointer, :int],
354
- :SDL_strrchr => [:pointer, :int],
355
- :SDL_strstr => [:pointer, :pointer],
356
- :SDL_strtokr => [:pointer, :pointer, :pointer],
357
- :SDL_utf8strlen => [:pointer],
358
- :SDL_itoa => [:int, :pointer, :int],
359
- :SDL_uitoa => [:uint, :pointer, :int],
360
- :SDL_ltoa => [:long, :pointer, :int],
361
- :SDL_ultoa => [:ulong, :pointer, :int],
362
- :SDL_lltoa => [:long_long, :pointer, :int],
363
- :SDL_ulltoa => [:ulong_long, :pointer, :int],
364
- :SDL_atoi => [:pointer],
365
- :SDL_atof => [:pointer],
366
- :SDL_strtol => [:pointer, :pointer, :int],
367
- :SDL_strtoul => [:pointer, :pointer, :int],
368
- :SDL_strtoll => [:pointer, :pointer, :int],
369
- :SDL_strtoull => [:pointer, :pointer, :int],
370
- :SDL_strtod => [:pointer, :pointer],
371
- :SDL_strcmp => [:pointer, :pointer],
372
- :SDL_strncmp => [:pointer, :pointer, :int],
373
- :SDL_strcasecmp => [:pointer, :pointer],
374
- :SDL_strncasecmp => [:pointer, :pointer, :int],
375
- :SDL_sscanf => [:pointer, :pointer],
376
- :SDL_vsscanf => [:pointer, :pointer, :int],
377
- :SDL_snprintf => [:pointer, :int, :pointer],
378
- :SDL_vsnprintf => [:pointer, :int, :pointer, :int],
379
- :SDL_asprintf => [:pointer, :pointer],
380
- :SDL_vasprintf => [:pointer, :pointer, :int],
381
- :SDL_acos => [:double],
382
- :SDL_acosf => [:float],
383
- :SDL_asin => [:double],
384
- :SDL_asinf => [:float],
385
- :SDL_atan => [:double],
386
- :SDL_atanf => [:float],
387
- :SDL_atan2 => [:double, :double],
388
- :SDL_atan2f => [:float, :float],
389
- :SDL_ceil => [:double],
390
- :SDL_ceilf => [:float],
391
- :SDL_copysign => [:double, :double],
392
- :SDL_copysignf => [:float, :float],
393
- :SDL_cos => [:double],
394
- :SDL_cosf => [:float],
395
- :SDL_exp => [:double],
396
- :SDL_expf => [:float],
397
- :SDL_fabs => [:double],
398
- :SDL_fabsf => [:float],
399
- :SDL_floor => [:double],
400
- :SDL_floorf => [:float],
401
- :SDL_trunc => [:double],
402
- :SDL_truncf => [:float],
403
- :SDL_fmod => [:double, :double],
404
- :SDL_fmodf => [:float, :float],
405
- :SDL_log => [:double],
406
- :SDL_logf => [:float],
407
- :SDL_log10 => [:double],
408
- :SDL_log10f => [:float],
409
- :SDL_pow => [:double, :double],
410
- :SDL_powf => [:float, :float],
411
- :SDL_round => [:double],
412
- :SDL_roundf => [:float],
413
- :SDL_lround => [:double],
414
- :SDL_lroundf => [:float],
415
- :SDL_scalbn => [:double, :int],
416
- :SDL_scalbnf => [:float, :int],
417
- :SDL_sin => [:double],
418
- :SDL_sinf => [:float],
419
- :SDL_sqrt => [:double],
420
- :SDL_sqrtf => [:float],
421
- :SDL_tan => [:double],
422
- :SDL_tanf => [:float],
423
- :SDL_iconv_open => [:pointer, :pointer],
424
- :SDL_iconv_close => [:pointer],
425
- :SDL_iconv => [:pointer, :pointer, :pointer, :pointer, :pointer],
426
- :SDL_iconv_string => [:pointer, :pointer, :pointer, :int],
427
- :SDL_memcpy4 => [:pointer, :pointer, :int],
428
- }
429
- retvals = {
430
- :SDL_malloc => :pointer,
431
- :SDL_calloc => :pointer,
432
- :SDL_realloc => :pointer,
433
- :SDL_free => :void,
434
- :SDL_GetMemoryFunctions => :void,
435
- :SDL_SetMemoryFunctions => :int,
436
- :SDL_GetNumAllocations => :int,
437
- :SDL_getenv => :pointer,
438
- :SDL_setenv => :int,
439
- :SDL_qsort => :void,
440
- :SDL_abs => :int,
441
- :SDL_isalpha => :int,
442
- :SDL_isalnum => :int,
443
- :SDL_isblank => :int,
444
- :SDL_iscntrl => :int,
445
- :SDL_isdigit => :int,
446
- :SDL_isxdigit => :int,
447
- :SDL_ispunct => :int,
448
- :SDL_isspace => :int,
449
- :SDL_isupper => :int,
450
- :SDL_islower => :int,
451
- :SDL_isprint => :int,
452
- :SDL_isgraph => :int,
453
- :SDL_toupper => :int,
454
- :SDL_tolower => :int,
455
- :SDL_crc32 => :uint,
456
- :SDL_memset => :pointer,
457
- :SDL_memset4 => :void,
458
- :SDL_memcpy => :pointer,
459
- :SDL_memmove => :pointer,
460
- :SDL_memcmp => :int,
461
- :SDL_wcslen => :int,
462
- :SDL_wcslcpy => :int,
463
- :SDL_wcslcat => :int,
464
- :SDL_wcsdup => :pointer,
465
- :SDL_wcsstr => :pointer,
466
- :SDL_wcscmp => :int,
467
- :SDL_wcsncmp => :int,
468
- :SDL_wcscasecmp => :int,
469
- :SDL_wcsncasecmp => :int,
470
- :SDL_strlen => :int,
471
- :SDL_strlcpy => :int,
472
- :SDL_utf8strlcpy => :int,
473
- :SDL_strlcat => :int,
474
- :SDL_strdup => :pointer,
475
- :SDL_strrev => :pointer,
476
- :SDL_strupr => :pointer,
477
- :SDL_strlwr => :pointer,
478
- :SDL_strchr => :pointer,
479
- :SDL_strrchr => :pointer,
480
- :SDL_strstr => :pointer,
481
- :SDL_strtokr => :pointer,
482
- :SDL_utf8strlen => :int,
483
- :SDL_itoa => :pointer,
484
- :SDL_uitoa => :pointer,
485
- :SDL_ltoa => :pointer,
486
- :SDL_ultoa => :pointer,
487
- :SDL_lltoa => :pointer,
488
- :SDL_ulltoa => :pointer,
489
- :SDL_atoi => :int,
490
- :SDL_atof => :double,
491
- :SDL_strtol => :long,
492
- :SDL_strtoul => :ulong,
493
- :SDL_strtoll => :long_long,
494
- :SDL_strtoull => :ulong_long,
495
- :SDL_strtod => :double,
496
- :SDL_strcmp => :int,
497
- :SDL_strncmp => :int,
498
- :SDL_strcasecmp => :int,
499
- :SDL_strncasecmp => :int,
500
- :SDL_sscanf => :int,
501
- :SDL_vsscanf => :int,
502
- :SDL_snprintf => :int,
503
- :SDL_vsnprintf => :int,
504
- :SDL_asprintf => :int,
505
- :SDL_vasprintf => :int,
506
- :SDL_acos => :double,
507
- :SDL_acosf => :float,
508
- :SDL_asin => :double,
509
- :SDL_asinf => :float,
510
- :SDL_atan => :double,
511
- :SDL_atanf => :float,
512
- :SDL_atan2 => :double,
513
- :SDL_atan2f => :float,
514
- :SDL_ceil => :double,
515
- :SDL_ceilf => :float,
516
- :SDL_copysign => :double,
517
- :SDL_copysignf => :float,
518
- :SDL_cos => :double,
519
- :SDL_cosf => :float,
520
- :SDL_exp => :double,
521
- :SDL_expf => :float,
522
- :SDL_fabs => :double,
523
- :SDL_fabsf => :float,
524
- :SDL_floor => :double,
525
- :SDL_floorf => :float,
526
- :SDL_trunc => :double,
527
- :SDL_truncf => :float,
528
- :SDL_fmod => :double,
529
- :SDL_fmodf => :float,
530
- :SDL_log => :double,
531
- :SDL_logf => :float,
532
- :SDL_log10 => :double,
533
- :SDL_log10f => :float,
534
- :SDL_pow => :double,
535
- :SDL_powf => :float,
536
- :SDL_round => :double,
537
- :SDL_roundf => :float,
538
- :SDL_lround => :long,
539
- :SDL_lroundf => :long,
540
- :SDL_scalbn => :double,
541
- :SDL_scalbnf => :float,
542
- :SDL_sin => :double,
543
- :SDL_sinf => :float,
544
- :SDL_sqrt => :double,
545
- :SDL_sqrtf => :float,
546
- :SDL_tan => :double,
547
- :SDL_tanf => :float,
548
- :SDL_iconv_open => :pointer,
549
- :SDL_iconv_close => :int,
550
- :SDL_iconv => :int,
551
- :SDL_iconv_string => :pointer,
552
- :SDL_memcpy4 => :pointer,
553
- }
554
- symbols.each do |sym|
555
- begin
556
- attach_function apis[sym], sym, args[sym], retvals[sym]
557
- rescue FFI::NotFoundError => error
558
- $stderr.puts("[Warning] Failed to import #{sym} (#{error}).") if output_error
559
- end
560
- end
561
- end
562
-
563
- end
564
-
1
+ # Ruby-SDL2 : Yet another SDL2 wrapper for Ruby
2
+ #
3
+ # * https://github.com/vaiorabbit/sdl2-bindings
4
+ #
5
+ # [NOTICE] This is an automatically generated file.
6
+
7
+ require 'ffi'
8
+
9
+ module SDL
10
+ extend FFI::Library
11
+ # Define/Macro
12
+
13
+ ICONV_ERROR = -1
14
+ ICONV_E2BIG = -2
15
+ ICONV_EILSEQ = -3
16
+ ICONV_EINVAL = -4
17
+
18
+ # Enum
19
+
20
+ FALSE = 0
21
+ TRUE = 1
22
+
23
+ # Typedef
24
+
25
+ typedef :char, :int8_t
26
+ typedef :short, :int16_t
27
+ typedef :int, :int32_t
28
+ typedef :long_long, :int64_t
29
+ typedef :uchar, :uint8_t
30
+ typedef :ushort, :uint16_t
31
+ typedef :uint, :uint32_t
32
+ typedef :ulong_long, :uint64_t
33
+ typedef :int, :SDL_bool
34
+ typedef :char, :Sint8
35
+ typedef :uchar, :Uint8
36
+ typedef :short, :Sint16
37
+ typedef :ushort, :Uint16
38
+ typedef :int, :Sint32
39
+ typedef :uint, :Uint32
40
+ typedef :long_long, :Sint64
41
+ typedef :ulong_long, :Uint64
42
+ callback :SDL_malloc_func, [:int], :pointer
43
+ callback :SDL_calloc_func, [:int, :int], :pointer
44
+ callback :SDL_realloc_func, [:pointer, :int], :pointer
45
+ callback :SDL_free_func, [:pointer], :void
46
+ typedef :pointer, :SDL_iconv_t
47
+
48
+ # Struct
49
+
50
+
51
+ # Function
52
+
53
+ def self.setup_stdinc_symbols(output_error = false)
54
+ symbols = [
55
+ :SDL_malloc,
56
+ :SDL_calloc,
57
+ :SDL_realloc,
58
+ :SDL_free,
59
+ :SDL_GetMemoryFunctions,
60
+ :SDL_SetMemoryFunctions,
61
+ :SDL_GetNumAllocations,
62
+ :SDL_getenv,
63
+ :SDL_setenv,
64
+ :SDL_qsort,
65
+ :SDL_abs,
66
+ :SDL_isalpha,
67
+ :SDL_isalnum,
68
+ :SDL_isblank,
69
+ :SDL_iscntrl,
70
+ :SDL_isdigit,
71
+ :SDL_isxdigit,
72
+ :SDL_ispunct,
73
+ :SDL_isspace,
74
+ :SDL_isupper,
75
+ :SDL_islower,
76
+ :SDL_isprint,
77
+ :SDL_isgraph,
78
+ :SDL_toupper,
79
+ :SDL_tolower,
80
+ :SDL_crc32,
81
+ :SDL_memset,
82
+ :SDL_memcpy,
83
+ :SDL_memmove,
84
+ :SDL_memcmp,
85
+ :SDL_wcslen,
86
+ :SDL_wcslcpy,
87
+ :SDL_wcslcat,
88
+ :SDL_wcsdup,
89
+ :SDL_wcsstr,
90
+ :SDL_wcscmp,
91
+ :SDL_wcsncmp,
92
+ :SDL_wcscasecmp,
93
+ :SDL_wcsncasecmp,
94
+ :SDL_strlen,
95
+ :SDL_strlcpy,
96
+ :SDL_utf8strlcpy,
97
+ :SDL_strlcat,
98
+ :SDL_strdup,
99
+ :SDL_strrev,
100
+ :SDL_strupr,
101
+ :SDL_strlwr,
102
+ :SDL_strchr,
103
+ :SDL_strrchr,
104
+ :SDL_strstr,
105
+ :SDL_strtokr,
106
+ :SDL_utf8strlen,
107
+ :SDL_itoa,
108
+ :SDL_uitoa,
109
+ :SDL_ltoa,
110
+ :SDL_ultoa,
111
+ :SDL_lltoa,
112
+ :SDL_ulltoa,
113
+ :SDL_atoi,
114
+ :SDL_atof,
115
+ :SDL_strtol,
116
+ :SDL_strtoul,
117
+ :SDL_strtoll,
118
+ :SDL_strtoull,
119
+ :SDL_strtod,
120
+ :SDL_strcmp,
121
+ :SDL_strncmp,
122
+ :SDL_strcasecmp,
123
+ :SDL_strncasecmp,
124
+ :SDL_sscanf,
125
+ :SDL_vsscanf,
126
+ :SDL_snprintf,
127
+ :SDL_vsnprintf,
128
+ :SDL_asprintf,
129
+ :SDL_vasprintf,
130
+ :SDL_acos,
131
+ :SDL_acosf,
132
+ :SDL_asin,
133
+ :SDL_asinf,
134
+ :SDL_atan,
135
+ :SDL_atanf,
136
+ :SDL_atan2,
137
+ :SDL_atan2f,
138
+ :SDL_ceil,
139
+ :SDL_ceilf,
140
+ :SDL_copysign,
141
+ :SDL_copysignf,
142
+ :SDL_cos,
143
+ :SDL_cosf,
144
+ :SDL_exp,
145
+ :SDL_expf,
146
+ :SDL_fabs,
147
+ :SDL_fabsf,
148
+ :SDL_floor,
149
+ :SDL_floorf,
150
+ :SDL_trunc,
151
+ :SDL_truncf,
152
+ :SDL_fmod,
153
+ :SDL_fmodf,
154
+ :SDL_log,
155
+ :SDL_logf,
156
+ :SDL_log10,
157
+ :SDL_log10f,
158
+ :SDL_pow,
159
+ :SDL_powf,
160
+ :SDL_round,
161
+ :SDL_roundf,
162
+ :SDL_lround,
163
+ :SDL_lroundf,
164
+ :SDL_scalbn,
165
+ :SDL_scalbnf,
166
+ :SDL_sin,
167
+ :SDL_sinf,
168
+ :SDL_sqrt,
169
+ :SDL_sqrtf,
170
+ :SDL_tan,
171
+ :SDL_tanf,
172
+ :SDL_iconv_open,
173
+ :SDL_iconv_close,
174
+ :SDL_iconv,
175
+ :SDL_iconv_string,
176
+ ]
177
+ apis = {
178
+ :SDL_malloc => :malloc,
179
+ :SDL_calloc => :calloc,
180
+ :SDL_realloc => :realloc,
181
+ :SDL_free => :free,
182
+ :SDL_GetMemoryFunctions => :GetMemoryFunctions,
183
+ :SDL_SetMemoryFunctions => :SetMemoryFunctions,
184
+ :SDL_GetNumAllocations => :GetNumAllocations,
185
+ :SDL_getenv => :getenv,
186
+ :SDL_setenv => :setenv,
187
+ :SDL_qsort => :qsort,
188
+ :SDL_abs => :abs,
189
+ :SDL_isalpha => :isalpha,
190
+ :SDL_isalnum => :isalnum,
191
+ :SDL_isblank => :isblank,
192
+ :SDL_iscntrl => :iscntrl,
193
+ :SDL_isdigit => :isdigit,
194
+ :SDL_isxdigit => :isxdigit,
195
+ :SDL_ispunct => :ispunct,
196
+ :SDL_isspace => :isspace,
197
+ :SDL_isupper => :isupper,
198
+ :SDL_islower => :islower,
199
+ :SDL_isprint => :isprint,
200
+ :SDL_isgraph => :isgraph,
201
+ :SDL_toupper => :toupper,
202
+ :SDL_tolower => :tolower,
203
+ :SDL_crc32 => :crc32,
204
+ :SDL_memset => :memset,
205
+ :SDL_memcpy => :memcpy,
206
+ :SDL_memmove => :memmove,
207
+ :SDL_memcmp => :memcmp,
208
+ :SDL_wcslen => :wcslen,
209
+ :SDL_wcslcpy => :wcslcpy,
210
+ :SDL_wcslcat => :wcslcat,
211
+ :SDL_wcsdup => :wcsdup,
212
+ :SDL_wcsstr => :wcsstr,
213
+ :SDL_wcscmp => :wcscmp,
214
+ :SDL_wcsncmp => :wcsncmp,
215
+ :SDL_wcscasecmp => :wcscasecmp,
216
+ :SDL_wcsncasecmp => :wcsncasecmp,
217
+ :SDL_strlen => :strlen,
218
+ :SDL_strlcpy => :strlcpy,
219
+ :SDL_utf8strlcpy => :utf8strlcpy,
220
+ :SDL_strlcat => :strlcat,
221
+ :SDL_strdup => :strdup,
222
+ :SDL_strrev => :strrev,
223
+ :SDL_strupr => :strupr,
224
+ :SDL_strlwr => :strlwr,
225
+ :SDL_strchr => :strchr,
226
+ :SDL_strrchr => :strrchr,
227
+ :SDL_strstr => :strstr,
228
+ :SDL_strtokr => :strtokr,
229
+ :SDL_utf8strlen => :utf8strlen,
230
+ :SDL_itoa => :itoa,
231
+ :SDL_uitoa => :uitoa,
232
+ :SDL_ltoa => :ltoa,
233
+ :SDL_ultoa => :ultoa,
234
+ :SDL_lltoa => :lltoa,
235
+ :SDL_ulltoa => :ulltoa,
236
+ :SDL_atoi => :atoi,
237
+ :SDL_atof => :atof,
238
+ :SDL_strtol => :strtol,
239
+ :SDL_strtoul => :strtoul,
240
+ :SDL_strtoll => :strtoll,
241
+ :SDL_strtoull => :strtoull,
242
+ :SDL_strtod => :strtod,
243
+ :SDL_strcmp => :strcmp,
244
+ :SDL_strncmp => :strncmp,
245
+ :SDL_strcasecmp => :strcasecmp,
246
+ :SDL_strncasecmp => :strncasecmp,
247
+ :SDL_sscanf => :sscanf,
248
+ :SDL_vsscanf => :vsscanf,
249
+ :SDL_snprintf => :snprintf,
250
+ :SDL_vsnprintf => :vsnprintf,
251
+ :SDL_asprintf => :asprintf,
252
+ :SDL_vasprintf => :vasprintf,
253
+ :SDL_acos => :acos,
254
+ :SDL_acosf => :acosf,
255
+ :SDL_asin => :asin,
256
+ :SDL_asinf => :asinf,
257
+ :SDL_atan => :atan,
258
+ :SDL_atanf => :atanf,
259
+ :SDL_atan2 => :atan2,
260
+ :SDL_atan2f => :atan2f,
261
+ :SDL_ceil => :ceil,
262
+ :SDL_ceilf => :ceilf,
263
+ :SDL_copysign => :copysign,
264
+ :SDL_copysignf => :copysignf,
265
+ :SDL_cos => :cos,
266
+ :SDL_cosf => :cosf,
267
+ :SDL_exp => :exp,
268
+ :SDL_expf => :expf,
269
+ :SDL_fabs => :fabs,
270
+ :SDL_fabsf => :fabsf,
271
+ :SDL_floor => :floor,
272
+ :SDL_floorf => :floorf,
273
+ :SDL_trunc => :trunc,
274
+ :SDL_truncf => :truncf,
275
+ :SDL_fmod => :fmod,
276
+ :SDL_fmodf => :fmodf,
277
+ :SDL_log => :log,
278
+ :SDL_logf => :logf,
279
+ :SDL_log10 => :log10,
280
+ :SDL_log10f => :log10f,
281
+ :SDL_pow => :pow,
282
+ :SDL_powf => :powf,
283
+ :SDL_round => :round,
284
+ :SDL_roundf => :roundf,
285
+ :SDL_lround => :lround,
286
+ :SDL_lroundf => :lroundf,
287
+ :SDL_scalbn => :scalbn,
288
+ :SDL_scalbnf => :scalbnf,
289
+ :SDL_sin => :sin,
290
+ :SDL_sinf => :sinf,
291
+ :SDL_sqrt => :sqrt,
292
+ :SDL_sqrtf => :sqrtf,
293
+ :SDL_tan => :tan,
294
+ :SDL_tanf => :tanf,
295
+ :SDL_iconv_open => :iconv_open,
296
+ :SDL_iconv_close => :iconv_close,
297
+ :SDL_iconv => :iconv,
298
+ :SDL_iconv_string => :iconv_string,
299
+ }
300
+ args = {
301
+ :SDL_malloc => [:int],
302
+ :SDL_calloc => [:int, :int],
303
+ :SDL_realloc => [:pointer, :int],
304
+ :SDL_free => [:pointer],
305
+ :SDL_GetMemoryFunctions => [:pointer, :pointer, :pointer, :pointer],
306
+ :SDL_SetMemoryFunctions => [:SDL_malloc_func, :SDL_calloc_func, :SDL_realloc_func, :SDL_free_func],
307
+ :SDL_GetNumAllocations => [],
308
+ :SDL_getenv => [:pointer],
309
+ :SDL_setenv => [:pointer, :pointer, :int],
310
+ :SDL_qsort => [:pointer, :int, :int, :pointer],
311
+ :SDL_abs => [:int],
312
+ :SDL_isalpha => [:int],
313
+ :SDL_isalnum => [:int],
314
+ :SDL_isblank => [:int],
315
+ :SDL_iscntrl => [:int],
316
+ :SDL_isdigit => [:int],
317
+ :SDL_isxdigit => [:int],
318
+ :SDL_ispunct => [:int],
319
+ :SDL_isspace => [:int],
320
+ :SDL_isupper => [:int],
321
+ :SDL_islower => [:int],
322
+ :SDL_isprint => [:int],
323
+ :SDL_isgraph => [:int],
324
+ :SDL_toupper => [:int],
325
+ :SDL_tolower => [:int],
326
+ :SDL_crc32 => [:uint, :pointer, :int],
327
+ :SDL_memset => [:pointer, :int, :int],
328
+ :SDL_memcpy => [:pointer, :pointer, :int],
329
+ :SDL_memmove => [:pointer, :pointer, :int],
330
+ :SDL_memcmp => [:pointer, :pointer, :int],
331
+ :SDL_wcslen => [:pointer],
332
+ :SDL_wcslcpy => [:pointer, :pointer, :int],
333
+ :SDL_wcslcat => [:pointer, :pointer, :int],
334
+ :SDL_wcsdup => [:pointer],
335
+ :SDL_wcsstr => [:pointer, :pointer],
336
+ :SDL_wcscmp => [:pointer, :pointer],
337
+ :SDL_wcsncmp => [:pointer, :pointer, :int],
338
+ :SDL_wcscasecmp => [:pointer, :pointer],
339
+ :SDL_wcsncasecmp => [:pointer, :pointer, :int],
340
+ :SDL_strlen => [:pointer],
341
+ :SDL_strlcpy => [:pointer, :pointer, :int],
342
+ :SDL_utf8strlcpy => [:pointer, :pointer, :int],
343
+ :SDL_strlcat => [:pointer, :pointer, :int],
344
+ :SDL_strdup => [:pointer],
345
+ :SDL_strrev => [:pointer],
346
+ :SDL_strupr => [:pointer],
347
+ :SDL_strlwr => [:pointer],
348
+ :SDL_strchr => [:pointer, :int],
349
+ :SDL_strrchr => [:pointer, :int],
350
+ :SDL_strstr => [:pointer, :pointer],
351
+ :SDL_strtokr => [:pointer, :pointer, :pointer],
352
+ :SDL_utf8strlen => [:pointer],
353
+ :SDL_itoa => [:int, :pointer, :int],
354
+ :SDL_uitoa => [:uint, :pointer, :int],
355
+ :SDL_ltoa => [:long, :pointer, :int],
356
+ :SDL_ultoa => [:ulong, :pointer, :int],
357
+ :SDL_lltoa => [:long_long, :pointer, :int],
358
+ :SDL_ulltoa => [:ulong_long, :pointer, :int],
359
+ :SDL_atoi => [:pointer],
360
+ :SDL_atof => [:pointer],
361
+ :SDL_strtol => [:pointer, :pointer, :int],
362
+ :SDL_strtoul => [:pointer, :pointer, :int],
363
+ :SDL_strtoll => [:pointer, :pointer, :int],
364
+ :SDL_strtoull => [:pointer, :pointer, :int],
365
+ :SDL_strtod => [:pointer, :pointer],
366
+ :SDL_strcmp => [:pointer, :pointer],
367
+ :SDL_strncmp => [:pointer, :pointer, :int],
368
+ :SDL_strcasecmp => [:pointer, :pointer],
369
+ :SDL_strncasecmp => [:pointer, :pointer, :int],
370
+ :SDL_sscanf => [:pointer, :pointer],
371
+ :SDL_vsscanf => [:pointer, :pointer, :int],
372
+ :SDL_snprintf => [:pointer, :int, :pointer],
373
+ :SDL_vsnprintf => [:pointer, :int, :pointer, :int],
374
+ :SDL_asprintf => [:pointer, :pointer],
375
+ :SDL_vasprintf => [:pointer, :pointer, :int],
376
+ :SDL_acos => [:double],
377
+ :SDL_acosf => [:float],
378
+ :SDL_asin => [:double],
379
+ :SDL_asinf => [:float],
380
+ :SDL_atan => [:double],
381
+ :SDL_atanf => [:float],
382
+ :SDL_atan2 => [:double, :double],
383
+ :SDL_atan2f => [:float, :float],
384
+ :SDL_ceil => [:double],
385
+ :SDL_ceilf => [:float],
386
+ :SDL_copysign => [:double, :double],
387
+ :SDL_copysignf => [:float, :float],
388
+ :SDL_cos => [:double],
389
+ :SDL_cosf => [:float],
390
+ :SDL_exp => [:double],
391
+ :SDL_expf => [:float],
392
+ :SDL_fabs => [:double],
393
+ :SDL_fabsf => [:float],
394
+ :SDL_floor => [:double],
395
+ :SDL_floorf => [:float],
396
+ :SDL_trunc => [:double],
397
+ :SDL_truncf => [:float],
398
+ :SDL_fmod => [:double, :double],
399
+ :SDL_fmodf => [:float, :float],
400
+ :SDL_log => [:double],
401
+ :SDL_logf => [:float],
402
+ :SDL_log10 => [:double],
403
+ :SDL_log10f => [:float],
404
+ :SDL_pow => [:double, :double],
405
+ :SDL_powf => [:float, :float],
406
+ :SDL_round => [:double],
407
+ :SDL_roundf => [:float],
408
+ :SDL_lround => [:double],
409
+ :SDL_lroundf => [:float],
410
+ :SDL_scalbn => [:double, :int],
411
+ :SDL_scalbnf => [:float, :int],
412
+ :SDL_sin => [:double],
413
+ :SDL_sinf => [:float],
414
+ :SDL_sqrt => [:double],
415
+ :SDL_sqrtf => [:float],
416
+ :SDL_tan => [:double],
417
+ :SDL_tanf => [:float],
418
+ :SDL_iconv_open => [:pointer, :pointer],
419
+ :SDL_iconv_close => [:pointer],
420
+ :SDL_iconv => [:pointer, :pointer, :pointer, :pointer, :pointer],
421
+ :SDL_iconv_string => [:pointer, :pointer, :pointer, :int],
422
+ }
423
+ retvals = {
424
+ :SDL_malloc => :pointer,
425
+ :SDL_calloc => :pointer,
426
+ :SDL_realloc => :pointer,
427
+ :SDL_free => :void,
428
+ :SDL_GetMemoryFunctions => :void,
429
+ :SDL_SetMemoryFunctions => :int,
430
+ :SDL_GetNumAllocations => :int,
431
+ :SDL_getenv => :pointer,
432
+ :SDL_setenv => :int,
433
+ :SDL_qsort => :void,
434
+ :SDL_abs => :int,
435
+ :SDL_isalpha => :int,
436
+ :SDL_isalnum => :int,
437
+ :SDL_isblank => :int,
438
+ :SDL_iscntrl => :int,
439
+ :SDL_isdigit => :int,
440
+ :SDL_isxdigit => :int,
441
+ :SDL_ispunct => :int,
442
+ :SDL_isspace => :int,
443
+ :SDL_isupper => :int,
444
+ :SDL_islower => :int,
445
+ :SDL_isprint => :int,
446
+ :SDL_isgraph => :int,
447
+ :SDL_toupper => :int,
448
+ :SDL_tolower => :int,
449
+ :SDL_crc32 => :uint,
450
+ :SDL_memset => :pointer,
451
+ :SDL_memcpy => :pointer,
452
+ :SDL_memmove => :pointer,
453
+ :SDL_memcmp => :int,
454
+ :SDL_wcslen => :int,
455
+ :SDL_wcslcpy => :int,
456
+ :SDL_wcslcat => :int,
457
+ :SDL_wcsdup => :pointer,
458
+ :SDL_wcsstr => :pointer,
459
+ :SDL_wcscmp => :int,
460
+ :SDL_wcsncmp => :int,
461
+ :SDL_wcscasecmp => :int,
462
+ :SDL_wcsncasecmp => :int,
463
+ :SDL_strlen => :int,
464
+ :SDL_strlcpy => :int,
465
+ :SDL_utf8strlcpy => :int,
466
+ :SDL_strlcat => :int,
467
+ :SDL_strdup => :pointer,
468
+ :SDL_strrev => :pointer,
469
+ :SDL_strupr => :pointer,
470
+ :SDL_strlwr => :pointer,
471
+ :SDL_strchr => :pointer,
472
+ :SDL_strrchr => :pointer,
473
+ :SDL_strstr => :pointer,
474
+ :SDL_strtokr => :pointer,
475
+ :SDL_utf8strlen => :int,
476
+ :SDL_itoa => :pointer,
477
+ :SDL_uitoa => :pointer,
478
+ :SDL_ltoa => :pointer,
479
+ :SDL_ultoa => :pointer,
480
+ :SDL_lltoa => :pointer,
481
+ :SDL_ulltoa => :pointer,
482
+ :SDL_atoi => :int,
483
+ :SDL_atof => :double,
484
+ :SDL_strtol => :long,
485
+ :SDL_strtoul => :ulong,
486
+ :SDL_strtoll => :long_long,
487
+ :SDL_strtoull => :ulong_long,
488
+ :SDL_strtod => :double,
489
+ :SDL_strcmp => :int,
490
+ :SDL_strncmp => :int,
491
+ :SDL_strcasecmp => :int,
492
+ :SDL_strncasecmp => :int,
493
+ :SDL_sscanf => :int,
494
+ :SDL_vsscanf => :int,
495
+ :SDL_snprintf => :int,
496
+ :SDL_vsnprintf => :int,
497
+ :SDL_asprintf => :int,
498
+ :SDL_vasprintf => :int,
499
+ :SDL_acos => :double,
500
+ :SDL_acosf => :float,
501
+ :SDL_asin => :double,
502
+ :SDL_asinf => :float,
503
+ :SDL_atan => :double,
504
+ :SDL_atanf => :float,
505
+ :SDL_atan2 => :double,
506
+ :SDL_atan2f => :float,
507
+ :SDL_ceil => :double,
508
+ :SDL_ceilf => :float,
509
+ :SDL_copysign => :double,
510
+ :SDL_copysignf => :float,
511
+ :SDL_cos => :double,
512
+ :SDL_cosf => :float,
513
+ :SDL_exp => :double,
514
+ :SDL_expf => :float,
515
+ :SDL_fabs => :double,
516
+ :SDL_fabsf => :float,
517
+ :SDL_floor => :double,
518
+ :SDL_floorf => :float,
519
+ :SDL_trunc => :double,
520
+ :SDL_truncf => :float,
521
+ :SDL_fmod => :double,
522
+ :SDL_fmodf => :float,
523
+ :SDL_log => :double,
524
+ :SDL_logf => :float,
525
+ :SDL_log10 => :double,
526
+ :SDL_log10f => :float,
527
+ :SDL_pow => :double,
528
+ :SDL_powf => :float,
529
+ :SDL_round => :double,
530
+ :SDL_roundf => :float,
531
+ :SDL_lround => :long,
532
+ :SDL_lroundf => :long,
533
+ :SDL_scalbn => :double,
534
+ :SDL_scalbnf => :float,
535
+ :SDL_sin => :double,
536
+ :SDL_sinf => :float,
537
+ :SDL_sqrt => :double,
538
+ :SDL_sqrtf => :float,
539
+ :SDL_tan => :double,
540
+ :SDL_tanf => :float,
541
+ :SDL_iconv_open => :pointer,
542
+ :SDL_iconv_close => :int,
543
+ :SDL_iconv => :int,
544
+ :SDL_iconv_string => :pointer,
545
+ }
546
+ symbols.each do |sym|
547
+ begin
548
+ attach_function apis[sym], sym, args[sym], retvals[sym]
549
+ rescue FFI::NotFoundError => error
550
+ $stderr.puts("[Warning] Failed to import #{sym} (#{error}).") if output_error
551
+ end
552
+ end
553
+ end
554
+
555
+ end
556
+