eduEngine 1.0
Course framework for DA376B
Loading...
Searching...
No Matches
config.h
1// Licensed under the MIT License. See LICENSE file for details.
2
3#ifndef CONFIG_H
4#define CONFIG_H
5#pragma once
6
7#include <iostream>
8#include <string_view>
9#include <format>
10
12#define EENG_NULL_INDEX -1
13
15#define EENG_MSAA
16#define EENG_MSAA_SAMPLES 4
17#define EENG_ANISO
18#define EENG_ANISO_SAMPLES 8
19
21#ifdef _WIN32
22#define EENG_PLATFORM_WINDOWS
23#else
24#define EENG_PLATFORM_UNIX
25#define EENG_PLATFORM_LINUX
26#define EENG_PLATFORM_APPLE
27#endif
28
30#if __cplusplus >= 201103L
31#define CPP11_SUPPORTED
32#endif
33#if __cplusplus >= 201402L
34#define CPP14_SUPPORTED
35#endif
36#if __cplusplus >= 201703L
37#define CPP17_SUPPORTED
38#endif
39#if __cplusplus >= 202002L
40#define CPP20_SUPPORTED
41#endif
42
44#ifdef _MSC_VER
45#define EENG_COMPILER_MSVC
46#endif
47#ifdef __clang__
48#define EENG_COMPILER_CLANG
49#endif
50#ifdef __GNUC__
51#define EENG_COMPILER_GCC
52#endif
53
55#if !defined(NDEBUG) || defined(_DEBUG)
56#define EENG_DEBUG
57#define EENG_ENABLE_ASSERTS
58#endif
59
61#ifdef EENG_PLATFORM_WINDOWS
62#define EENG_DEBUG_BREAK() __debugbreak()
63#else
64#if defined(__ARM_ARCH) || defined(__aarch64__)
65#define EENG_DEBUG_BREAK() __asm__ volatile("svc #0")
66#elif defined(__x86_64__) || defined(__i386__)
67#define EENG_DEBUG_BREAK() __asm__ volatile("int $0x03")
68#else
69#error "Unsupported architecture"
70#endif
71#endif
72
74#if defined(EENG_ENABLE_ASSERTS) && defined(CPP20_SUPPORTED)
75template <class... Args>
76static void EENG_ERROR(std::string_view fmt, Args &&...args)
77{
78 auto msg = std::vformat(fmt, std::make_format_args(args...));
79 std::cerr << "Error: " << msg << std::endl;
80}
81#define EENG_ASSERT(x, ...) \
82 { \
83 if (!(x)) \
84 { \
85 EENG_ERROR(__VA_ARGS__); \
86 EENG_DEBUG_BREAK(); \
87 } \
88 }
89#elif defined(EENG_ENABLE_ASSERTS)
90#include <cassert>
91#define EENG_ASSERT(x, ...) assert(x);
92#else
93#define EENG_ASSERT(x, ...)
94#endif
95
97#ifdef EENG_PLATFORM_APPLE
98#define EENG_GLVERSION_MAJOR 4
99#define EENG_GLVERSION_MINOR 1
100#else
101#define EENG_GLVERSION_MAJOR 4
102#define EENG_GLVERSION_MINOR 3
103#endif
104//
105#if EENG_GLVERSION_MAJOR >= 4
106#if EENG_GLVERSION_MINOR >= 1
107#define EENG_GLVERSION_41
108#endif
109#if EENG_GLVERSION_MINOR >= 3
110#define EENG_GLVERSION_43
111#endif
112#endif
113#ifndef EENG_GLVERSION_41
114static_assert(false, "OpenGL 4.1 is required");
115#endif
116
118static void LOG_DEFINES(auto& LogFunc)
119{
120#ifdef EENG_DEBUG
121 LogFunc("Mode DEBUG");
122#else
123 LogFunc("Mode RELEASE");
124#endif
125
126#ifdef EENG_COMPILER_MSVC
127 LogFunc("Compiler MSVC");
128#elif defined(EENG_COMPILER_CLANG)
129 LogFunc("Compiler Clang");
130#elif defined(EENG_COMPILER_GCC)
131 LogFunc("Compiler GCC");
132#endif
133
134#ifdef CPP20_SUPPORTED
135 LogFunc("C++ version 20");
136#elif defined(CPP17_SUPPORTED)
137 LogFunc("C++ version 17");
138#elif defined(CPP14_SUPPORTED)
139 LogFunc("C++ version: 14");
140#elif defined(CPP11_SUPPORTED)
141 LogFunc("C++ version 11");
142#endif
143}
144
146template <typename E>
147constexpr auto to_integral(E e) -> typename std::underlying_type<E>::type
148{
149 return static_cast<typename std::underlying_type<E>::type>(e);
150}
151
152#endif