aboutsummaryrefslogtreecommitdiff
path: root/src/commands/move_cursor.cpp
blob: fe2f05f08b9adecec7fb11f3113d276555be85b8 (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
#include "move_cursor.hpp"

MoveCursorCommand::MoveCursorCommand(
	const Vector2 &direction,
	const std::shared_ptr<ICursorController> &cursor_controller,
	const std::shared_ptr<IWindow> &window
) noexcept
	: _direction(direction), _cursor_controller(cursor_controller), _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);
}