aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Script.cpp
blob: 583c04fdec91117ac60aafff0ad52beb88237c84 (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
#include <string>

#include "../facade/SDLContext.h"
#include "../manager/SceneManager.h"
#include "Script.h"

using namespace crepe;
using namespace std;

Script::~Script() {
	EventManager & mgr = this->mediator->event_manager;
	for (auto id : this->listeners) {
		mgr.unsubscribe(id);
	}
}

template <>
void Script::subscribe(const EventHandler<CollisionEvent> & callback) {
	this->subscribe_internal(callback, this->game_object_id);
}

void Script::set_next_scene(const string & name) {
	SceneManager & mgr = this->mediator->scene_manager;
	mgr.set_next_scene(name);
}

SaveManager & Script::get_save_manager() const { return this->mediator->save_manager; }

const keyboard_state_t & Script::get_keyboard_state() const {
	SDLContext & sdl_context = this->mediator->sdl_context;
	return sdl_context.get_keyboard_state();
}

bool Script::get_key_state(Keycode key) const noexcept {
	try {
		return this->get_keyboard_state().at(key);
	} catch (...) {
		return false;
	}
}