2022-03-20 19:01:08 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
2023-08-04 18:41:47 +01:00
|
|
|
* Prism Launcher - Minecraft Launcher
|
2022-03-20 19:01:08 +00:00
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2014-07-20 22:47:46 +01:00
|
|
|
*
|
2022-03-20 19:01:08 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
2014-07-20 22:47:46 +01:00
|
|
|
*
|
2022-03-20 19:01:08 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-07-20 22:47:46 +01:00
|
|
|
*
|
2022-03-20 19:01:08 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2014-07-20 22:47:46 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MinecraftPage.h"
|
2023-08-02 12:45:08 +01:00
|
|
|
#include "BuildConfig.h"
|
2014-07-20 22:47:46 +01:00
|
|
|
#include "ui_MinecraftPage.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
2023-08-02 17:35:35 +01:00
|
|
|
#include <QMessageBox>
|
2018-06-01 15:20:33 +01:00
|
|
|
#include <QTabBar>
|
2014-07-20 22:47:46 +01:00
|
|
|
|
2021-11-20 15:22:22 +00:00
|
|
|
#include "Application.h"
|
2023-08-02 17:35:35 +01:00
|
|
|
#include "settings/SettingsObject.h"
|
2014-07-20 22:47:46 +01:00
|
|
|
|
2023-08-02 12:45:08 +01:00
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
#include "MangoHud.h"
|
|
|
|
#endif
|
2014-07-20 22:47:46 +01:00
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
MinecraftPage::MinecraftPage(QWidget* parent) : QWidget(parent), ui(new Ui::MinecraftPage)
|
2014-07-20 22:47:46 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->setupUi(this);
|
2023-08-02 12:45:08 +01:00
|
|
|
connect(ui->useNativeGLFWCheck, &QAbstractButton::toggled, this, &MinecraftPage::onUseNativeGLFWChanged);
|
|
|
|
connect(ui->useNativeOpenALCheck, &QAbstractButton::toggled, this, &MinecraftPage::onUseNativeOpenALChanged);
|
2018-07-15 13:51:05 +01:00
|
|
|
loadSettings();
|
|
|
|
updateCheckboxStuff();
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
MinecraftPage::~MinecraftPage()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
delete ui;
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool MinecraftPage::apply()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
applySettings();
|
|
|
|
return true;
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftPage::updateCheckboxStuff()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
ui->windowWidthSpinBox->setEnabled(!ui->maximizedCheckBox->isChecked());
|
|
|
|
ui->windowHeightSpinBox->setEnabled(!ui->maximizedCheckBox->isChecked());
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftPage::on_maximizedCheckBox_clicked(bool checked)
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_UNUSED(checked);
|
|
|
|
updateCheckboxStuff();
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
|
|
|
|
2023-08-02 12:45:08 +01:00
|
|
|
void MinecraftPage::onUseNativeGLFWChanged(bool checked)
|
|
|
|
{
|
|
|
|
ui->lineEditGLFWPath->setEnabled(checked);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftPage::onUseNativeOpenALChanged(bool checked)
|
|
|
|
{
|
|
|
|
ui->lineEditOpenALPath->setEnabled(checked);
|
|
|
|
}
|
|
|
|
|
2014-07-20 22:47:46 +01:00
|
|
|
void MinecraftPage::applySettings()
|
|
|
|
{
|
2021-11-20 15:22:22 +00:00
|
|
|
auto s = APPLICATION->settings();
|
2014-07-20 22:47:46 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// Window Size
|
|
|
|
s->set("LaunchMaximized", ui->maximizedCheckBox->isChecked());
|
|
|
|
s->set("MinecraftWinWidth", ui->windowWidthSpinBox->value());
|
|
|
|
s->set("MinecraftWinHeight", ui->windowHeightSpinBox->value());
|
2020-09-10 22:10:17 +01:00
|
|
|
|
|
|
|
// Native library workarounds
|
|
|
|
s->set("UseNativeGLFW", ui->useNativeGLFWCheck->isChecked());
|
2023-08-02 12:45:08 +01:00
|
|
|
s->set("CustomGLFWPath", ui->lineEditGLFWPath->text());
|
|
|
|
s->set("UseNativeOpenAL", ui->useNativeOpenALCheck->isChecked());
|
|
|
|
s->set("CustomOpenALPath", ui->lineEditOpenALPath->text());
|
2020-12-09 22:16:01 +00:00
|
|
|
|
2022-06-29 21:37:25 +01:00
|
|
|
// Peformance related options
|
|
|
|
s->set("EnableFeralGamemode", ui->enableFeralGamemodeCheck->isChecked());
|
|
|
|
s->set("EnableMangoHud", ui->enableMangoHud->isChecked());
|
|
|
|
s->set("UseDiscreteGpu", ui->useDiscreteGpuCheck->isChecked());
|
|
|
|
|
2020-12-09 22:16:01 +00:00
|
|
|
// Game time
|
|
|
|
s->set("ShowGameTime", ui->showGameTime->isChecked());
|
2021-10-13 22:14:02 +01:00
|
|
|
s->set("ShowGlobalGameTime", ui->showGlobalGameTime->isChecked());
|
2020-12-09 22:16:01 +00:00
|
|
|
s->set("RecordGameTime", ui->recordGameTime->isChecked());
|
2023-08-18 10:24:28 +01:00
|
|
|
s->set("ShowGameTimeWithoutDays", ui->showGameTimeWithoutDays->isChecked());
|
2022-01-30 02:51:45 +00:00
|
|
|
|
|
|
|
// Miscellaneous
|
|
|
|
s->set("CloseAfterLaunch", ui->closeAfterLaunchCheck->isChecked());
|
2022-03-23 18:06:17 +00:00
|
|
|
s->set("QuitAfterGameStop", ui->quitAfterGameStopCheck->isChecked());
|
2023-07-13 02:10:48 +01:00
|
|
|
|
2023-08-04 16:00:02 +01:00
|
|
|
// Legacy settings
|
|
|
|
s->set("OnlineFixes", ui->onlineFixes->isChecked());
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MinecraftPage::loadSettings()
|
|
|
|
{
|
2021-11-20 15:22:22 +00:00
|
|
|
auto s = APPLICATION->settings();
|
2014-07-20 22:47:46 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// Window Size
|
|
|
|
ui->maximizedCheckBox->setChecked(s->get("LaunchMaximized").toBool());
|
|
|
|
ui->windowWidthSpinBox->setValue(s->get("MinecraftWinWidth").toInt());
|
|
|
|
ui->windowHeightSpinBox->setValue(s->get("MinecraftWinHeight").toInt());
|
2020-09-10 22:10:17 +01:00
|
|
|
|
|
|
|
ui->useNativeGLFWCheck->setChecked(s->get("UseNativeGLFW").toBool());
|
2023-08-02 12:45:08 +01:00
|
|
|
ui->lineEditGLFWPath->setText(s->get("CustomGLFWPath").toString());
|
|
|
|
ui->lineEditGLFWPath->setPlaceholderText(tr("Path to %1 library file").arg(BuildConfig.GLFW_LIBRARY_NAME));
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
if (!APPLICATION->m_detectedGLFWPath.isEmpty())
|
|
|
|
ui->lineEditGLFWPath->setPlaceholderText(tr("Auto detected path: %1").arg(APPLICATION->m_detectedGLFWPath));
|
|
|
|
#endif
|
|
|
|
ui->useNativeOpenALCheck->setChecked(s->get("UseNativeOpenAL").toBool());
|
|
|
|
ui->lineEditOpenALPath->setText(s->get("CustomOpenALPath").toString());
|
|
|
|
ui->lineEditOpenALPath->setPlaceholderText(tr("Path to %1 library file").arg(BuildConfig.OPENAL_LIBRARY_NAME));
|
|
|
|
#ifdef Q_OS_LINUX
|
|
|
|
if (!APPLICATION->m_detectedOpenALPath.isEmpty())
|
|
|
|
ui->lineEditOpenALPath->setPlaceholderText(tr("Auto detected path: %1").arg(APPLICATION->m_detectedOpenALPath));
|
|
|
|
#endif
|
2020-12-09 22:16:01 +00:00
|
|
|
|
2022-06-29 21:37:25 +01:00
|
|
|
ui->enableFeralGamemodeCheck->setChecked(s->get("EnableFeralGamemode").toBool());
|
|
|
|
ui->enableMangoHud->setChecked(s->get("EnableMangoHud").toBool());
|
|
|
|
ui->useDiscreteGpuCheck->setChecked(s->get("UseDiscreteGpu").toBool());
|
|
|
|
|
|
|
|
#if !defined(Q_OS_LINUX)
|
|
|
|
ui->perfomanceGroupBox->setVisible(false);
|
|
|
|
#endif
|
|
|
|
|
2022-08-08 20:03:02 +01:00
|
|
|
if (!(APPLICATION->capabilities() & Application::SupportsGameMode)) {
|
|
|
|
ui->enableFeralGamemodeCheck->setDisabled(true);
|
|
|
|
ui->enableFeralGamemodeCheck->setToolTip(tr("Feral Interactive's GameMode could not be found on your system."));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(APPLICATION->capabilities() & Application::SupportsMangoHud)) {
|
|
|
|
ui->enableMangoHud->setDisabled(true);
|
|
|
|
ui->enableMangoHud->setToolTip(tr("MangoHud could not be found on your system."));
|
|
|
|
}
|
|
|
|
|
2020-12-09 22:16:01 +00:00
|
|
|
ui->showGameTime->setChecked(s->get("ShowGameTime").toBool());
|
2021-10-13 22:14:02 +01:00
|
|
|
ui->showGlobalGameTime->setChecked(s->get("ShowGlobalGameTime").toBool());
|
2020-12-09 22:16:01 +00:00
|
|
|
ui->recordGameTime->setChecked(s->get("RecordGameTime").toBool());
|
2023-08-18 10:24:28 +01:00
|
|
|
ui->showGameTimeWithoutDays->setChecked(s->get("ShowGameTimeWithoutDays").toBool());
|
2022-01-30 02:51:45 +00:00
|
|
|
|
|
|
|
ui->closeAfterLaunchCheck->setChecked(s->get("CloseAfterLaunch").toBool());
|
2022-03-23 18:06:17 +00:00
|
|
|
ui->quitAfterGameStopCheck->setChecked(s->get("QuitAfterGameStop").toBool());
|
2023-07-13 02:10:48 +01:00
|
|
|
|
2023-08-04 16:00:02 +01:00
|
|
|
ui->onlineFixes->setChecked(s->get("OnlineFixes").toBool());
|
2014-07-20 22:47:46 +01:00
|
|
|
}
|
2022-02-22 18:23:53 +00:00
|
|
|
|
|
|
|
void MinecraftPage::retranslate()
|
|
|
|
{
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|