2022-07-30 12:24:03 -04:00
|
|
|
#pragma once
|
|
|
|
|
2022-10-09 14:04:10 -04:00
|
|
|
#include "cplatform.h"
|
2022-12-01 15:42:49 -05:00
|
|
|
#include <string>
|
2022-10-30 14:59:20 -04:00
|
|
|
#include <functional>
|
|
|
|
|
2022-10-05 16:31:25 -04:00
|
|
|
#if !defined(__PRETTY_FUNCTION__) && !defined(__GNUC__)
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_PRETTY_FUNCTION std::string(__FUNCSIG__)
|
2022-10-05 16:31:25 -04:00
|
|
|
#else
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_PRETTY_FUNCTION std::string(__PRETTY_FUNCTION__)
|
2022-10-05 16:31:25 -04:00
|
|
|
#endif
|
|
|
|
|
2022-07-30 12:24:03 -04:00
|
|
|
// Windows
|
2022-10-09 14:04:10 -04:00
|
|
|
#ifdef GEODE_IS_WINDOWS
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_HIDDEN
|
|
|
|
#define GEODE_INLINE __forceinline
|
|
|
|
#define GEODE_VIRTUAL_CONSTEXPR
|
|
|
|
#define GEODE_NOINLINE __declspec(noinline)
|
|
|
|
|
|
|
|
#ifdef GEODE_EXPORTING
|
|
|
|
#define GEODE_DLL __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define GEODE_DLL __declspec(dllimport)
|
|
|
|
#endif
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_API extern "C" __declspec(dllexport)
|
|
|
|
#define GEODE_EXPORT __declspec(dllexport)
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-12-12 13:21:43 -05:00
|
|
|
static_assert(sizeof(void*) == 4, "Geode must be compiled in 32-bit for Windows!");
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#include "windows.hpp"
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-09 14:04:10 -04:00
|
|
|
#elif defined(GEODE_IS_MACOS)
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_HIDDEN __attribute__((visibility("hidden")))
|
|
|
|
#define GEODE_INLINE inline __attribute__((always_inline))
|
|
|
|
#define GEODE_VIRTUAL_CONSTEXPR constexpr
|
|
|
|
#define GEODE_NOINLINE __attribute__((noinline))
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#ifdef GEODE_EXPORTING
|
|
|
|
#define GEODE_DLL __attribute__((visibility("default")))
|
|
|
|
#else
|
|
|
|
#define GEODE_DLL
|
|
|
|
#endif
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_API extern "C" __attribute__((visibility("default")))
|
|
|
|
#define GEODE_EXPORT __attribute__((visibility("default")))
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#include "macos.hpp"
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-09 14:04:10 -04:00
|
|
|
#elif defined(GEODE_IS_IOS)
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_HIDDEN __attribute__((visibility("hidden")))
|
|
|
|
#define GEODE_INLINE inline __attribute__((always_inline))
|
|
|
|
#define GEODE_VIRTUAL_CONSTEXPR constexpr
|
|
|
|
#define GEODE_NOINLINE __attribute__((noinline))
|
|
|
|
|
|
|
|
#ifdef GEODE_EXPORTING
|
|
|
|
#define GEODE_DLL __attribute__((visibility("default")))
|
|
|
|
#else
|
|
|
|
#define GEODE_DLL
|
|
|
|
#endif
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_API extern "C" __attribute__((visibility("default")))
|
|
|
|
#define GEODE_EXPORT __attribute__((visibility("default")))
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#include "ios.hpp"
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-09 14:04:10 -04:00
|
|
|
#elif defined(GEODE_IS_ANDROID)
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_HIDDEN __attribute__((visibility("hidden")))
|
|
|
|
#define GEODE_INLINE inline __attribute__((always_inline))
|
|
|
|
#define GEODE_VIRTUAL_CONSTEXPR constexpr
|
|
|
|
#define GEODE_NOINLINE __attribute__((noinline))
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#ifdef GEODE_EXPORTING
|
|
|
|
#define GEODE_DLL __attribute__((visibility("default")))
|
|
|
|
#else
|
|
|
|
#define GEODE_DLL
|
|
|
|
#endif
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#define GEODE_API extern "C" __attribute__((visibility("default")))
|
|
|
|
#define GEODE_EXPORT __attribute__((visibility("default")))
|
2022-07-30 12:24:03 -04:00
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#include "android.hpp"
|
2022-07-30 12:24:03 -04:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2022-10-30 14:59:20 -04:00
|
|
|
#error "Unsupported Platform!"
|
2022-10-09 14:04:10 -04:00
|
|
|
|
2022-07-30 12:24:03 -04:00
|
|
|
#endif
|
2022-12-01 15:42:49 -05:00
|
|
|
|
|
|
|
namespace geode {
|
|
|
|
class PlatformID {
|
|
|
|
public:
|
|
|
|
enum {
|
|
|
|
Unknown = -1,
|
|
|
|
Windows,
|
|
|
|
MacOS,
|
|
|
|
iOS,
|
2023-12-23 08:10:23 -05:00
|
|
|
Android32,
|
|
|
|
Android64,
|
2022-12-01 15:42:49 -05:00
|
|
|
Linux,
|
|
|
|
};
|
|
|
|
|
|
|
|
using Type = decltype(Unknown);
|
|
|
|
|
|
|
|
Type m_value;
|
|
|
|
|
|
|
|
constexpr PlatformID(Type t) {
|
|
|
|
m_value = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr PlatformID& operator=(Type t) {
|
|
|
|
m_value = t;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator==(int other) const {
|
|
|
|
return m_value == other;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator==(PlatformID const& other) const {
|
|
|
|
return m_value == other.m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator<(PlatformID const& other) const {
|
|
|
|
return m_value < other.m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr bool operator>(PlatformID const& other) const {
|
|
|
|
return m_value > other.m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr operator int() const {
|
|
|
|
return m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse string into PlatformID. String should be all-lowercase, for
|
|
|
|
* example "windows" or "linux"
|
|
|
|
*/
|
|
|
|
static GEODE_DLL PlatformID from(const char* str);
|
|
|
|
static GEODE_DLL PlatformID from(std::string const& str);
|
|
|
|
|
|
|
|
static constexpr char const* toString(Type lp) {
|
|
|
|
switch (lp) {
|
|
|
|
case Unknown: return "Unknown";
|
|
|
|
case Windows: return "Windows";
|
|
|
|
case MacOS: return "MacOS";
|
|
|
|
case iOS: return "iOS";
|
2023-12-23 08:10:23 -05:00
|
|
|
case Android32: return "Android32";
|
|
|
|
case Android64: return "Android64";
|
2022-12-01 15:42:49 -05:00
|
|
|
case Linux: return "Linux";
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return "Undefined";
|
|
|
|
}
|
|
|
|
|
2024-01-18 07:51:40 -05:00
|
|
|
static constexpr char const* toShortString(Type lp, bool ignoreArch = false) {
|
|
|
|
switch (lp) {
|
|
|
|
case Unknown: return "unknown";
|
|
|
|
case Windows: return "win";
|
|
|
|
case MacOS: return "mac";
|
|
|
|
case iOS: return "ios";
|
|
|
|
case Android32: return ignoreArch ? "android" : "android32";
|
|
|
|
case Android64: return ignoreArch ? "android" : "android64";
|
|
|
|
case Linux: return "linux";
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
return "undefined";
|
|
|
|
}
|
|
|
|
|
2022-12-01 15:42:49 -05:00
|
|
|
template <class T>
|
|
|
|
requires requires(T t) {
|
|
|
|
static_cast<Type>(t);
|
|
|
|
}
|
|
|
|
constexpr static PlatformID from(T t) {
|
|
|
|
return static_cast<Type>(t);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
requires requires(Type t) {
|
|
|
|
static_cast<T>(t);
|
|
|
|
}
|
|
|
|
constexpr T to() const {
|
|
|
|
return static_cast<T>(m_value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
template <>
|
|
|
|
struct hash<geode::PlatformID> {
|
|
|
|
inline std::size_t operator()(geode::PlatformID const& id) const {
|
|
|
|
return std::hash<geode::PlatformID::Type>()(id.m_value);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef GEODE_IS_WINDOWS
|
|
|
|
#define GEODE_PLATFORM_TARGET PlatformID::Windows
|
|
|
|
#elif defined(GEODE_IS_MACOS)
|
|
|
|
#define GEODE_PLATFORM_TARGET PlatformID::MacOS
|
|
|
|
#elif defined(GEODE_IS_IOS)
|
|
|
|
#define GEODE_PLATFORM_TARGET PlatformID::iOS
|
2023-12-23 08:10:23 -05:00
|
|
|
#elif defined(GEODE_IS_ANDROID32)
|
|
|
|
#define GEODE_PLATFORM_TARGET PlatformID::Android32
|
|
|
|
#elif defined(GEODE_IS_ANDROID64)
|
|
|
|
#define GEODE_PLATFORM_TARGET PlatformID::Android64
|
2022-12-01 15:42:49 -05:00
|
|
|
#endif
|