aboutsummaryrefslogtreecommitdiff
path: root/src/example/game.cpp
blob: a8d6d1b51dce33af4014d2448cba769c0fbb8311 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <crepe/api/BoxCollider.h>
#include <crepe/api/Camera.h>
#include <crepe/api/Color.h>
#include <crepe/api/Event.h>
#include <crepe/api/EventManager.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/LoopManager.h>
#include <crepe/api/Rigidbody.h>
#include <crepe/api/Script.h>
#include <crepe/api/Sprite.h>
#include <crepe/api/Texture.h>
#include <crepe/api/Transform.h>
#include <crepe/api/Vector2.h>

using namespace crepe;

using namespace std;

class MyScript : public Script {
	bool oncollision(const CollisionEvent & test) {
		Log::logf("Box {} script on_collision()", test.info.this_collider.game_object_id);
		return true;
	}
	void init() {
		subscribe<CollisionEvent>(
			[this](const CollisionEvent & ev) -> bool { return this->oncollision(ev); });
	}
	void update() {
		// Retrieve component from the same GameObject this script is on
	}
};

class ConcreteScene1 : public Scene {
public:
	using Scene::Scene;

	void load_scene() {
		ComponentManager & mgr = this->component_manager;
		Color color(0, 0, 0, 255);

		float screen_size_width = 640;
		float screen_size_height = 480;
		float world_collider = 1000;
		//define playable world
		GameObject world = mgr.new_object(
			"Name", "Tag", vec2{screen_size_width / 2, screen_size_height / 2}, 0, 1);
		world.add_component<Rigidbody>(Rigidbody::Data{
			.mass = 0,
			.gravity_scale = 0,
			.body_type = Rigidbody::BodyType::STATIC,
			.offset = {0, 0},
			.collision_layers = {0},
		});
		world.add_component<BoxCollider>(
			vec2{0, 0 - (screen_size_height / 2 + world_collider / 2)},
			vec2{world_collider, world_collider});
		; // Top
		world.add_component<BoxCollider>(vec2{0, screen_size_height / 2 + world_collider / 2},
										 vec2{world_collider, world_collider}); // Bottom
		world.add_component<BoxCollider>(
			vec2{0 - (screen_size_width / 2 + world_collider / 2), 0},
			vec2{world_collider, world_collider}); // Left
		world.add_component<BoxCollider>(vec2{screen_size_width / 2 + world_collider / 2, 0},
										 vec2{world_collider, world_collider}); // right
		world.add_component<Camera>(Color::WHITE, ivec2{640, 480}, vec2{640, 480}, 1.0f);

		GameObject game_object1 = mgr.new_object(
			"Name", "Tag", vec2{screen_size_width / 2, screen_size_height / 2}, 0, 1);
		game_object1.add_component<Rigidbody>(Rigidbody::Data{
			.mass = 1,
			.gravity_scale = 0.01,
			.body_type = Rigidbody::BodyType::DYNAMIC,
			.linear_velocity = {1, 1},
			.constraints = {0, 0, 0},
			.elastisity_coefficient = 1,
			.offset = {0, 0},
			.collision_layers = {0},
		});
		game_object1.add_component<BoxCollider>(vec2{0, 0}, vec2{20, 20});
		game_object1.add_component<BehaviorScript>().set_script<MyScript>();
		auto img = Texture("asset/texture/green_square.png");
		game_object1.add_component<Sprite>(img, color, Sprite::FlipSettings{false, false}, 1,
										   1, 20);
	}

	string get_name() const { return "scene1"; }
};

int main(int argc, char * argv[]) {

	LoopManager gameloop;
	gameloop.add_scene<ConcreteScene1>();
	gameloop.start();
	return 0;
}