// Copyright (c) 2008-2023 the Urho3D project // License: MIT #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "Urho2DPhysics.h" #include URHO3D_DEFINE_APPLICATION_MAIN(Urho2DPhysics) static const unsigned NUM_OBJECTS = 100; Urho2DPhysics::Urho2DPhysics(Context* context) : Sample(context) { } void Urho2DPhysics::Start() { // Execute base class startup Sample::Start(); // Create the scene content CreateScene(); // Create the UI content CreateInstructions(); // Setup the viewport for displaying the scene SetupViewport(); // Hook up to the frame update events SubscribeToEvents(); // Set the mouse mode to use in the sample Sample::InitMouseMode(MM_FREE); } void Urho2DPhysics::CreateScene() { scene_ = new Scene(context_); scene_->CreateComponent(); scene_->CreateComponent(); // Create camera node cameraNode_ = scene_->CreateChild("Camera"); // Set camera's position cameraNode_->SetPosition(Vector3(0.0f, 0.0f, -10.0f)); auto* camera = cameraNode_->CreateComponent(); camera->SetOrthographic(true); auto* graphics = GetSubsystem(); camera->SetOrthoSize((float)graphics->GetHeight() * PIXEL_SIZE); camera->SetZoom(1.2f * Min((float)graphics->GetWidth() / 1280.0f, (float)graphics->GetHeight() / 800.0f)); // Set zoom according to user's resolution to ensure full visibility (initial zoom (1.2) is set for full visibility at 1280x800 resolution) // Create 2D physics world component /*PhysicsWorld2D* physicsWorld = */scene_->CreateComponent(); auto* cache = GetSubsystem(); auto* boxSprite = cache->GetResource("Urho2D/Box.png"); auto* ballSprite = cache->GetResource("Urho2D/Ball.png"); // Create ground. Node* groundNode = scene_->CreateChild("Ground"); groundNode->SetPosition(Vector3(0.0f, -3.0f, 0.0f)); groundNode->SetScale(Vector3(200.0f, 1.0f, 0.0f)); // Create 2D rigid body for gound /*RigidBody2D* groundBody = */groundNode->CreateComponent(); auto* groundSprite = groundNode->CreateComponent(); groundSprite->SetSprite(boxSprite); // Create box collider for ground auto* groundShape = groundNode->CreateComponent(); // Set box size groundShape->SetSize(Vector2(0.32f, 0.32f)); // Set friction groundShape->SetFriction(0.5f); for (unsigned i = 0; i < NUM_OBJECTS; ++i) { Node* node = scene_->CreateChild("RigidBody"); node->SetPosition(Vector3(Random(-0.1f, 0.1f), 5.0f + i * 0.4f, 0.0f)); // Create rigid body auto* body = node->CreateComponent(); body->SetBodyType(BT_DYNAMIC); auto* staticSprite = node->CreateComponent(); if (i % 2 == 0) { staticSprite->SetSprite(boxSprite); // Create box auto* box = node->CreateComponent(); // Set size box->SetSize(Vector2(0.32f, 0.32f)); // Set density box->SetDensity(1.0f); // Set friction box->SetFriction(0.5f); // Set restitution box->SetRestitution(0.1f); } else { staticSprite->SetSprite(ballSprite); // Create circle auto* circle = node->CreateComponent(); // Set radius circle->SetRadius(0.16f); // Set density circle->SetDensity(1.0f); // Set friction. circle->SetFriction(0.5f); // Set restitution circle->SetRestitution(0.1f); } } } void Urho2DPhysics::CreateInstructions() { auto* cache = GetSubsystem(); auto* ui = GetSubsystem(); // Construct new Text object, set string to display and font to use auto* instructionText = ui->GetRoot()->CreateChild(); instructionText->SetText("Use WASD keys to move, use PageUp PageDown keys to zoom."); instructionText->SetFont(cache->GetResource("Fonts/Anonymous Pro.ttf"), 15); // Position the text relative to the screen center instructionText->SetHorizontalAlignment(HA_CENTER); instructionText->SetVerticalAlignment(VA_CENTER); instructionText->SetPosition(0, ui->GetRoot()->GetHeight() / 4); } void Urho2DPhysics::SetupViewport() { auto* renderer = GetSubsystem(); // Set up a viewport to the Renderer subsystem so that the 3D scene can be seen SharedPtr viewport(new Viewport(context_, scene_, cameraNode_->GetComponent())); renderer->SetViewport(0, viewport); } void Urho2DPhysics::MoveCamera(float timeStep) { // Do not move if the UI has a focused element (the console) if (GetSubsystem()->GetFocusElement()) return; auto* input = GetSubsystem(); // Movement speed as world units per second const float MOVE_SPEED = 4.0f; // Read WASD keys and move the camera scene node to the corresponding direction if they are pressed if (input->GetKeyDown(KEY_W)) cameraNode_->Translate(Vector3::UP * MOVE_SPEED * timeStep); if (input->GetKeyDown(KEY_S)) cameraNode_->Translate(Vector3::DOWN * MOVE_SPEED * timeStep); if (input->GetKeyDown(KEY_A)) cameraNode_->Translate(Vector3::LEFT * MOVE_SPEED * timeStep); if (input->GetKeyDown(KEY_D)) cameraNode_->Translate(Vector3::RIGHT * MOVE_SPEED * timeStep); if (input->GetKeyDown(KEY_PAGEUP)) { auto* camera = cameraNode_->GetComponent(); camera->SetZoom(camera->GetZoom() * 1.01f); } if (input->GetKeyDown(KEY_PAGEDOWN)) { auto* camera = cameraNode_->GetComponent(); camera->SetZoom(camera->GetZoom() * 0.99f); } } void Urho2DPhysics::SubscribeToEvents() { // Subscribe HandleUpdate() function for processing update events SubscribeToEvent(E_UPDATE, URHO3D_HANDLER(Urho2DPhysics, HandleUpdate)); // Unsubscribe the SceneUpdate event from base class to prevent camera pitch and yaw in 2D sample UnsubscribeFromEvent(E_SCENEUPDATE); } void Urho2DPhysics::HandleUpdate(StringHash eventType, VariantMap& eventData) { using namespace Update; // Take the frame time step, which is stored as a float float timeStep = eventData[P_TIMESTEP].GetFloat(); // Move the camera, scale movement with time step MoveCamera(timeStep); }