aboutsummaryrefslogtreecommitdiff
path: root/src/engine/engine.hpp
blob: 4fb4707fd267549d7ea0acf42eb3a03da6e2245c (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
#pragma once

#include "interfaces/cursor.hpp"
#include "interfaces/engine.hpp"
#include "interfaces/game.hpp"
#include "interfaces/input.hpp"
#include "interfaces/scene.hpp"

#include <yacppdic/auto_wirable.hpp>

#include <memory>
#include <unordered_map>

constexpr auto MIN_TIME_SINCE_LAST_UPDATE_MILLIS = 40;

class CLIGameEngine : public ICLIGameEngine,
					  public yacppdic::AutoWirable<
						  ICLIGameEngine,
						  CLIGameEngine,
						  IGameFactory,
						  ISceneFactory,
						  IUserInputObserver,
						  ICursorController>
{
public:
	CLIGameEngine(
		IGameFactory game_factory,
		ISceneFactory scene_factory,
		std::shared_ptr<IUserInputObserver> user_input_observer,
		std::shared_ptr<ICursorController> cursor_controller) noexcept;

	void start() noexcept override;

private:
	IGameFactory _game_factory;
	ISceneFactory _scene_factory;

	std::shared_ptr<IUserInputObserver> _user_input_observer;
	std::shared_ptr<ICursorController> _cursor_controller;
};