blob: 773303b64351395cfa770de25748dfd1ebbf4b0f (
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
|
#include "../ComponentManager.h"
#include "SceneManager.h"
using namespace crepe::api;
SceneManager::SceneManager() {}
SceneManager & SceneManager::get_instance() {
static SceneManager instance;
return instance;
}
// Push the next scene onto the queue
void SceneManager::load_scene(std::string name) {
next_scene.push(name);
}
// Load a new scene from the queue (if there is one)
void SceneManager::empty_queue() {
while (!next_scene.empty()) {
string name = next_scene.front();
next_scene.pop();
for (auto & scene : scenes) {
if (scene->name == name) {
// Delete all components of the current scene
ComponentManager & mgr = ComponentManager::get_instance();
mgr.delete_all_components();
// Load the new scene
scene->load_scene();
break;
}
}
}
}
|