mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 11:25:59 +01:00
016da234d0
Moves Hyprland from wlroots to aquamarine for the backend. --------- Signed-off-by: Vaxry <vaxry@vaxry.net> Co-authored-by: Mihai Fufezan <mihai@fufexan.net> Co-authored-by: Jan Beich <jbeich@FreeBSD.org> Co-authored-by: vaxerski <vaxerski@users.noreply.github.com> Co-authored-by: UjinT34 <41110182+UjinT34@users.noreply.github.com> Co-authored-by: Tom Englund <tomenglund26@gmail.com> Co-authored-by: Ikalco <73481042+ikalco@users.noreply.github.com> Co-authored-by: diniamo <diniamo53@gmail.com>
112 lines
9.7 KiB
C++
112 lines
9.7 KiB
C++
#pragma once
|
|
|
|
#include <cmath>
|
|
#include <csignal>
|
|
#include <utility>
|
|
|
|
#include "helpers/memory/Memory.hpp"
|
|
|
|
#ifndef NDEBUG
|
|
#ifdef HYPRLAND_DEBUG
|
|
#define ISDEBUG true
|
|
#else
|
|
#define ISDEBUG false
|
|
#endif
|
|
#else
|
|
#define ISDEBUG false
|
|
#endif
|
|
|
|
#include "version.h"
|
|
|
|
#define SPECIAL_WORKSPACE_START (-99)
|
|
|
|
#define PI 3.14159265358979
|
|
|
|
#define STRVAL_EMPTY "[[EMPTY]]"
|
|
|
|
#define WORKSPACE_INVALID -1L
|
|
#define WORKSPACE_NOT_CHANGED -101
|
|
|
|
#define LISTENER(name) \
|
|
void listener_##name(wl_listener*, void*); \
|
|
inline wl_listener listen_##name = {.notify = listener_##name}
|
|
#define DYNLISTENFUNC(name) void listener_##name(void*, void*)
|
|
#define DYNLISTENER(name) CHyprWLListener hyprListener_##name
|
|
#define DYNMULTILISTENER(name) wl_listener listen_##name
|
|
|
|
#define VECINRECT(vec, x1, y1, x2, y2) ((vec).x >= (x1) && (vec).x < (x2) && (vec).y >= (y1) && (vec).y < (y2))
|
|
|
|
#define DELTALESSTHAN(a, b, delta) (abs((a) - (b)) < (delta))
|
|
|
|
#define STICKS(a, b) abs((a) - (b)) < 2
|
|
|
|
#define HYPRATOM(name) {name, 0}
|
|
|
|
#define RASSERT(expr, reason, ...) \
|
|
if (!(expr)) { \
|
|
Debug::log(CRIT, "\n==========================================================================================\nASSERTION FAILED! \n\n{}\n\nat: line {} in {}", \
|
|
std::format(reason, ##__VA_ARGS__), __LINE__, \
|
|
([]() constexpr -> std::string { return std::string(__FILE__).substr(std::string(__FILE__).find_last_of('/') + 1); })()); \
|
|
printf("Assertion failed! See the log in /tmp/hypr/hyprland.log for more info."); \
|
|
raise(SIGABRT); \
|
|
}
|
|
|
|
#define ASSERT(expr) RASSERT(expr, "?")
|
|
|
|
// absolutely ridiculous formatter spec parsing
|
|
#define FORMAT_PARSE(specs__, type__) \
|
|
template <typename FormatContext> \
|
|
constexpr auto parse(FormatContext& ctx) { \
|
|
auto it = ctx.begin(); \
|
|
for (; it != ctx.end() && *it != '}'; it++) { \
|
|
switch (*it) { specs__ default : throw std::format_error("invalid format specification"); } \
|
|
} \
|
|
return it; \
|
|
}
|
|
|
|
#define FORMAT_FLAG(spec__, flag__) \
|
|
case spec__: (flag__) = true; break;
|
|
|
|
#define FORMAT_NUMBER(buf__) \
|
|
case '0': \
|
|
case '1': \
|
|
case '2': \
|
|
case '3': \
|
|
case '4': \
|
|
case '5': \
|
|
case '6': \
|
|
case '7': \
|
|
case '8': \
|
|
case '9': (buf__).push_back(*it); break;
|
|
|
|
#if ISDEBUG
|
|
#define UNREACHABLE() \
|
|
{ \
|
|
Debug::log(CRIT, "\n\nMEMORY CORRUPTED: Unreachable failed! (Reached an unreachable position, memory corruption!!!)"); \
|
|
raise(SIGABRT); \
|
|
}
|
|
#else
|
|
#define UNREACHABLE() std::unreachable();
|
|
#endif
|
|
|
|
#define GLCALL(__CALL__) \
|
|
{ \
|
|
__CALL__; \
|
|
auto err = glGetError(); \
|
|
if (err != GL_NO_ERROR) { \
|
|
Debug::log(ERR, "[GLES] Error in call at {}@{}: 0x{:x}", __LINE__, \
|
|
([]() constexpr -> std::string { return std::string(__FILE__).substr(std::string(__FILE__).find_last_of('/') + 1); })(), err); \
|
|
} \
|
|
}
|
|
|
|
#define HYPRUTILS_FORWARD(ns, name) \
|
|
namespace Hyprutils { \
|
|
namespace ns { \
|
|
class name; \
|
|
} \
|
|
}
|
|
|
|
#define AQUAMARINE_FORWARD(name) \
|
|
namespace Aquamarine { \
|
|
class name; \
|
|
}
|