112 lines
3.3 KiB
C++
112 lines
3.3 KiB
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2020 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef XENIA_BASE_PLATFORM_H_
|
|
#define XENIA_BASE_PLATFORM_H_
|
|
|
|
// This file contains the main platform switches used by xenia as well as any
|
|
// fixups required to normalize the environment. Everything in here should be
|
|
// largely portable.
|
|
// Platform-specific headers, like platform_win.h, are used to house any
|
|
// super platform-specific stuff that implies code is not platform-agnostic.
|
|
//
|
|
// NOTE: ordering matters here as sometimes multiple flags are defined on
|
|
// certain platforms.
|
|
//
|
|
// Great resource on predefined macros:
|
|
// https://sourceforge.net/p/predef/wiki/OperatingSystems/
|
|
// Original link: https://predef.sourceforge.net/preos.html
|
|
|
|
#if defined(__APPLE__)
|
|
#include <TargetConditionals.h>
|
|
#endif
|
|
|
|
#if defined(TARGET_OS_MAC) && TARGET_OS_MAC
|
|
#define XE_PLATFORM_MAC 1
|
|
#elif defined(WIN32) || defined(_WIN32)
|
|
#define XE_PLATFORM_WIN32 1
|
|
#elif defined(__ANDROID__)
|
|
#define XE_PLATFORM_ANDROID 1
|
|
#define XE_PLATFORM_LINUX 1
|
|
#elif defined(__gnu_linux__)
|
|
#define XE_PLATFORM_GNU_LINUX 1
|
|
#define XE_PLATFORM_LINUX 1
|
|
#else
|
|
#error Unsupported target OS.
|
|
#endif
|
|
|
|
#if defined(__clang__)
|
|
#define XE_COMPILER_CLANG 1
|
|
#elif defined(__GNUC__)
|
|
#define XE_COMPILER_GNUC 1
|
|
#elif defined(_MSC_VER)
|
|
#define XE_COMPILER_MSVC 1
|
|
#elif defined(__MINGW32)
|
|
#define XE_COMPILER_MINGW32 1
|
|
#elif defined(__INTEL_COMPILER)
|
|
#define XE_COMPILER_INTEL 1
|
|
#else
|
|
#define XE_COMPILER_UNKNOWN 1
|
|
#endif
|
|
|
|
#if defined(_M_AMD64) || defined(__amd64__)
|
|
#define XE_ARCH_AMD64 1
|
|
#elif defined(_M_ARM64) || defined(__aarch64__)
|
|
#define XE_ARCH_ARM64 1
|
|
#elif defined(_M_IX86) || defined(__i386__) || defined(_M_ARM) || \
|
|
defined(__arm__)
|
|
#error Xenia is not supported on 32-bit platforms.
|
|
#elif defined(_M_PPC) || defined(__powerpc__)
|
|
#define XE_ARCH_PPC 1
|
|
#endif
|
|
|
|
#if XE_PLATFORM_WIN32
|
|
#define strdup _strdup
|
|
#define strcasecmp _stricmp
|
|
#define strncasecmp _strnicmp
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX // Don't want windows.h including min/max macros.
|
|
#endif // XE_PLATFORM_WIN32
|
|
|
|
#if XE_PLATFORM_WIN32
|
|
#include <intrin.h>
|
|
#elif XE_ARCH_AMD64
|
|
#include <x86intrin.h>
|
|
#endif // XE_PLATFORM_WIN32
|
|
|
|
#if XE_PLATFORM_MAC
|
|
#include <libkern/OSByteOrder.h>
|
|
#endif // XE_PLATFORM_MAC
|
|
|
|
#if XE_COMPILER_MSVC
|
|
#define _XEPACKEDSCOPE(body) __pragma(pack(push, 1)) body __pragma(pack(pop));
|
|
#else
|
|
#define _XEPACKEDSCOPE(body) \
|
|
_Pragma("pack(push, 1)") body; \
|
|
_Pragma("pack(pop)");
|
|
#endif // XE_PLATFORM_WIN32
|
|
|
|
#define XEPACKEDSTRUCT(name, value) _XEPACKEDSCOPE(struct name value)
|
|
#define XEPACKEDSTRUCTANONYMOUS(value) _XEPACKEDSCOPE(struct value)
|
|
#define XEPACKEDUNION(name, value) _XEPACKEDSCOPE(union name value)
|
|
|
|
namespace xe {
|
|
|
|
#if XE_PLATFORM_WIN32
|
|
const char kPathSeparator = '\\';
|
|
#else
|
|
const char kPathSeparator = '/';
|
|
#endif // XE_PLATFORM_WIN32
|
|
|
|
const char kGuestPathSeparator = '\\';
|
|
|
|
} // namespace xe
|
|
|
|
#endif // XENIA_BASE_PLATFORM_H_
|