From 3a785620908f7ebc4299f974b7833afcb7d52a2f Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Tue, 17 Dec 2024 15:08:28 +0100 Subject: create bug MWE --- src/example/bounce-vel-bug.cpp | 68 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/example/bounce-vel-bug.cpp (limited to 'src/example/bounce-vel-bug.cpp') diff --git a/src/example/bounce-vel-bug.cpp b/src/example/bounce-vel-bug.cpp new file mode 100644 index 0000000..a1c3021 --- /dev/null +++ b/src/example/bounce-vel-bug.cpp @@ -0,0 +1,68 @@ +#include +#include +#include +#include +#include + +using namespace crepe; +using namespace std; + +class DemoScene : public Scene { + virtual std::string get_name() const override { return "aa"; } + void load_scene() override { + GameObject camera = new_object("camera"); + camera.add_component(ivec2{800, 800}, vec2{10, 10}, Camera::Data{ + .bg_color = {0x22, 0x22, 0x22}, + }); + + + GameObject ground = new_object("ground", "", vec2{0, 4}); + Sprite & ground_sprite = ground.add_component( + Asset{"asset/texture/square.png"}, + Sprite::Data{ .size = {10, 2}, } + ); + ground.add_component(Rigidbody::Data{ + .gravity_scale = 1.0, + .body_type = Rigidbody::BodyType::STATIC, + }); + ground.add_component(ground_sprite.data.size); + + + GameObject bouncy = new_object("bouncy", "", vec2{-4, 0}); + bouncy.add_component( + Asset{"asset/texture/square.png"}, + Sprite::Data{ + .color = Color::GREEN, + .size = { 1, 1 }, + } + ); + bouncy.add_component(Rigidbody::Data{ + .gravity_scale = 1.0, + .linear_velocity = {1, 0}, + .elastisity_coefficient = 0.6, + }); + bouncy.add_component(vec2{1, 1}); + + GameObject stiff = new_object("stiff", "", vec2{-4, 0}); + stiff.add_component( + Asset{"asset/texture/square.png"}, + Sprite::Data{ + .color = Color::RED, + .size = { 1, 1 }, + } + ); + stiff.add_component(Rigidbody::Data{ + .gravity_scale = 1.0, + .linear_velocity = {1, 0}, + .elastisity_coefficient = 0.0, + }); + stiff.add_component(vec2{1, 1}); + } +}; + +int main() { + LoopManager example; + example.add_scene(); + example.start(); + return 0; +} -- cgit v1.2.3