#include "cursor.hpp" #include "engine/escape.hpp" #include #include void CursorController::move_to(const Vector2 &pos) { fmt::print(MOVE_CURSOR_TO, fmt::arg("esc", ESC), fmt::arg("row", pos.y()), fmt::arg("column", pos.x())); std::cout.flush(); } Vector2 CursorController::where() { fmt::print(REQUEST_CURSOR_POSITION, fmt::arg("esc", ESC)); std::cout.flush(); Vector2Options vector2_options = {}; // NOLINTNEXTLINE(cppcoreguidelines-pro-type-vararg) scanf("\033[%u;%uR", &vector2_options.y, &vector2_options.x); return Vector2(vector2_options); } void CursorController::hide() { fmt::print(CURSOR_INVISIBLE, fmt::arg("esc", ESC)); std::cout.flush(); } void CursorController::show() { fmt::print(CURSOR_VISIBLE, fmt::arg("esc", ESC)); std::cout.flush(); }