| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- //
- // Copyright (c) 2008-2016 the Urho3D project.
- // Copyright (c) 2014-2016, THUNDERBEAST GAMES LLC All rights reserved
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include <Atomic/Core/CoreEvents.h>
- #include <Atomic/Engine/Engine.h>
- #include <Atomic/Graphics/Camera.h>
- #include <Atomic/Graphics/Graphics.h>
- #include <Atomic/Graphics/Material.h>
- #include <Atomic/Graphics/Model.h>
- #include <Atomic/Graphics/Octree.h>
- #include <Atomic/Graphics/Renderer.h>
- #include <Atomic/Graphics/StaticModel.h>
- #include <Atomic/Input/Input.h>
- #include <Atomic/Resource/ResourceCache.h>
- #include <Atomic/Resource/XMLFile.h>
- #include <Atomic/Scene/Scene.h>
- #include <Atomic/UI/UI.h>
- #include "Particles3D.h"
- #include <Atomic/DebugNew.h>
- Particles3D::Particles3D(Context* context) :
- Sample(context)
- {
- }
- void Particles3D::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_RELATIVE);
- }
- void Particles3D::CreateScene()
- {
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- scene_ = new Scene(context_);
- scene_->LoadXML(*(cache->GetFile("Scenes/ParticleEmitter3D.scene")));
- // Create a scene node for the camera, which we will move around
- // The camera will use default settings (1000 far clip distance, 45 degrees FOV, set aspect ratio automatically)
- cameraNode_ = scene_->CreateChild("Camera");
- cameraNode_->CreateComponent<Camera>();
- // Set an initial position for the camera scene node above the plane
- cameraNode_->SetPosition(Vector3(0.0f, 0.0f, -4.0f));
- }
- void Particles3D::CreateInstructions()
- {
- SimpleCreateInstructions("Use WASD keys and mouse/touch to move");
- }
- void Particles3D::SetupViewport()
- {
- Renderer* renderer = GetSubsystem<Renderer>();
- // Set up a viewport to the Renderer subsystem so that the 3D scene can be seen. We need to define the scene and the camera
- // at minimum. Additionally we could configure the viewport screen size and the rendering path (eg. forward / deferred) to
- // use, but now we just use full screen and default render path configured in the engine command line options
- SharedPtr<Viewport> viewport(new Viewport(context_, scene_, cameraNode_->GetComponent<Camera>()));
- renderer->SetViewport(0, viewport);
- }
- void Particles3D::MoveCamera(float timeStep)
- {
- Input* input = GetSubsystem<Input>();
- // Movement speed as world units per second
- const float MOVE_SPEED = 20.0f;
- // Mouse sensitivity as degrees per pixel
- const float MOUSE_SENSITIVITY = 0.1f;
- // Use this frame's mouse motion to adjust camera node yaw and pitch. Clamp the pitch between -90 and 90 degrees
- IntVector2 mouseMove = input->GetMouseMove();
- yaw_ += MOUSE_SENSITIVITY * mouseMove.x_;
- pitch_ += MOUSE_SENSITIVITY * mouseMove.y_;
- pitch_ = Clamp(pitch_, -90.0f, 90.0f);
- // Construct new orientation for the camera scene node from yaw and pitch. Roll is fixed to zero
- cameraNode_->SetRotation(Quaternion(pitch_, yaw_, 0.0f));
- // Read WASD keys and move the camera scene node to the corresponding direction if they are pressed
- // Use the Translate() function (default local space) to move relative to the node's orientation.
- if (input->GetKeyDown(KEY_W))
- cameraNode_->Translate(Vector3::FORWARD * MOVE_SPEED * timeStep);
- if (input->GetKeyDown(KEY_S))
- cameraNode_->Translate(Vector3::BACK * 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);
- }
- void Particles3D::SubscribeToEvents()
- {
- // Subscribe HandleUpdate() function for processing update events
- SubscribeToEvent(E_UPDATE, ATOMIC_HANDLER(Particles3D, HandleUpdate));
- }
- void Particles3D::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);
- }
|