aboutsummaryrefslogtreecommitdiff
path: root/src/input_actions.cpp
blob: 854dc62d0e797e04d85381fb8256d9f9fb26d5de (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
#include "input_actions.hpp"

#include <fmt/core.h>

namespace InputActions
{

void exit_success()
{
	exit(EXIT_SUCCESS);
}

Callback move_cursor(const Vector2 &direction,
					 const std::shared_ptr<ICursorController> &cursor_controller,
					 const std::shared_ptr<IWindow> &window)
{
	return [direction, cursor_controller, 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);
	};
}

} // namespace InputActions