From b019b401c3a1de0ffea7e6776242ae73599651ef Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Fri, 15 Nov 2024 16:10:45 +0100 Subject: collision handeling example --- src/example/collision.cpp | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) (limited to 'src/example') diff --git a/src/example/collision.cpp b/src/example/collision.cpp index e82b493..45ed0b0 100644 --- a/src/example/collision.cpp +++ b/src/example/collision.cpp @@ -1,5 +1,6 @@ #include "api/BoxCollider.h" #include "system/CollisionSystem.h" +#include #include #include #include @@ -10,12 +11,15 @@ #include #include +#include #include #include #include #include #include #include +#include +#include #include #include @@ -23,6 +27,22 @@ using namespace crepe; using namespace std; +class MyScript : public Script { + static bool oncollision(const CollisionEvent& test) { + std::cout << "test collision: " << test.info.first.collider.game_object_id << std::endl; + return true; + } + void init() { + EventManager::get_instance().subscribe(oncollision, this->parent->game_object_id); + } + void update() { + // Retrieve component from the same GameObject this script is on + + } + + +}; + int main(int argc, char * argv[]) { Color color(0, 0, 0, 0); @@ -33,16 +53,19 @@ int main(int argc, char * argv[]) { .body_type = Rigidbody::BodyType::DYNAMIC, .constraints = {0, 0, 0}, .use_gravity = true, - .bounce = false, + .bounce = true, .offset = {0,0} }); game_object1.add_component(Vector2{5, 5}, 5, 5); + game_object1.add_component().set_script(); + game_object1.add_component().set_script(); + // game_object1.add_component( // make_shared("/home/jaro/crepe/asset/texture/img.png"), color, // FlipSettings{true, true}); - GameObject game_object2(1, "Name", "Tag", Vector2{20, 0}, 90, 1); + GameObject game_object2(1, "Name", "Tag", Vector2{10, 10}, 0, 1); game_object2.add_component(Rigidbody::Data{ .mass = 1, .gravity_scale = 1, @@ -53,16 +76,24 @@ int main(int argc, char * argv[]) { .offset = {0,0} }); game_object2.add_component(Vector2{5, 5}, 5, 5); + game_object2.add_component().set_script(); // game_object2.add_component( // make_shared("/home/jaro/crepe/asset/texture/img.png"), color, // FlipSettings{true, true}); - CollisionSystem coltest; - coltest.update(); + + ScriptSystem sys; + // Update all scripts. This should result in MyScript::update being called + sys.update(); // auto & sys = crepe::RenderSystem::get_instance(); // auto start = std::chrono::steady_clock::now(); // while (std::chrono::steady_clock::now() - start < std::chrono::seconds(5)) { // sys.update(); // } + CollisionSystem coltest; + coltest.update(); + + + return 0; } -- cgit v1.2.3