| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- //
- // Copyright (c) 2008-2014 the Urho3D project.
- //
- // 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 "Application.h"
- #include "Camera.h"
- #include "Console.h"
- #include "Cursor.h"
- #include "DebugHud.h"
- #include "Engine.h"
- #include "FileSystem.h"
- #include "Graphics.h"
- #include "Input.h"
- #include "InputEvents.h"
- #include "Renderer.h"
- #include "ResourceCache.h"
- #include "Scene.h"
- #include "SceneEvents.h"
- #include "Sprite.h"
- #include "Texture2D.h"
- #include "Timer.h"
- #include "UI.h"
- #include "XMLFile.h"
- Sample::Sample(Context* context) :
- Application(context),
- yaw_(0.0f),
- pitch_(0.0f),
- touchEnabled_(false),
- screenJoystickIndex_(M_MAX_UNSIGNED),
- screenJoystickSettingsIndex_(M_MAX_UNSIGNED),
- paused_(false)
- {
- }
- void Sample::Setup()
- {
- // Modify engine startup parameters
- engineParameters_["WindowTitle"] = GetTypeName();
- engineParameters_["LogName"] = GetSubsystem<FileSystem>()->GetAppPreferencesDir("urho3d", "logs") + GetTypeName() + ".log";
- engineParameters_["FullScreen"] = false;
- engineParameters_["Headless"] = false;
- }
- void Sample::Start()
- {
- if (GetPlatform() == "Android" || GetPlatform() == "iOS")
- // On mobile platform, enable touch by adding a screen joystick
- InitTouchInput();
- else if (GetSubsystem<Input>()->GetNumJoysticks() == 0)
- // On desktop platform, do not detect touch when we already got a joystick
- SubscribeToEvent(E_TOUCHBEGIN, HANDLER(Sample, HandleTouchBegin));
- // Create logo
- CreateLogo();
- // Set custom window Title & Icon
- SetWindowTitleAndIcon();
- // Create console and debug HUD
- CreateConsoleAndDebugHud();
- // Subscribe key down event
- SubscribeToEvent(E_KEYDOWN, HANDLER(Sample, HandleKeyDown));
- // Subscribe scene update event
- SubscribeToEvent(E_SCENEUPDATE, HANDLER(Sample, HandleSceneUpdate));
- }
- void Sample::Stop()
- {
- engine_->DumpResources(true);
- }
- void Sample::InitTouchInput()
- {
- touchEnabled_ = true;
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- Input* input = GetSubsystem<Input>();
- XMLFile* layout = cache->GetResource<XMLFile>("UI/ScreenJoystick_Samples.xml");
- const String& patchString = GetScreenJoystickPatchString();
- if (!patchString.Empty())
- {
- // Patch the screen joystick layout further on demand
- SharedPtr<XMLFile> patchFile(new XMLFile(context_));
- if (patchFile->FromString(patchString))
- layout->Patch(patchFile);
- }
- screenJoystickIndex_ = input->AddScreenJoystick(layout, cache->GetResource<XMLFile>("UI/DefaultStyle.xml"));
- input->SetScreenJoystickVisible(screenJoystickSettingsIndex_, true);
- }
- void Sample::SetLogoVisible(bool enable)
- {
- if (logoSprite_)
- logoSprite_->SetVisible(enable);
- }
- void Sample::CreateLogo()
- {
- // Get logo texture
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- Texture2D* logoTexture = cache->GetResource<Texture2D>("Textures/LogoLarge.png");
- if (!logoTexture)
- return;
- // Create logo sprite and add to the UI layout
- UI* ui = GetSubsystem<UI>();
- logoSprite_ = ui->GetRoot()->CreateChild<Sprite>();
- // Set logo sprite texture
- logoSprite_->SetTexture(logoTexture);
- int textureWidth = logoTexture->GetWidth();
- int textureHeight = logoTexture->GetHeight();
- // Set logo sprite scale
- logoSprite_->SetScale(256.0f / textureWidth);
- // Set logo sprite size
- logoSprite_->SetSize(textureWidth, textureHeight);
- // Set logo sprite hot spot
- logoSprite_->SetHotSpot(0, textureHeight);
- // Set logo sprite alignment
- logoSprite_->SetAlignment(HA_LEFT, VA_BOTTOM);
-
- // Make logo not fully opaque to show the scene underneath
- logoSprite_->SetOpacity(0.75f);
-
- // Set a low priority for the logo so that other UI elements can be drawn on top
- logoSprite_->SetPriority(-100);
- }
- void Sample::SetWindowTitleAndIcon()
- {
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- Graphics* graphics = GetSubsystem<Graphics>();
- Image* icon = cache->GetResource<Image>("Textures/UrhoIcon.png");
- graphics->SetWindowIcon(icon);
- graphics->SetWindowTitle("Urho3D Sample");
- }
- void Sample::CreateConsoleAndDebugHud()
- {
- // Get default style
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- XMLFile* xmlFile = cache->GetResource<XMLFile>("UI/DefaultStyle.xml");
- // Create console
- Console* console = engine_->CreateConsole();
- console->SetDefaultStyle(xmlFile);
- console->GetBackground()->SetOpacity(0.8f);
- // Create debug HUD.
- DebugHud* debugHud = engine_->CreateDebugHud();
- debugHud->SetDefaultStyle(xmlFile);
- }
- void Sample::HandleKeyDown(StringHash eventType, VariantMap& eventData)
- {
- using namespace KeyDown;
- int key = eventData[P_KEY].GetInt();
- // Close console (if open) or exit when ESC is pressed
- if (key == KEY_ESC)
- {
- Console* console = GetSubsystem<Console>();
- if (console->IsVisible())
- console->SetVisible(false);
- else
- engine_->Exit();
- }
- // Toggle console with F1
- else if (key == KEY_F1)
- GetSubsystem<Console>()->Toggle();
-
- // Toggle debug HUD with F2
- else if (key == KEY_F2)
- GetSubsystem<DebugHud>()->ToggleAll();
-
- // Common rendering quality controls, only when UI has no focused element
- else if (!GetSubsystem<UI>()->GetFocusElement())
- {
- Renderer* renderer = GetSubsystem<Renderer>();
-
- // Preferences / Pause
- if (key == KEY_SELECT && touchEnabled_)
- {
- paused_ = !paused_;
- Input* input = GetSubsystem<Input>();
- if (screenJoystickSettingsIndex_ == M_MAX_UNSIGNED)
- {
- // Lazy initialization
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- screenJoystickSettingsIndex_ = input->AddScreenJoystick(cache->GetResource<XMLFile>("UI/ScreenJoystickSettings_Samples.xml"), cache->GetResource<XMLFile>("UI/DefaultStyle.xml"));
- }
- else
- input->SetScreenJoystickVisible(screenJoystickSettingsIndex_, paused_);
- }
- // Texture quality
- else if (key == '1')
- {
- int quality = renderer->GetTextureQuality();
- ++quality;
- if (quality > QUALITY_HIGH)
- quality = QUALITY_LOW;
- renderer->SetTextureQuality(quality);
- }
-
- // Material quality
- else if (key == '2')
- {
- int quality = renderer->GetMaterialQuality();
- ++quality;
- if (quality > QUALITY_HIGH)
- quality = QUALITY_LOW;
- renderer->SetMaterialQuality(quality);
- }
-
- // Specular lighting
- else if (key == '3')
- renderer->SetSpecularLighting(!renderer->GetSpecularLighting());
-
- // Shadow rendering
- else if (key == '4')
- renderer->SetDrawShadows(!renderer->GetDrawShadows());
-
- // Shadow map resolution
- else if (key == '5')
- {
- int shadowMapSize = renderer->GetShadowMapSize();
- shadowMapSize *= 2;
- if (shadowMapSize > 2048)
- shadowMapSize = 512;
- renderer->SetShadowMapSize(shadowMapSize);
- }
-
- // Shadow depth and filtering quality
- else if (key == '6')
- {
- int quality = renderer->GetShadowQuality();
- ++quality;
- if (quality > SHADOWQUALITY_HIGH_24BIT)
- quality = SHADOWQUALITY_LOW_16BIT;
- renderer->SetShadowQuality(quality);
- }
-
- // Occlusion culling
- else if (key == '7')
- {
- bool occlusion = renderer->GetMaxOccluderTriangles() > 0;
- occlusion = !occlusion;
- renderer->SetMaxOccluderTriangles(occlusion ? 5000 : 0);
- }
-
- // Instancing
- else if (key == '8')
- renderer->SetDynamicInstancing(!renderer->GetDynamicInstancing());
-
- // Take screenshot
- else if (key == '9')
- {
- Graphics* graphics = GetSubsystem<Graphics>();
- Image screenshot(context_);
- graphics->TakeScreenShot(screenshot);
- // Here we save in the Data folder with date and time appended
- screenshot.SavePNG(GetSubsystem<FileSystem>()->GetProgramDir() + "Data/Screenshot_" +
- Time::GetTimeStamp().Replaced(':', '_').Replaced('.', '_').Replaced(' ', '_') + ".png");
- }
- }
- }
- void Sample::HandleSceneUpdate(StringHash eventType, VariantMap& eventData)
- {
- // Move the camera by touch, if the camera node is initialized by descendant sample class
- if (touchEnabled_ && cameraNode_)
- {
- Input* input = GetSubsystem<Input>();
- for (unsigned i = 0; i < input->GetNumTouches(); ++i)
- {
- TouchState* state = input->GetTouch(i);
- if (!state->touchedElement_) // Touch on empty space
- {
- if (state->delta_.x_ ||state->delta_.y_)
- {
- Camera* camera = cameraNode_->GetComponent<Camera>();
- if (!camera)
- return;
- Graphics* graphics = GetSubsystem<Graphics>();
- yaw_ += TOUCH_SENSITIVITY * camera->GetFov() / graphics->GetHeight() * state->delta_.x_;
- pitch_ += TOUCH_SENSITIVITY * camera->GetFov() / graphics->GetHeight() * state->delta_.y_;
- // Construct new orientation for the camera scene node from yaw and pitch; roll is fixed to zero
- cameraNode_->SetRotation(Quaternion(pitch_, yaw_, 0.0f));
- }
- else
- {
- // Move the cursor to the touch position
- Cursor* cursor = GetSubsystem<UI>()->GetCursor();
- if (cursor && cursor->IsVisible())
- cursor->SetPosition(state->position_);
- }
- }
- }
- }
- }
- void Sample::HandleTouchBegin(StringHash eventType, VariantMap& eventData)
- {
- // On some platforms like Windows the presence of touch input can only be detected dynamically
- InitTouchInput();
- UnsubscribeFromEvent("TouchBegin");
- }
|