-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathUserInterface.cpp
93 lines (73 loc) · 3.63 KB
/
UserInterface.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/***************************************************************************
# Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
**************************************************************************/
/*
License for Dear ImGui
Copyright (c) 2014-2019 Omar Cornut
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 "UserInterface.h"
#include "SampleScene.h"
using namespace donut;
UserInterface::UserInterface(app::DeviceManager* deviceManager, vfs::IFileSystem& rootFS, UIData& ui)
: ImGui_Renderer(deviceManager)
, m_ui(ui)
{
m_fontOpenSans = CreateFontFromFile(rootFS, "/media/fonts/OpenSans/OpenSans-Regular.ttf", 17.f);
}
void UserInterface::buildUI()
{
if (!m_ui.showUI)
return;
int width, height;
GetDeviceManager()->GetWindowDimensions(width, height);
if (m_ui.isLoading)
{
BeginFullScreenWindow();
DrawScreenCenteredText("Loading the scene, please wait...");
EndFullScreenWindow();
return;
}
ImGui::SetNextWindowPos(ImVec2(10.f, 10.f), 0, ImVec2(0.f, 0.f));
ImGui::SetNextWindowSizeConstraints(ImVec2(375.f, 0.f), ImVec2(float(width) - 20.f, float(height) - 20.f));
if (ImGui::Begin("Settings (Tilde key to hide)", nullptr, ImGuiWindowFlags_AlwaysAutoResize))
{
ImGui::PushItemWidth(100.f);
if (ImGui::Button("Reload Shaders (Ctrl+R)"))
{
m_ui.reloadShaders = true;
}
ImGui::Separator();
ImGui::Checkbox("Enable Resampling", &m_ui.lightingSettings.enableResampling);
ImGui::Checkbox("Unbiased Mode", &m_ui.lightingSettings.unbiasedMode);
ImGui::SliderInt("Initial Samples", (int*)&m_ui.lightingSettings.numInitialSamples, 1, 32);
ImGui::SliderInt("Spatial Samples", (int*)&m_ui.lightingSettings.numSpatialSamples, 0, 4);
ImGui::SliderInt("Initial BRDF Samples", (int*)&m_ui.lightingSettings.numInitialBRDFSamples, 0, 8);
ImGui::SliderFloat("BRDF Cutoff", (float*)&m_ui.lightingSettings.brdfCutoff, 0.0f, 1.0f);
ImGui::Separator();
double frameTime = GetDeviceManager()->GetAverageFrameTimeSeconds();
ImGui::Text("%05.2f ms/frame (%05.1f FPS)", frameTime * 1e3f, (frameTime > 0.0) ? 1.0 / frameTime : 0.0);
ImGui::PopItemWidth();
}
ImGui::End();
}