2016-08-25 02:15:38 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/core.h"
|
2016-08-25 02:15:38 +00:00
|
|
|
#include "core/settings.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_configure_graphics.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/configuration/configure_graphics.h"
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
ConfigureGraphics::ConfigureGraphics(QWidget* parent)
|
|
|
|
: QWidget(parent), ui(new Ui::ConfigureGraphics) {
|
2016-09-19 01:01:46 +00:00
|
|
|
|
2016-08-25 02:15:38 +00:00
|
|
|
ui->setupUi(this);
|
|
|
|
this->setConfiguration();
|
2018-08-20 23:14:06 +00:00
|
|
|
|
|
|
|
ui->frame_limit->setEnabled(Settings::values.use_frame_limit);
|
|
|
|
connect(ui->toggle_frame_limit, &QCheckBox::stateChanged, ui->frame_limit,
|
|
|
|
&QSpinBox::setEnabled);
|
2016-08-25 02:15:38 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 16:58:46 +00:00
|
|
|
ConfigureGraphics::~ConfigureGraphics() = default;
|
2016-08-25 02:15:38 +00:00
|
|
|
|
2016-12-30 04:28:27 +00:00
|
|
|
enum class Resolution : int {
|
|
|
|
Auto,
|
|
|
|
Scale1x,
|
|
|
|
Scale2x,
|
|
|
|
Scale3x,
|
|
|
|
Scale4x,
|
|
|
|
};
|
|
|
|
|
|
|
|
float ToResolutionFactor(Resolution option) {
|
|
|
|
switch (option) {
|
|
|
|
case Resolution::Auto:
|
|
|
|
return 0.f;
|
|
|
|
case Resolution::Scale1x:
|
|
|
|
return 1.f;
|
|
|
|
case Resolution::Scale2x:
|
|
|
|
return 2.f;
|
|
|
|
case Resolution::Scale3x:
|
|
|
|
return 3.f;
|
|
|
|
case Resolution::Scale4x:
|
|
|
|
return 4.f;
|
|
|
|
}
|
|
|
|
return 0.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
Resolution FromResolutionFactor(float factor) {
|
|
|
|
if (factor == 0.f) {
|
|
|
|
return Resolution::Auto;
|
|
|
|
} else if (factor == 1.f) {
|
|
|
|
return Resolution::Scale1x;
|
|
|
|
} else if (factor == 2.f) {
|
|
|
|
return Resolution::Scale2x;
|
|
|
|
} else if (factor == 3.f) {
|
|
|
|
return Resolution::Scale3x;
|
|
|
|
} else if (factor == 4.f) {
|
|
|
|
return Resolution::Scale4x;
|
|
|
|
}
|
|
|
|
return Resolution::Auto;
|
|
|
|
}
|
|
|
|
|
2016-08-25 02:15:38 +00:00
|
|
|
void ConfigureGraphics::setConfiguration() {
|
2016-12-30 04:28:27 +00:00
|
|
|
ui->resolution_factor_combobox->setCurrentIndex(
|
|
|
|
static_cast<int>(FromResolutionFactor(Settings::values.resolution_factor)));
|
2018-08-20 23:14:06 +00:00
|
|
|
ui->toggle_frame_limit->setChecked(Settings::values.use_frame_limit);
|
|
|
|
ui->frame_limit->setValue(Settings::values.frame_limit);
|
2018-06-26 18:36:26 +00:00
|
|
|
ui->use_accurate_framebuffers->setChecked(Settings::values.use_accurate_framebuffers);
|
2016-08-25 02:15:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigureGraphics::applyConfiguration() {
|
2016-12-30 04:28:27 +00:00
|
|
|
Settings::values.resolution_factor =
|
|
|
|
ToResolutionFactor(static_cast<Resolution>(ui->resolution_factor_combobox->currentIndex()));
|
2018-08-20 23:14:06 +00:00
|
|
|
Settings::values.use_frame_limit = ui->toggle_frame_limit->isChecked();
|
|
|
|
Settings::values.frame_limit = ui->frame_limit->value();
|
2018-06-26 18:36:26 +00:00
|
|
|
Settings::values.use_accurate_framebuffers = ui->use_accurate_framebuffers->isChecked();
|
2016-08-25 02:15:38 +00:00
|
|
|
}
|