2022-03-21 00:31:08 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 Jamie Mansfield <jmansfield@cadixdev.org>
|
2022-03-24 20:30:23 +05:30
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2014-07-21 03:17:46 +05:30
|
|
|
*
|
2022-03-21 00:31:08 +05:30
|
|
|
* 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-21 03:17:46 +05:30
|
|
|
*
|
2022-03-21 00:31:08 +05:30
|
|
|
* 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-21 03:17:46 +05:30
|
|
|
*
|
2022-03-21 00:31:08 +05:30
|
|
|
* 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-21 03:17:46 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "JavaPage.h"
|
2015-05-04 04:50:48 +05:30
|
|
|
#include "JavaCommon.h"
|
2014-07-21 03:17:46 +05:30
|
|
|
#include "ui_JavaPage.h"
|
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QDir>
|
2018-06-01 19:50:33 +05:30
|
|
|
#include <QTabBar>
|
2014-07-21 03:17:46 +05:30
|
|
|
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/dialogs/VersionSelectDialog.h"
|
2014-07-21 03:17:46 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "java/JavaUtils.h"
|
2016-01-02 05:05:54 +05:30
|
|
|
#include "java/JavaInstallList.h"
|
2014-07-21 03:17:46 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2021-11-20 20:52:22 +05:30
|
|
|
#include "Application.h"
|
2017-07-12 02:13:35 +05:30
|
|
|
#include <sys.h>
|
2014-07-21 03:17:46 +05:30
|
|
|
|
|
|
|
JavaPage::JavaPage(QWidget *parent) : QWidget(parent), ui(new Ui::JavaPage)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->setupUi(this);
|
|
|
|
ui->tabWidget->tabBar()->hide();
|
2015-02-01 23:24:58 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
loadSettings();
|
2022-11-11 19:32:08 +05:30
|
|
|
updateThresholds();
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
JavaPage::~JavaPage()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
delete ui;
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool JavaPage::apply()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
applySettings();
|
|
|
|
return true;
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void JavaPage::applySettings()
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
auto s = APPLICATION->settings();
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
// Memory
|
|
|
|
int min = ui->minMemSpinBox->value();
|
|
|
|
int max = ui->maxMemSpinBox->value();
|
|
|
|
if(min < max)
|
|
|
|
{
|
|
|
|
s->set("MinMemAlloc", min);
|
|
|
|
s->set("MaxMemAlloc", max);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s->set("MinMemAlloc", max);
|
|
|
|
s->set("MaxMemAlloc", min);
|
|
|
|
}
|
|
|
|
s->set("PermGen", ui->permGenSpinBox->value());
|
|
|
|
|
|
|
|
// Java Settings
|
|
|
|
s->set("JavaPath", ui->javaPathTextBox->text());
|
2022-05-29 09:45:20 +05:30
|
|
|
s->set("JvmArgs", ui->jvmArgsTextBox->toPlainText().replace("\n", " "));
|
2022-03-24 19:17:22 +05:30
|
|
|
s->set("IgnoreJavaCompatibility", ui->skipCompatibilityCheckbox->isChecked());
|
2022-04-30 18:49:57 +05:30
|
|
|
s->set("IgnoreJavaWizard", ui->skipJavaWizardCheckbox->isChecked());
|
2018-07-15 18:21:05 +05:30
|
|
|
JavaCommon::checkJVMArgs(s->get("JvmArgs").toString(), this->parentWidget());
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
|
|
|
void JavaPage::loadSettings()
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
auto s = APPLICATION->settings();
|
2018-07-15 18:21:05 +05:30
|
|
|
// Memory
|
|
|
|
int min = s->get("MinMemAlloc").toInt();
|
|
|
|
int max = s->get("MaxMemAlloc").toInt();
|
|
|
|
if(min < max)
|
|
|
|
{
|
|
|
|
ui->minMemSpinBox->setValue(min);
|
|
|
|
ui->maxMemSpinBox->setValue(max);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ui->minMemSpinBox->setValue(max);
|
|
|
|
ui->maxMemSpinBox->setValue(min);
|
|
|
|
}
|
|
|
|
ui->permGenSpinBox->setValue(s->get("PermGen").toInt());
|
|
|
|
|
|
|
|
// Java Settings
|
|
|
|
ui->javaPathTextBox->setText(s->get("JavaPath").toString());
|
2022-05-23 14:20:17 +05:30
|
|
|
ui->jvmArgsTextBox->setPlainText(s->get("JvmArgs").toString());
|
2022-03-24 19:17:22 +05:30
|
|
|
ui->skipCompatibilityCheckbox->setChecked(s->get("IgnoreJavaCompatibility").toBool());
|
2022-04-30 18:49:57 +05:30
|
|
|
ui->skipJavaWizardCheckbox->setChecked(s->get("IgnoreJavaWizard").toBool());
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void JavaPage::on_javaDetectBtn_clicked()
|
|
|
|
{
|
2022-06-15 01:30:24 +05:30
|
|
|
if (JavaUtils::getJavaCheckPath().isEmpty()) {
|
|
|
|
JavaCommon::javaCheckNotFound(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
JavaInstallPtr java;
|
2014-07-21 03:17:46 +05:30
|
|
|
|
2021-11-20 20:52:22 +05:30
|
|
|
VersionSelectDialog vselect(APPLICATION->javalist().get(), tr("Select a Java version"), this, true);
|
2018-07-15 18:21:05 +05:30
|
|
|
vselect.setResizeOn(2);
|
|
|
|
vselect.exec();
|
2014-07-21 03:17:46 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (vselect.result() == QDialog::Accepted && vselect.selectedVersion())
|
|
|
|
{
|
|
|
|
java = std::dynamic_pointer_cast<JavaInstall>(vselect.selectedVersion());
|
|
|
|
ui->javaPathTextBox->setText(java->path);
|
|
|
|
}
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
2015-10-01 02:22:55 +05:30
|
|
|
|
2014-07-21 03:17:46 +05:30
|
|
|
void JavaPage::on_javaBrowseBtn_clicked()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString raw_path = QFileDialog::getOpenFileName(this, tr("Find Java executable"));
|
|
|
|
|
|
|
|
// do not allow current dir - it's dirty. Do not allow dirs that don't exist
|
|
|
|
if(raw_path.isEmpty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString cooked_path = FS::NormalizePath(raw_path);
|
|
|
|
QFileInfo javaInfo(cooked_path);;
|
|
|
|
if(!javaInfo.exists() || !javaInfo.isExecutable())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ui->javaPathTextBox->setText(cooked_path);
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
2015-05-04 04:50:48 +05:30
|
|
|
|
2014-07-21 03:17:46 +05:30
|
|
|
void JavaPage::on_javaTestBtn_clicked()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(checker)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
checker.reset(new JavaCommon::TestCheck(
|
2022-05-29 18:05:57 +05:30
|
|
|
this, ui->javaPathTextBox->text(), ui->jvmArgsTextBox->toPlainText().replace("\n", " "),
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->minMemSpinBox->value(), ui->maxMemSpinBox->value(), ui->permGenSpinBox->value()));
|
|
|
|
connect(checker.get(), SIGNAL(finished()), SLOT(checkerFinished()));
|
|
|
|
checker->run();
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
|
|
|
|
2022-11-11 19:32:08 +05:30
|
|
|
void JavaPage::on_maxMemSpinBox_valueChanged(int i)
|
|
|
|
{
|
|
|
|
updateThresholds();
|
|
|
|
}
|
|
|
|
|
2015-05-04 04:50:48 +05:30
|
|
|
void JavaPage::checkerFinished()
|
2014-07-21 03:17:46 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
checker.reset();
|
2014-07-21 03:17:46 +05:30
|
|
|
}
|
2022-02-22 23:53:53 +05:30
|
|
|
|
|
|
|
void JavaPage::retranslate()
|
|
|
|
{
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
}
|
2022-11-11 19:32:08 +05:30
|
|
|
|
|
|
|
void JavaPage::updateThresholds()
|
|
|
|
{
|
|
|
|
auto sysMiB = Sys::getSystemRam() / Sys::mebibyte;
|
|
|
|
unsigned int maxMem = ui->maxMemSpinBox->value();
|
|
|
|
|
|
|
|
if (maxMem >= sysMiB) {
|
|
|
|
ui->labelMaxMemIcon->setText(u8"✘");
|
|
|
|
ui->labelMaxMemIcon->setToolTip(tr("Your maximum memory allocation exceeds your system memory capacity."));
|
|
|
|
} else if (maxMem > (sysMiB * 0.9)) {
|
|
|
|
ui->labelMaxMemIcon->setText(u8"⚠");
|
|
|
|
ui->labelMaxMemIcon->setToolTip(tr("Your maximum memory allocation approaches your system memory capacity."));
|
|
|
|
} else {
|
|
|
|
ui->labelMaxMemIcon->setText(u8"✔");
|
|
|
|
ui->labelMaxMemIcon->setToolTip("");
|
|
|
|
}
|
|
|
|
}
|