22 #ifndef COMMON_SCUMMSYS_H 23 #define COMMON_SCUMMSYS_H 25 #ifndef __has_feature // Optional of course. 26 #define __has_feature(x) 0 // Compatibility with non-clang compilers. 33 #define GCC_ATLEAST(major, minor) (__GNUC__ > (major) || (__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))) 35 #define GCC_ATLEAST(major, minor) 0 38 #if defined(NONSTANDARD_PORT) 45 #else // defined(NONSTANDARD_PORT) 49 #if defined(_MSC_VER) && _MSC_VER <= 1800 62 inline int vsnprintf_msvc(
char *str,
size_t size,
const char *format, va_list args) {
66 int retValue = _vsnprintf(str, size, format, args);
71 #define vsnprintf vsnprintf_msvc 79 inline int snprintf(
char *str,
size_t size,
const char *format, ...) {
81 va_start(args, format);
82 int len = vsnprintf(str, size, format, args);
88 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 115 #if defined(__QNXNTO__) 132 #define __STDC_CONSTANT_MACROS 133 #define __STDC_FORMAT_MACROS 134 #define __STDC_LIMIT_MACROS 135 #include <inttypes.h> 138 #if defined(MACOSX) && defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1050 139 #undef __PRI_8_LENGTH_MODIFIER__ 140 #undef __PRI_64_LENGTH_MODIFIER__ 141 #undef __SCN_64_LENGTH_MODIFIER__ 142 #define __PRI_8_LENGTH_MODIFIER__ "hh" 143 #define __PRI_64_LENGTH_MODIFIER__ "ll" 144 #define __SCN_64_LENGTH_MODIFIER__ "ll" 152 #define _USE_MATH_DEFINES 168 #ifndef STATIC_ASSERT 169 #if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER > 1600) 177 #define STATIC_ASSERT(expression, message) \ 178 static_assert((expression), #message) 187 #define STATIC_ASSERT(expression, message) \ 189 extern int STATIC_ASSERT_##message[(expression) ? 1 : -1]; \ 190 (void)(STATIC_ASSERT_##message); \ 201 #define M_E 2.7182818284590452354 205 #define M_LOG2E 1.4426950408889634074 209 #define M_LOG10E 0.43429448190325182765 213 #define M_LN2 0.69314718055994530942 217 #define M_LN10 2.30258509299404568402 221 #define M_PI 3.14159265358979323846 225 #define M_PI_2 1.57079632679489661923 229 #define M_PI_4 0.78539816339744830962 233 #define M_1_PI 0.31830988618379067154 237 #define M_2_PI 0.63661977236758134308 241 #define M_2_SQRTPI 1.12837916709551257390 245 #define M_SQRT2 1.41421356237309504880 249 #define M_SQRT1_2 0.70710678118654752440 253 #if defined(HAVE_CONFIG_H) 284 #define SCUMMVM_USE_PRAGMA_PACK 289 #if !defined(HAVE_CONFIG_H) 295 #if __has_feature(undefined_behavior_sanitizer) 296 #define SCUMM_NEED_ALIGNMENT 299 #if defined(__DC__) || \ 301 defined(__3DS__) || \ 305 #define SCUMM_LITTLE_ENDIAN 306 #define SCUMM_NEED_ALIGNMENT 308 #elif defined(_MSC_VER) || defined(__MINGW32__) 310 #define SCUMM_LITTLE_ENDIAN 312 #elif defined(__MORPHOS__) || defined(__amigaos4__) || defined(__N64__) || defined(__WII__) 314 #define SCUMM_BIG_ENDIAN 315 #define SCUMM_NEED_ALIGNMENT 317 #elif defined(SDL_BACKEND) 321 #include <SDL_endian.h> 323 #if SDL_BYTEORDER == SDL_LIL_ENDIAN 324 #define SCUMM_LITTLE_ENDIAN 325 #elif SDL_BYTEORDER == SDL_BIG_ENDIAN 326 #define SCUMM_BIG_ENDIAN 328 #error Neither SDL_BIG_ENDIAN nor SDL_LIL_ENDIAN is set. 333 #error No system type defined, host endianess unknown. 338 #if !defined(SCUMM_FLOAT_WORD_LITTLE_ENDIAN) && !defined(SCUMM_FLOAT_WORD_BIG_ENDIAN) 340 #if defined(__ORDER_LITTLE_ENDIAN__) && defined(__ORDER_BIG_ENDIAN__) && defined(__FLOAT_WORD_ORDER__) 342 #if (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__) 343 #define SCUMM_FLOAT_WORD_LITTLE_ENDIAN 344 #elif (__FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__) 345 #define SCUMM_FLOAT_WORD_BIG_ENDIAN 347 #error Unsupported endianness 351 #ifdef SCUMM_LITTLE_ENDIAN 352 #define SCUMM_FLOAT_WORD_LITTLE_ENDIAN 354 #define SCUMM_FLOAT_WORD_BIG_ENDIAN 360 #if defined(USE_TREMOR) && !defined(USE_VORBIS) 361 #define USE_VORBIS // make sure this one is defined together with USE_TREMOR! 368 #if defined(__GNUC__) || defined(__INTEL_COMPILER) 369 #if defined(__USE_MINGW_ANSI_STDIO) && __USE_MINGW_ANSI_STDIO && !defined(__clang__) 370 #define GCC_PRINTF(x,y) __attribute__((__format__(__gnu_printf__, x, y))) 372 #define GCC_PRINTF(x,y) __attribute__((__format__(__printf__, x, y))) 375 #define GCC_PRINTF(x,y) 380 #if defined(_MSC_VER) && _MSC_VER > 1400 381 #define MSVC_PRINTF _Printf_format_string_ 387 #ifndef PACKED_STRUCT 388 #if defined(__GNUC__) || defined(__INTEL_COMPILER) 389 #define PACKED_STRUCT __attribute__((__packed__)) 391 #define PACKED_STRUCT 396 #if defined(_MSC_VER) 397 #define FORCEINLINE __forceinline 398 #elif defined(__GNUC__) 399 #define FORCEINLINE inline __attribute__((__always_inline__)) 401 #define FORCEINLINE inline 405 #ifndef PLUGIN_EXPORT 406 #if defined(_MSC_VER) || defined(__MINGW32__) 407 #define PLUGIN_EXPORT __declspec(dllexport) 409 #define PLUGIN_EXPORT 414 #if defined(_MSC_VER) 415 #define NORETURN_PRE __declspec(noreturn) 416 #elif defined(__GNUC__) 417 #define NORETURN_PRE __attribute__((__noreturn__)) 423 #ifndef NORETURN_POST 424 #if defined(__INTEL_COMPILER) 425 #define NORETURN_POST __attribute__((__noreturn__)) 427 #define NORETURN_POST 431 #ifndef WARN_UNUSED_RESULT 432 #if __cplusplus >= 201703L 433 #define WARN_UNUSED_RESULT [[nodiscard]] 434 #elif defined(__GNUC__) 435 #define WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) 436 #elif defined(_Check_return_) 437 #define WARN_UNUSED_RESULT _Check_return_ 439 #define WARN_UNUSED_RESULT 443 #ifndef WARN_DEPRECATED 444 #if __cplusplus >= 201703L 445 #define WARN_DEPRECATED(msg) [[deprecated(msg)]] 446 #elif defined(__GNUC__) 447 #define WARN_DEPRECATED(msg) __attribute__((__deprecated__(msg))) 448 #elif defined(_MSC_VER) 449 #define WARN_DEPRECATED(msg) __declspec(deprecated(msg)) 451 #define WARN_DEPRECATED(msg) 456 #if defined(__N64__) || defined(__DS__) || defined(__3DS__) 457 #define STRINGBUFLEN 256 459 #define STRINGBUFLEN 1024 464 #define MAXPATHLEN 256 467 #ifndef scumm_va_copy 469 #define scumm_va_copy va_copy 470 #elif defined(__va_copy) 471 #define scumm_va_copy __va_copy 472 #elif defined(_MSC_VER) 473 #define scumm_va_copy(dst, src) ((dst) = (src)) 475 #error scumm_va_copy undefined for this port 485 #ifndef SCUMMVM_DONT_DEFINE_TYPES 486 typedef unsigned char byte;
487 typedef unsigned int uint;
489 typedef uint8_t uint8;
491 typedef uint16_t uint16;
492 typedef int16_t int16;
493 #if defined(__3DS__) || defined(__DC__) || defined(__PSP__) 498 typedef unsigned int uint32;
500 #elif defined(__amigaos4__) || defined(__MORPHOS__) 506 typedef unsigned long uint32;
507 typedef signed long int32;
509 typedef uint32_t uint32;
510 typedef int32_t int32;
512 typedef uint64_t uint64;
513 typedef int64_t int64;
514 typedef uintptr_t uintptr;
515 typedef intptr_t intptr;
521 #if defined(NO_CXX11_NULLPTR_T) 523 typedef decltype(
nullptr) nullptr_t;
531 #if defined(NO_CXX11_INITIALIZER_LIST) 533 template<
class T>
class initializer_list {
535 typedef T value_type;
536 typedef const T &reference;
537 typedef const T &const_reference;
538 typedef size_t size_type;
539 typedef const T *iterator;
540 typedef const T *const_iterator;
542 constexpr initializer_list() noexcept = default;
543 constexpr
size_t size() const noexcept {
return _size; };
544 constexpr
const T *begin() const noexcept {
return _begin; };
545 constexpr
const T *end() const noexcept {
return _begin + _size; }
549 const T *_begin = {
nullptr };
550 size_t _size = { 0 };
553 constexpr initializer_list(
const T* t,
size_t s) noexcept : _begin(t) , _size(s) {}
556 template<
class T> constexpr
const T* begin(initializer_list<T> il) noexcept {
560 template<
class T> constexpr
const T* end(initializer_list<T> il) noexcept {
567 #include <initializer_list> 569 #endif // NO_CXX11_INITIALIZER_LIST 580 #define toupper(c) __extension__ ({ auto _x = ((c) & 0xFF); (_x >= 97 && _x <= 122) ? (_x - 32) : _x; }) 582 #elif defined(__PSP__) 585 #include "backends/platform/psp/memory.h" 588 #define memcpy(dst, src, size) psp_memcpy(dst, src, size)
Definition: algorithm.h:37