-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
306 lines (264 loc) · 9.63 KB
/
mainwindow.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
//
// Created by Runze on 30/06/2023.
//
#include "mainwindow.h"
//#include "RayTracer.h"
MainWindow::~MainWindow() {
}
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent) {
QWidget *centralWidget = new QWidget(this);
setCentralWidget(centralWidget);
QHBoxLayout *mainHorizontalLayout = new QHBoxLayout(centralWidget);
QVBoxLayout *leftLayout = new QVBoxLayout();
// leftLayout->setSizeConstraint(QLayout::SetFixedSize); // 设置左侧布局大小固定
mainHorizontalLayout->addLayout(leftLayout, 0); // 设置左侧布局的 stretch 为 0
createRendererUI(leftLayout);
QVBoxLayout *rightLayout = new QVBoxLayout();
mainHorizontalLayout->addLayout(rightLayout, 1); // 设置右侧布局的 stretch 为 1
imageLabel = new QLabel(this);
imageLabel->setSizePolicy(QSizePolicy::Ignored, QSizePolicy::Ignored); // 添加这行代码设置 imageLabel 的尺寸策略
rightLayout->addWidget(imageLabel);
setWindowTitle("Ray Tracer Renderer");
resize(1200, 800); // 修改初始窗口大小
setMinimumSize(300, 200);
useOpenMP = true; // 默认使用 OpenMP
renderingInProgress = false; // 默认渲染未开始
// 连接信号和槽
connect(this, SIGNAL(renderTimeUpdated(qint64)), this, SLOT(updateRenderTime(qint64)), Qt::QueuedConnection);
connect(this, SIGNAL(progressUpdated(int)), this, SLOT(handleProgressUpdate(int)), Qt::QueuedConnection);
}
void MainWindow::createRendererUI(QVBoxLayout *leftLayout) {
sceneLayout = new QHBoxLayout();
sceneLabel = new QLabel("Scene:", this);
sceneComboBox = new QComboBox(this);
sceneComboBox->addItem("Cornell Box");
sceneComboBox->addItem("Mirror");
// sceneComboBox->addItem("Glass Ball");
sceneComboBox->addItem("Glass");
sceneComboBox->addItem("Smoke");
sceneComboBox->addItem("Mitsuba");
sceneComboBox->addItem("Zoom");
sceneLayout->addWidget(sceneLabel);
sceneLayout->addWidget(sceneComboBox);
methodLayout = new QHBoxLayout();
methodLabel = new QLabel("Method:", this);
methodComboBox = new QComboBox(this);
methodComboBox->addItem("BRDF");
methodComboBox->addItem("Light");
methodComboBox->addItem("Mixture");
methodComboBox->addItem("NEE");
methodComboBox->addItem("MIS");
methodLayout->addWidget(methodLabel);
methodLayout->addWidget(methodComboBox);
samplesLayout = new QHBoxLayout();
samplesLabel = new QLabel("Samples:", this);
samplesSpinBox = new QSpinBox(this);
samplesSpinBox->setMinimum(1);
samplesSpinBox->setMaximum(1000);
samplesSpinBox->setValue(8);
samplesLayout->addWidget(samplesLabel);
samplesLayout->addWidget(samplesSpinBox);
// 获取三个 combobox 中最大的宽度
int maxWidth = std::max({sceneComboBox->sizeHint().width(),
methodComboBox->sizeHint().width(),
samplesSpinBox->sizeHint().width()});
// 设置每个 combobox 的最大宽度
sceneComboBox->setMaximumWidth(maxWidth);
methodComboBox->setMaximumWidth(maxWidth);
samplesSpinBox->setMaximumWidth(maxWidth);
sceneComboBox->setMinimumWidth(maxWidth);
methodComboBox->setMinimumWidth(maxWidth);
samplesSpinBox->setMinimumWidth(maxWidth);
// 在复选框和渲染按钮之间添加进度条
progressBar = new QProgressBar(this);
progressBar->setRange(0, 100); // 设置进度条的范围为0到100
progressBar->setTextVisible(true); // 显示进度文本
progressBar->setFormat("%v%"); // 设置进度文本格式
progressBar->setValue(0); // 设置初始值为0
renderButton = new QPushButton("Render", this);
connect(renderButton, &QPushButton::clicked, this, &MainWindow::startRendering);
clearOutputButton = new QPushButton("Clear Output", this);
connect(clearOutputButton, &QPushButton::clicked, this, &MainWindow::clearOutput);
outputTextEdit = new QTextEdit(this);
outputTextEdit->setReadOnly(true);
// 添加复选框并连接到 toggleOpenMP() 槽
auto *openMPCheckbox = new QCheckBox("Use OpenMP", this);
openMPCheckbox->setChecked(true); // 添加这一行,设置复选框默认选中
connect(openMPCheckbox, &QCheckBox::toggled, this, &MainWindow::toggleOpenMP);
// 将所有的布局添加到 leftLayout 中
leftLayout->addLayout(sceneLayout);
leftLayout->addLayout(methodLayout);
leftLayout->addLayout(samplesLayout);
leftLayout->addWidget(openMPCheckbox);
leftLayout->addWidget(progressBar);
leftLayout->addWidget(renderButton);
leftLayout->addWidget(outputTextEdit);
leftLayout->addWidget(clearOutputButton);
}
// Protected
void MainWindow::startRendering() {
if (renderingInProgress) {
return;
}
renderingInProgress = true;
renderButton->setEnabled(false);
int sceneChoice = sceneComboBox->currentIndex();
int samples = samplesSpinBox->value();
int methodChoice = methodComboBox->currentIndex();
QString sceneName;
QString methodNam;
switch (sceneChoice) {
case 0:
sceneName = "Cornell Box";
break;
case 1:
sceneName = "Mirror";
break;
case 2:
sceneName = "Triangle and Glass Ball";
break;
case 3:
sceneName = "Clouds";
break;
case 4:
sceneName = "Mitsuba";
break;
case 5:
sceneName = "Zoom";
break;
default:
sceneName = "Cornell Box";
break;
}
switch (methodChoice) {
case 0:
methodNam = "BRDF";
break;
case 1:
methodNam = "Light";
break;
case 2:
methodNam = "Mixture";
break;
case 3:
methodNam = "NEE";
break;
case 4:
methodNam = "MIS";
break;
default:
methodNam = "BRDF";
break;
}
// 将渲染结果显示在 outputTextEdit 中
QString output = QString("Scene: %1\n%2 samples per pixel\n%3 method.").arg(sceneName).arg(samples).arg(
methodNam);
outputTextEdit->append(output);
const char *filename = "../output/img.png";
QFuture<void> future = QtConcurrent::run(this, &MainWindow::renderInBackground, std::string(filename));
// 在渲染完成后重新启用按钮
auto *watcher = new QFutureWatcher<void>();
connect(watcher, &QFutureWatcher<void>::finished, this, [this]() {
renderButton->setEnabled(true);
renderingInProgress = false;
});
watcher->setFuture(future);
}
void MainWindow::renderInBackground(const std::string &filename) {
int sceneChoice = sceneComboBox->currentIndex();
int samples = samplesSpinBox->value();
int methodChoice = methodComboBox->currentIndex();
Scene scene;
switch (sceneChoice) {
case 0:
cornell_box(scene);
break;
case 1:
cornell_specular(scene);
break;
case 2:
cornell_triangle_glass(scene);
break;
case 3:
cornell_smoke(scene);
break;
case 4:
cornell_mitsuba(scene);
break;
case 5:
cornell_zoom(scene);
break;
default:
cornell_box(scene);
break;
}
SampleMethod sm;
switch (methodChoice) {
case 0:
sm = SampleMethod::BRDF;
break;
case 1:
sm = SampleMethod::Light;
break;
case 2:
sm = SampleMethod::Mixture;
break;
case 3:
sm = SampleMethod::NEE;
break;
case 4:
sm = SampleMethod::MIS;
break;
default:
sm = SampleMethod::BRDF;
break;
}
// RayTracer myRender(scene);
myRender.ChangeScene(scene);
myRender.setProgressCallback([this](int progress) {
emit progressUpdated(progress);
});
// Connect the RenderEngine's signal to the MainWindow's slot
// connect(&myRender, SIGNAL(updateProgress(int)), this, SLOT(handleProgressUpdate(int)), Qt::QueuedConnection);
// 开始计时
QElapsedTimer timer;
timer.start();
//渲染
myRender.render(samples, sm, filename, useOpenMP);
// 停止计时并获取所用时间
qint64 elapsedTime = timer.elapsed();
emit renderTimeUpdated(elapsedTime);
// 加载显示图像
originalPixmap = QPixmap(filename.c_str());
imageLabel->setAlignment(Qt::AlignCenter);
updateImageLabel();
}
void MainWindow::resizeEvent(QResizeEvent *event) {
QMainWindow::resizeEvent(event);
updateImageLabel();
}
void MainWindow::updateImageLabel() {
if (!originalPixmap.isNull()) {
imageLabel->setPixmap(originalPixmap.scaled(imageLabel->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation));
}
}
void MainWindow::clearOutput() {
outputTextEdit->clear();
}
void MainWindow::toggleOpenMP(bool checked) {
useOpenMP = checked;
}
void MainWindow::updateRenderTime(qint64 elapsedTime) {
// 将毫秒转换为分钟和秒
int seconds = static_cast<int>(elapsedTime / 1000); // 转换为整数秒
int minutes = seconds / 60; // 计算分钟数
seconds = seconds % 60; // 计算剩余的秒数
QString timeString = QString("Render time: %1 min %2 s\n").arg(minutes).arg(seconds);
outputTextEdit->append(timeString);
}
void MainWindow::handleProgressUpdate(int progress) {
// 在此处处理进度更新,例如更新进度条或在输出中显示进度
progressBar->setValue(progress); // 更新进度条的值
// outputTextEdit->append(QString("Progress: %1%").arg(progress));
}