aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.hpp
blob: 9f0815801b197754ee7ffd7b4f8cafeeb57aa7c3 (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
39
40
41
#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;
};