blob: 16d600421f93f0af14654346b61dc5c1e4dbd670 (
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
|
#pragma once
#include <memory>
#include <queue>
#include <vector>
#include "Scene.h"
namespace crepe {
class ComponentManager;
/**
* \brief Manages scenes
*
* This class manages scenes. It can add new scenes and load them. It also manages the current scene
* and the next scene.
*/
class SceneManager {
public:
//! \param mgr Reference to the ComponentManager
SceneManager(ComponentManager & mgr);
public:
/**
* \brief Add a new concrete scene to the scene manager
*
* \tparam T Type of concrete scene
* \param name Name of new scene
*/
template <typename T>
void add_scene(const std::string & name);
/**
* \brief Set the next scene
*
* This scene will be loaded at the end of the frame
*
* \param name Name of the next scene
*/
void set_next_scene(const std::string & name);
//! Load a new scene (if there is one)
void load_next_scene();
private:
//! Vector of scenes
std::vector<std::unique_ptr<Scene>> scenes;
//! Next scene to load
std::string next_scene;
//! Reference to the ComponentManager
ComponentManager & component_manager;
};
} // namespace crepe
#include "SceneManager.hpp"
|