Sane C++ Libraries
C++ Platform Abstraction Libraries
Platform.h
1// Copyright (c) Stefano Cristiano
2// SPDX-License-Identifier: MIT
3#pragma once
4
7
8#if defined(DEBUG) || defined(_DEBUG)
9#define SC_CONFIGURATION_DEBUG 1
10#define SC_CONFIGURATION_RELEASE 0
11#else
12#define SC_CONFIGURATION_DEBUG 0
13#define SC_CONFIGURATION_RELEASE 1
14#endif
15
16namespace SC
17{
19enum class Platform
20{
21 Apple,
22 Linux,
23 Windows,
24 Emscripten,
25};
26
29{
30 enum Type
31 {
32 macOS,
33 iOS,
34 Emscripten,
35 Windows,
36 Linux,
37 };
38};
39
40#if defined(__APPLE__)
41
42#define SC_PLATFORM_APPLE 1
43#define SC_PLATFORM_LINUX 0
44#define SC_PLATFORM_WINDOWS 0
45#define SC_PLATFORM_EMSCRIPTEN 0
46static constexpr Platform HostPlatform = Platform::Apple;
47
48#elif defined(_WIN32) || defined(_WIN64)
49
50#define SC_PLATFORM_APPLE 0
51#define SC_PLATFORM_LINUX 0
52#define SC_PLATFORM_WINDOWS 1
53#define SC_PLATFORM_EMSCRIPTEN 0
54static constexpr Platform HostPlatform = Platform::Windows;
55
56#elif defined(__EMSCRIPTEN__)
57
58#define SC_PLATFORM_APPLE 0
59#define SC_PLATFORM_LINUX 0
60#define SC_PLATFORM_WINDOWS 0
61#define SC_PLATFORM_EMSCRIPTEN 1
62static constexpr Platform HostPlatform = Platform::Emscripten;
63
64#elif defined(__linux__)
65
66#define SC_PLATFORM_APPLE 0
67#define SC_PLATFORM_LINUX 1
68#define SC_PLATFORM_WINDOWS 0
69#define SC_PLATFORM_EMSCRIPTEN 0
70static constexpr Platform HostPlatform = Platform::Linux;
71
72#else
73
74#error "Unsupported platform"
75
76#endif
77
78#if defined(_WIN64)
79#define SC_PLATFORM_64_BIT 1
80#elif defined(_WIN32)
81#define SC_PLATFORM_64_BIT 0
82#else
83#define SC_PLATFORM_64_BIT 1
84#endif
85
87enum class InstructionSet
88{
89 ARM64,
90 Intel64,
91 Intel32
92};
93
94#if defined(_M_ARM64) || defined(__aarch64__)
95#define SC_PLATFORM_ARM64 1
96#define SC_PLATFORM_INTEL 0
97static constexpr InstructionSet HostInstructionSet = InstructionSet::ARM64;
98#else
99#define SC_PLATFORM_ARM64 0
100#define SC_PLATFORM_INTEL 1
101#if SC_PLATFORM_64_BIT
102static constexpr InstructionSet HostInstructionSet = InstructionSet::Intel64;
103#else
104static constexpr InstructionSet HostInstructionSet = InstructionSet::Intel32;
105#endif
106#endif
107
108} // namespace SC
109
Holds information about operating system.
Definition: Platform.h:29