From 9d0fe1b42c9f6a5c09bab444966d347a71a4b905 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 27 Jun 2022 20:44:07 +0200 Subject: refactor: remove unused cursor controller method ensure_position --- src/engine/user/cursor.cpp | 13 ------------- src/engine/user/cursor.hpp | 2 -- 2 files changed, 15 deletions(-) (limited to 'src/engine') diff --git a/src/engine/user/cursor.cpp b/src/engine/user/cursor.cpp index b38cee0..e3ad56c 100644 --- a/src/engine/user/cursor.cpp +++ b/src/engine/user/cursor.cpp @@ -53,19 +53,6 @@ auto CursorController::where() const noexcept -> Vector2 return _position; } -void CursorController::ensure_position() noexcept -{ - 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); - - _position = _invert_position_y(Vector2(vector2_options)); -} - void CursorController::update_position(const Vector2 &position) noexcept { _position = position; diff --git a/src/engine/user/cursor.hpp b/src/engine/user/cursor.hpp index 16d37e3..8f352ef 100644 --- a/src/engine/user/cursor.hpp +++ b/src/engine/user/cursor.hpp @@ -46,8 +46,6 @@ public: [[nodiscard]] auto where() const noexcept -> Vector2 override; - void ensure_position() noexcept override; - void update_position(const Vector2 &position) noexcept override; void hide(bool flush_cout) noexcept override; -- cgit v1.2.3-18-g5258