axmol/core/platform/PlatformConfig.h

173 lines
5.2 KiB
C
Raw Normal View History

2019-11-23 20:27:39 +08:00
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2013-2017 Chukong Technologies
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2021-11-16 16:28:31 +08:00
Copyright (c) 2021 Bytedance Inc.
2019-11-23 20:27:39 +08:00
2022-10-01 16:24:52 +08:00
https://axmolengine.github.io/
2019-11-23 20:27:39 +08:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
2022-07-16 10:43:05 +08:00
#ifndef __BASE_AX_PLATFORM_CONFIG_H__
#define __BASE_AX_PLATFORM_CONFIG_H__
2019-11-23 20:27:39 +08:00
/// @cond DO_NOT_SHOW
#if __has_include(<winapifamily.h>)
# include <winapifamily.h>
#endif
2019-11-23 20:27:39 +08:00
/**
Config of cocos2d-x project, per target platform.
THIS FILE MUST NOT INCLUDE ANY OTHER FILE
*/
//////////////////////////////////////////////////////////////////////////
// pre configure
//////////////////////////////////////////////////////////////////////////
// define supported target platform macro which CC uses.
2022-07-16 10:43:05 +08:00
#define AX_PLATFORM_UNKNOWN 0
#define AX_PLATFORM_IOS 1
#define AX_PLATFORM_ANDROID 2
#define AX_PLATFORM_WIN32 3
#define AX_PLATFORM_LINUX 5
#define AX_PLATFORM_MAC 8
#define AX_PLATFORM_WINRT 13
2019-11-23 20:27:39 +08:00
// Determine target platform by compile environment macro.
2022-07-16 10:43:05 +08:00
#define AX_TARGET_PLATFORM AX_PLATFORM_UNKNOWN
2019-11-23 20:27:39 +08:00
// Apple: Mac and iOS
2021-12-25 10:04:45 +08:00
#if defined(__APPLE__) && !defined(__ANDROID__) // exclude android for binding generator.
# include <TargetConditionals.h>
# if TARGET_OS_IPHONE // TARGET_OS_IPHONE includes TARGET_OS_IOS TARGET_OS_TV and TARGET_OS_WATCH. see
// TargetConditionals.h
2022-07-16 10:43:05 +08:00
# undef AX_TARGET_PLATFORM
# define AX_TARGET_PLATFORM AX_PLATFORM_IOS
2021-12-25 10:04:45 +08:00
# elif TARGET_OS_MAC
2022-07-16 10:43:05 +08:00
# undef AX_TARGET_PLATFORM
# define AX_TARGET_PLATFORM AX_PLATFORM_MAC
2021-12-25 10:04:45 +08:00
# endif
2019-11-23 20:27:39 +08:00
#endif
// win32
#if defined(_WIN32) && WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP
2022-07-16 10:43:05 +08:00
# undef AX_TARGET_PLATFORM
# define AX_TARGET_PLATFORM AX_PLATFORM_WIN32
2019-11-23 20:27:39 +08:00
#endif
// WinRT (Windows 10.0 UWP App)
#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP)
// Windows Store or Universal Windows Platform
# undef AX_TARGET_PLATFORM
# define AX_TARGET_PLATFORM AX_PLATFORM_WINRT
#endif
2019-11-23 20:27:39 +08:00
// linux
2022-11-01 18:31:31 +08:00
#if defined(__linux__)
2022-07-16 10:43:05 +08:00
# undef AX_TARGET_PLATFORM
# define AX_TARGET_PLATFORM AX_PLATFORM_LINUX
2019-11-23 20:27:39 +08:00
#endif
2022-11-01 18:31:31 +08:00
// android, override linux
#if defined(__ANDROID__) || defined(ANDROID)
2022-11-01 18:31:31 +08:00
# undef AX_TARGET_PLATFORM
# define AX_TARGET_PLATFORM AX_PLATFORM_ANDROID
#endif
2019-11-23 20:27:39 +08:00
//////////////////////////////////////////////////////////////////////////
// post configure
//////////////////////////////////////////////////////////////////////////
// check user set platform
2022-07-16 10:43:05 +08:00
#if !AX_TARGET_PLATFORM
2021-12-25 10:04:45 +08:00
# error "Cannot recognize the target platform; are you targeting an unsupported platform?"
2019-11-23 20:27:39 +08:00
#endif
2022-07-16 10:43:05 +08:00
#if (AX_TARGET_PLATFORM == AX_PLATFORM_WIN32)
2021-12-25 10:04:45 +08:00
# ifndef __MINGW32__
# pragma warning(disable : 4127)
# endif
2022-07-16 10:43:05 +08:00
#endif // AX_PLATFORM_WIN32
2019-11-23 20:27:39 +08:00
2021-12-25 10:04:45 +08:00
/*
2023-08-13 23:58:18 +08:00
The google/angle is library which translate native graphics API to GLES2+ APIs
repo: https://github.com/google/angle
windows: d3d9/d3d11/Desktop GL/Vulkan
macOS/iOS: Metal
Android: GLES/Vulkan
Linux: Desktop GL/Vulkan
*/
2023-08-13 23:58:18 +08:00
#ifndef AX_USE_ANGLE
# define AX_USE_ANGLE 0
#endif
2023-08-13 23:58:18 +08:00
#if ((AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID) || (AX_TARGET_PLATFORM == AX_PLATFORM_IOS) || (AX_TARGET_PLATFORM == AX_PLATFORM_WINRT))
2022-07-16 10:43:05 +08:00
# define AX_PLATFORM_MOBILE
2019-11-23 20:27:39 +08:00
#else
2022-07-16 10:43:05 +08:00
# define AX_PLATFORM_PC
2019-11-23 20:27:39 +08:00
#endif
2022-07-16 10:43:05 +08:00
#if (AX_TARGET_PLATFORM == AX_PLATFORM_MAC)
2023-08-13 23:58:18 +08:00
# if !AX_USE_ANGLE
2022-07-16 10:43:05 +08:00
# define AX_USE_METAL
2021-12-25 10:04:45 +08:00
# else
2022-07-16 10:43:05 +08:00
# define AX_USE_GL
2021-12-25 10:04:45 +08:00
# endif
2022-07-16 10:43:05 +08:00
#elif (AX_TARGET_PLATFORM == AX_PLATFORM_IOS)
2023-08-13 23:58:18 +08:00
# if !AX_USE_ANGLE
2022-07-16 10:43:05 +08:00
# define AX_USE_METAL
2021-12-25 10:04:45 +08:00
# else
2022-11-10 21:22:55 +08:00
# define AX_USE_GL
2022-07-16 10:43:05 +08:00
# define AX_USE_GLES
2021-12-25 10:04:45 +08:00
# endif
2022-07-16 10:43:05 +08:00
#elif (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID)
2022-11-10 21:22:55 +08:00
# define AX_USE_GL
2022-07-16 10:43:05 +08:00
# define AX_USE_GLES
#elif (AX_TARGET_PLATFORM == AX_PLATFORM_WIN32)
2022-11-10 21:22:55 +08:00
# define AX_USE_GL
2023-08-13 23:58:18 +08:00
# if AX_USE_ANGLE
2022-07-16 10:43:05 +08:00
# define AX_USE_GLES
2021-12-25 10:04:45 +08:00
# endif
#elif (AX_TARGET_PLATFORM == AX_PLATFORM_WINRT)
# define AX_USE_GL
2023-08-13 23:58:18 +08:00
# if !defined(AX_USE_ANGLE)
# define AX_USE_ANGLE 1
# endif
# define AX_USE_GLES
#else
2022-07-16 10:43:05 +08:00
# define AX_USE_GL
#endif
2023-08-13 23:58:18 +08:00
#if defined(AX_USE_GL)
# if !defined(__ANDROID__)
# undef AX_USE_GLAD
# define AX_USE_GLAD 1
# else
# if !defined(AX_USE_GLAD)
# define AX_USE_GLAD 0
# endif
# endif
2023-08-09 14:37:43 +08:00
#endif
2019-11-23 20:27:39 +08:00
/// @endcond
2022-07-16 10:43:05 +08:00
#endif // __BASE_AX_PLATFORM_CONFIG_H__