This commit is contained in:
2026-08-04 17:03:04 +02:00
commit edf1e9fd8a
15 changed files with 820 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
// Header guard
#ifndef RESET
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLDBLACK "\033[1m\033[30m" /* Bold Black */
#define BOLDRED "\033[1m\033[31m" /* Bold Red */
#define BOLDGREEN "\033[1m\033[32m" /* Bold Green */
#define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */
#define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */
#define BOLDMAGENTA "\033[1m\033[35m" /* Bold Magenta */
#define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */
#define BOLDWHITE "\033[1m\033[37m" /* Bold White */
#endif
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include <SDL3/SDL_stdinc.h>
#include <cstdint>
constexpr char *program_name = "p-rad";
constexpr char* user_agent = "p-rad/0.1";
constexpr char* base_url = "http://127.0.0.1:8200/";
// max range in km
constexpr uint16_t max_range = 500;
// distance of first ring from the center on the screen
constexpr uint16_t first_ring_distance = 50;
View File
View File