blob: 8dd7db706909e5c4f2e2814c33ab6280de5f350e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include "move_cursor.hpp"
#include "strings.hpp"
#include <fmt/core.h>
MoveCursorCommand::MoveCursorCommand(
const Vector2 &direction, const std::shared_ptr<ICursorController> &cursor_controller,
const std::shared_ptr<IScene> &scene, const std::shared_ptr<IWindow> &window) noexcept
: _direction(direction),
_cursor_controller(cursor_controller),
_scene(scene),
_window(window)
{
}
void MoveCursorCommand::execute() noexcept
{
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())));
}
|