blob: c13245fe5f3308b2974e688fc09b221cdbeac8a8 (
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
42
43
44
45
46
47
|
#pragma once
#include "DI/auto_wirable.hpp"
#include "interfaces/command.hpp"
#include "interfaces/cursor.hpp"
#include "interfaces/engine.hpp"
#include "interfaces/game.hpp"
#include "interfaces/input.hpp"
#include "interfaces/scene.hpp"
#include "interfaces/window.hpp"
#include <memory>
#include <unordered_map>
class CLIGameEngine : public ICLIGameEngine,
public AutoWirable<
ICLIGameEngine,
CLIGameEngine,
IGameFactory,
ISceneFactory,
IInputHandler,
ICursorController,
IWindow>
{
public:
CLIGameEngine(
IGameFactory game_factory,
ISceneFactory scene_factory,
std::shared_ptr<IInputHandler> input_handler,
std::shared_ptr<ICursorController> cursor_controller,
std::shared_ptr<IWindow> window
) noexcept;
void start() noexcept override;
private:
IGameFactory _game_factory;
ISceneFactory _scene_factory;
std::shared_ptr<IInputHandler> _input_handler;
std::shared_ptr<ICursorController> _cursor_controller;
std::shared_ptr<IWindow> _window;
void _configure_input(
const std::unordered_map<char, std::shared_ptr<ICommand>> &input_config
) noexcept;
};
|