aboutsummaryrefslogtreecommitdiff
path: root/src/test/ScriptEventTest.cpp
blob: 7a9abbb9edccf864d87d728aea2ac16dbca669a5 (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
#include <gtest/gtest.h>

// stupid hack to allow access to private/protected members under test
#define private public
#define protected public

#include <crepe/manager/ComponentManager.h>
#include <crepe/manager/EventManager.h>
#include <crepe/api/BehaviorScript.h>
#include <crepe/api/Event.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/Script.h>
#include <crepe/api/Vector2.h>
#include <crepe/system/ScriptSystem.h>

#include "ScriptTest.h"

using namespace std;
using namespace crepe;
using namespace testing;

class ScriptEventTest : public ScriptTest {
public:
	EventManager & event_manager = mediator.event_manager;

	class MyEvent : public Event {};
};

TEST_F(ScriptEventTest, Inactive) {
	BehaviorScript & behaviorscript = this->behaviorscript;
	MyScript & script = this->script;
	EventManager & evmgr = this->event_manager;

	unsigned event_count = 0;
	script.subscribe<MyEvent>([&](const MyEvent &){
		event_count++;
		return true;
	});

	system.update();
	behaviorscript.active = false;
	EXPECT_EQ(0, event_count);

	evmgr.trigger_event<MyEvent>();
	EXPECT_EQ(0, event_count);

	behaviorscript.active = true;
	evmgr.trigger_event<MyEvent>();
	EXPECT_EQ(1, event_count);
}