aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Engine.h
blob: 76010158e519d8e7c536b59c66e283bb46c5f613 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#pragma once

#include "../facade/SDLContext.h"
#include "../manager/ComponentManager.h"
#include "../manager/ReplayManager.h"
#include "../manager/ResourceManager.h"
#include "../manager/ResourceManager.h"
#include "../manager/SaveManager.h"
#include "../manager/SceneManager.h"
#include "../manager/SystemManager.h"

#include "LoopTimer.h"

namespace crepe {

/**
 * \brief Main game entrypoint
 *
 * This class is responsible for managing the game loop, including initialization and updating.
 */
class Engine {
public:
	void start();

	/**
	 * \brief Add a new concrete scene to the scene manager
	 *
	 * \tparam T  Type of concrete scene
	 */
	template <typename T>
	void add_scene();

private:
	/**
	 * \brief Setup function for one-time initialization.
	 *
	 * This function initializes necessary components for the game.
	 */
	void setup();
	/**
	 * \brief Main game loop function.
	 *
	 * This function runs the main loop, handling game updates and rendering.
	 */
	void loop();

	bool game_running = false;

private:
	//! Global context
	Mediator mediator;

	//! Component manager instance
	ComponentManager component_manager{mediator};
	//! Scene manager instance
	SceneManager scene_manager{mediator};
	//! Resource manager instance
	ResourceManager resource_manager{mediator};
	//! Save manager instance
	SaveManager save_manager{mediator};
	//! SDLContext instance
	SDLContext sdl_context{mediator};
	//! LoopTimer instance
	LoopTimer loop_timer{mediator};
	//! ReplayManager instance
	ReplayManager replay_manager{mediator};
	//! SystemManager
	SystemManager system_manager{mediator};
};

} // namespace crepe

#include "Engine.hpp"