#include "api/BoxCollider.h" #include "system/CollisionSystem.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include 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); GameObject game_object1(0, "Name", "Tag", Vector2{10, 10}, 0, 1); game_object1.add_component(Rigidbody::Data{ .mass = 1, .gravity_scale = 1, .body_type = Rigidbody::BodyType::DYNAMIC, .constraints = {0, 0, 0}, .use_gravity = true, .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{10, 10}, 0, 1); game_object2.add_component(Rigidbody::Data{ .mass = 1, .gravity_scale = 1, .body_type = Rigidbody::BodyType::DYNAMIC, .constraints = {0, 0, 0}, .use_gravity = true, .bounce = false, .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}); 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; }