aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.hpp
blob: dfbe619319ce153a01d1dd52cc65f7b2ecbfca7c (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
38
#pragma once

#include "interfaces/cursor.hpp"
#include "interfaces/game.hpp"
#include "interfaces/generation_tracker.hpp"
#include "interfaces/scene.hpp"
#include "interfaces/status_updater.hpp"
#include "interfaces/statusline.hpp"
#include "interfaces/window.hpp"

#include <memory>

class Game : public IGame
{
public:
	Game(std::shared_ptr<IWindow> window, std::shared_ptr<IScene> scene,
		 std::shared_ptr<ICursorController> cursor_controller,
		 std::shared_ptr<IStatusLine> statusline,
		 std::shared_ptr<IGenerationTracker> generation_tracker,
		 std::shared_ptr<IStatusUpdater> status_updater) noexcept;

	void on_start() noexcept override;

	void on_update() noexcept override;

	void on_exit() const noexcept override;

	[[nodiscard]] auto get_input_config() const noexcept
		-> std::unordered_map<char, std::shared_ptr<ICommand>> override;

private:
	std::shared_ptr<IWindow> _window;
	std::shared_ptr<IScene> _scene;
	std::shared_ptr<ICursorController> _cursor_controller;
	std::shared_ptr<IStatusLine> _statusline;
	std::shared_ptr<IGenerationTracker> _generation_tracker;
	std::shared_ptr<IStatusUpdater> _status_updater;
};