7 #define WIN32_LEAN_AND_MEAN
15 #include <sys/ioctl.h>
22 #if defined(__EMSCRIPTEN__)
25 CONSOLE_SCREEN_BUFFER_INFO csbi;
27 if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi)) {
28 return Dimensions{csbi.srWindow.Right - csbi.srWindow.Left + 1,
29 csbi.srWindow.Bottom - csbi.srWindow.Top + 1};
37 ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
44 const char* Safe(
const char* c) {
48 bool Contains(
const std::string& s,
const char* key) {
49 return s.find(key) != std::string::npos;
52 static bool cached =
false;
55 #if defined(__EMSCRIPTEN__)
59 std::string COLORTERM = Safe(std::getenv(
"COLORTERM"));
60 if (Contains(COLORTERM,
"24bit") || Contains(COLORTERM,
"truecolor"))
63 std::string TERM = Safe(std::getenv(
"TERM"));
64 if (Contains(COLORTERM,
"256") || Contains(TERM,
"256"))
67 #if defined(FTXUI_MICROSOFT_TERMINAL_FALLBACK)
72 if (TERM ==
"" && COLORTERM ==
"")
84 cached_supported_color = ComputeColorSupport();
86 return cached_supported_color;