aboutsummaryrefslogtreecommitdiff
path: root/src/example/AITest.cpp
blob: 91a529cb2809d6286a1363abb95a0a6acebba3ac (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
#include <SDL2/SDL_timer.h>
#include <chrono>
#include <crepe/api/AI.h>
#include <crepe/api/BehaviorScript.h>
#include <crepe/api/Camera.h>
#include <crepe/api/Color.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/LoopManager.h>
#include <crepe/api/Scene.h>
#include <crepe/api/Script.h>
#include <crepe/api/Sprite.h>
#include <crepe/api/Texture.h>
#include <crepe/manager/Mediator.h>

using namespace crepe;
using namespace std;

class Script1 : public Script {
	bool shutdown(const ShutDownEvent & event) {
		// Very dirty way of shutting down the game
		throw "ShutDownEvent";
		return true;
	}

	void init() {
		subscribe<ShutDownEvent>(
			[this](const ShutDownEvent & ev) -> bool { return this->shutdown(ev); });
	}
};

class Scene1 : public Scene {
public:
	void load_scene() override {
		Mediator & mediator = this->mediator;
		ComponentManager & mgr = mediator.component_manager;

		GameObject game_object1 = mgr.new_object("", "", vec2{250, 250}, 0, 1);
		GameObject game_object2 = mgr.new_object("", "", vec2{0, 0}, 0, 1);

		Texture img = Texture("asset/texture/test_ap43.png");
		game_object1.add_component<Sprite>(img, Color::MAGENTA,
										   Sprite::FlipSettings{false, false}, 1, 1, 195);
		game_object1.add_component<AI>(1, 200, 200).seek_on();

		game_object2.add_component<Camera>(Color::WHITE, ivec2{1080, 720}, vec2{1036, 780},
										   1.0f);
		game_object2.add_component<BehaviorScript>().set_script<Script1>();
	}

	string get_name() const override { return "Scene1"; }
};

int main() {
	LoopManager engine;
	engine.add_scene<Scene1>();
	engine.start();

	return 0;
}