From 78f5d8cf644383adf20933ad64c160c07c2c54fb Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 20 Mar 2022 13:17:16 +0100 Subject: refactor: improve input configuring structure --- src/input_actions.cpp | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 src/input_actions.cpp (limited to 'src/input_actions.cpp') diff --git a/src/input_actions.cpp b/src/input_actions.cpp deleted file mode 100644 index fa41bdd..0000000 --- a/src/input_actions.cpp +++ /dev/null @@ -1,42 +0,0 @@ -#include "input_actions.hpp" - -#include "strings.hpp" - -#include - -namespace InputActions -{ - -void exit_success() noexcept -{ - exit(EXIT_SUCCESS); -} - -Callback move_cursor(const Vector2 &direction, - const std::shared_ptr &cursor_controller, - const std::shared_ptr &scene, - const std::shared_ptr &window) noexcept -{ - return [direction, cursor_controller, scene, window]() - { - constexpr int32_t amount = 1; - - const auto new_position = - cursor_controller->where().to_direction(direction, amount); - - const auto window_size = window->size(); - - if (window_size.validate_coords(new_position) != CoordsValidation::VALID) - { - return; - } - - cursor_controller->move_to(new_position); - - scene->write_status(fmt::format(STATUS_BAR_COORDINATES, - fmt::arg("x", new_position.get_x()), - fmt::arg("y", new_position.get_y()))); - }; -} - -} // namespace InputActions -- cgit v1.2.3-18-g5258