|
@@ -43,7 +43,8 @@ SettingsWidget::SettingsWidget(PatchList *legacy_patches, QWidget *parent)
|
|
|
|
|
|
ui->apply_changes_button->hide();
|
|
|
ui->apply_changes_label->hide();
|
|
|
-
|
|
|
+ ui->patch_installing_label->hide();
|
|
|
+ settings_backup_ = Settings::createSettingsBackup();
|
|
|
setActualParametersValues();
|
|
|
}
|
|
|
|
|
@@ -87,10 +88,10 @@ void SettingsWidget::setActualParametersValues()
|
|
|
|
|
|
ui->patch_texts_checkbox->setChecked(Settings::getValue("Components/texts_main").toBool());
|
|
|
ui->patch_items_checkbox->setChecked(Settings::getValue("Components/texts_items").toBool());
|
|
|
- ui->patch_emotes_checkbox->setChecked(Settings::getValue("Components/texts/emotes").toBool());
|
|
|
+ ui->patch_emotes_checkbox->setChecked(Settings::getValue("Components/texts_emotes").toBool());
|
|
|
ui->patch_maps_checkbox->setChecked(Settings::getValue("Components/maps").toBool());
|
|
|
ui->patch_loadscreens_checkbox->setChecked(Settings::getValue("Components/loadscreens").toBool());
|
|
|
- ui->patch_textures_checkbox->setChecked(Settings::getValue("Componens/textures").toBool());
|
|
|
+ ui->patch_textures_checkbox->setChecked(Settings::getValue("Components/textures").toBool());
|
|
|
ui->patch_sounds_checkbox->setChecked(Settings::getValue("Components/sounds").toBool());
|
|
|
ui->patch_video_checkbox->setChecked(Settings::getValue("Components/videos").toBool());
|
|
|
ui->micropatch_checkbox->setChecked(Settings::getValue("Components/micropatch").toBool());
|
|
@@ -197,7 +198,6 @@ void SettingsWidget::resizeEvent(QResizeEvent *)
|
|
|
void SettingsWidget::processParameterChange() {
|
|
|
if (!settings_changed_) {
|
|
|
settings_changed_ = true;
|
|
|
- settings_backup_ = Settings::createSettingsBackup();
|
|
|
emit SettingsChanged();
|
|
|
ui->apply_changes_label->show();
|
|
|
ui->apply_changes_button->show();
|
|
@@ -225,12 +225,12 @@ void SettingsWidget::on_change_folder_button_clicked()
|
|
|
|
|
|
QString game_folder= str.replace("/LotroLauncher.exe", "").replace("\\", "/").replace("//", "/") + "/";
|
|
|
|
|
|
- if (Settings::getValue("Lotro/game_path").toString() == game_folder) {
|
|
|
+ if (settings_backup_["Lotro/game_path"].toString() == game_folder) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
processParameterChange();
|
|
|
- Settings::setValue("Lotro/game_path", game_folder);
|
|
|
+ settings_backup_["Lotro/game_path"] = game_folder;
|
|
|
ui->game_folder_path->setText(game_folder);
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
@@ -246,36 +246,36 @@ void SettingsWidget::on_lotro_base_language_combobox_currentIndexChanged(int ind
|
|
|
if (index == 2)
|
|
|
value = "FR";
|
|
|
|
|
|
- if (Settings::getValue("Lotro/original_locale").toString() == value) {
|
|
|
+ if (settings_backup_["Lotro/original_locale"].toString() == value) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
processParameterChange();
|
|
|
- Settings::setValue("Lotro/original_locale", value);
|
|
|
+ settings_backup_["Lotro/original_locale"] = value;
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::on_skiprawdownload_checkbox_stateChanged(int arg1) {
|
|
|
- processParameterChange();
|
|
|
if (arg1 == Qt::Checked) {
|
|
|
Settings::setValue("Lotro/skip_raw_download", true);
|
|
|
+ settings_backup_["Lotro/skip_raw_download"] = true;
|
|
|
}
|
|
|
if (arg1 == Qt::Unchecked) {
|
|
|
Settings::setValue("Lotro/skip_raw_download", false);
|
|
|
+ settings_backup_["Lotro/skip_raw_download"] = false;
|
|
|
}
|
|
|
- checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::on_nosplashscreen_checkbox_stateChanged(int arg1)
|
|
|
{
|
|
|
- processParameterChange();
|
|
|
if (arg1 == Qt::Checked) {
|
|
|
Settings::setValue("Lotro/no_splash_screen", true);
|
|
|
+ settings_backup_["Lotro/no_splash_screen"] = true;
|
|
|
}
|
|
|
if (arg1 == Qt::Unchecked) {
|
|
|
Settings::setValue("Lotro/no_splash_screen", false);
|
|
|
+ settings_backup_["Lotro/no_splash_screen"] = false;
|
|
|
}
|
|
|
- checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::on_backup_create_button_clicked()
|
|
@@ -325,91 +325,91 @@ void SettingsWidget::on_backup_remove_button_clicked()
|
|
|
QMetaObject::invokeMethod(legacy_patches_, "removeBackup", Qt::QueuedConnection);
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_texts_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_texts_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/texts_main", true);
|
|
|
+ if (ui->patch_texts_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/texts_main"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/texts_main", false);
|
|
|
+ settings_backup_["Components/texts_main"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-void SettingsWidget::on_patch_items_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_items_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/texts_items", true);
|
|
|
+ if (ui->patch_items_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/texts_items"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/texts_items", false);
|
|
|
+ settings_backup_["Components/texts_items"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_emotes_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_emotes_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/texts_emotes", true);
|
|
|
+ if (ui->patch_emotes_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/texts_emotes"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/texts_emotes", false);
|
|
|
+ settings_backup_["Components/texts_emotes"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_maps_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_maps_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/maps", true);
|
|
|
+ if (ui->patch_maps_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/maps"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/maps", false);
|
|
|
+ settings_backup_["Components/maps"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_textures_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_textures_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/textures", true);
|
|
|
+ if (ui->patch_textures_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/textures"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/textures", false);
|
|
|
+ settings_backup_["Components/textures"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_loadscreens_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_loadscreens_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/loadscreens", true);
|
|
|
+ if (ui->patch_loadscreens_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/loadscreens"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/loadscreens", false);
|
|
|
+ settings_backup_["Components/loadscreens"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
+
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_sounds_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_sounds_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/sounds", true);
|
|
|
+ if (ui->patch_sounds_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/sounds"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/sounds", false);
|
|
|
+ settings_backup_["Components/sounds"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_patch_video_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_patch_video_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/videos", true);
|
|
|
+ if (ui->patch_video_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/videos"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/videos", false);
|
|
|
+ settings_backup_["Components/videos"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
@@ -419,13 +419,13 @@ void SettingsWidget::on_patch_force_apply_button_clicked()
|
|
|
// TODO(endevir): Implement
|
|
|
}
|
|
|
|
|
|
-void SettingsWidget::on_micropatch_checkbox_stateChanged(int arg1)
|
|
|
+void SettingsWidget::on_micropatch_checkbox_clicked()
|
|
|
{
|
|
|
processParameterChange();
|
|
|
- if (arg1 == Qt::Checked) {
|
|
|
- Settings::setValue("Components/micropatch", true);
|
|
|
+ if (ui->micropatch_checkbox->isChecked()) {
|
|
|
+ settings_backup_["Components/micropatch"] = true;
|
|
|
} else {
|
|
|
- Settings::setValue("Components/micropatch", false);
|
|
|
+ settings_backup_["Components/micropatch"] = false;
|
|
|
}
|
|
|
checkIfParametersWereReset();
|
|
|
}
|
|
@@ -444,6 +444,7 @@ void SettingsWidget::on_interface_scale_combobox_currentIndexChanged(const QStri
|
|
|
window->resize(default_window_width * value / 100, default_window_height * value / 100);
|
|
|
|
|
|
Settings::setValue("General/UI_scale", value);
|
|
|
+ settings_backup_["General/UI_scale"] = value;
|
|
|
}
|
|
|
|
|
|
void SettingsWidget::onPatchTotalOperationsStarted()
|
|
@@ -474,6 +475,7 @@ void SettingsWidget::onPatchTotalOperationsFinished()
|
|
|
{
|
|
|
patch_operations_running_ = false;
|
|
|
ui->patch_installing_label->hide();
|
|
|
+ settings_backup_ = Settings::createSettingsBackup();
|
|
|
|
|
|
ui->change_folder_button->setEnabled(true);
|
|
|
ui->lotro_base_language_combobox->setEnabled(true);
|
|
@@ -496,5 +498,11 @@ void SettingsWidget::onPatchTotalOperationsFinished()
|
|
|
|
|
|
void SettingsWidget::on_apply_changes_button_clicked()
|
|
|
{
|
|
|
+ Settings::restoreFromSettingsBackup(settings_backup_);
|
|
|
Settings::updatePatchComponentsDependencies();
|
|
|
+ settings_changed_ = false;
|
|
|
+ ui->apply_changes_label->hide();
|
|
|
+ ui->apply_changes_button->hide();
|
|
|
+ emit SettingsApplied();
|
|
|
}
|
|
|
+
|