2022-03-19 11:46:56 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
2013-01-14 23:42:38 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +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.
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +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.
|
2013-01-14 23:42:38 +00:00
|
|
|
*
|
2022-03-19 11:46:56 +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.
|
2013-01-14 23:42:38 +00:00
|
|
|
*/
|
|
|
|
|
2013-07-28 23:59:35 +01:00
|
|
|
#include "BaseInstance.h"
|
2013-01-14 23:42:38 +00:00
|
|
|
|
2013-02-18 22:58:53 +00:00
|
|
|
#include <QFileInfo>
|
2013-08-26 05:30:11 +01:00
|
|
|
#include <QDir>
|
2016-10-02 23:55:54 +01:00
|
|
|
#include <QDebug>
|
2013-02-18 22:58:53 +00:00
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "settings/INISettingsObject.h"
|
|
|
|
#include "settings/Setting.h"
|
|
|
|
#include "settings/OverrideSetting.h"
|
2013-02-25 20:44:36 +00:00
|
|
|
|
2015-10-05 00:47:27 +01:00
|
|
|
#include "FileSystem.h"
|
|
|
|
#include "Commandline.h"
|
2021-10-17 23:47:02 +01:00
|
|
|
#include "BuildConfig.h"
|
2013-02-18 22:58:53 +00:00
|
|
|
|
2015-02-01 02:08:25 +00:00
|
|
|
BaseInstance::BaseInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir)
|
2018-07-15 13:51:05 +01:00
|
|
|
: QObject()
|
2013-01-14 23:42:38 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
m_settings = settings;
|
|
|
|
m_rootDir = rootDir;
|
2014-12-18 01:48:14 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
m_settings->registerSetting("name", "Unnamed Instance");
|
|
|
|
m_settings->registerSetting("iconKey", "default");
|
|
|
|
m_settings->registerSetting("notes", "");
|
|
|
|
m_settings->registerSetting("lastLaunchTime", 0);
|
|
|
|
m_settings->registerSetting("totalTimePlayed", 0);
|
2021-07-13 16:59:33 +01:00
|
|
|
m_settings->registerSetting("lastTimePlayed", 0);
|
2022-06-04 10:59:12 +01:00
|
|
|
m_settings->registerSetting("InstanceType", "");
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// Custom Commands
|
|
|
|
auto commandSetting = m_settings->registerSetting({"OverrideCommands","OverrideLaunchCmd"}, false);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("PreLaunchCommand"), commandSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("WrapperCommand"), commandSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("PostExitCommand"), commandSetting);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// Console
|
|
|
|
auto consoleSetting = m_settings->registerSetting("OverrideConsole", false);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("ShowConsole"), consoleSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("AutoCloseConsole"), consoleSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("ShowConsoleOnError"), consoleSetting);
|
|
|
|
m_settings->registerOverride(globalSettings->getSetting("LogPrePostOutput"), consoleSetting);
|
2017-02-08 19:01:42 +00:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("ConsoleMaxLines"), nullptr);
|
|
|
|
m_settings->registerPassthrough(globalSettings->getSetting("ConsoleOverflowStop"), nullptr);
|
2013-02-18 22:58:53 +00:00
|
|
|
}
|
|
|
|
|
2015-07-21 01:38:15 +01:00
|
|
|
QString BaseInstance::getPreLaunchCommand()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return settings()->get("PreLaunchCommand").toString();
|
2015-07-21 01:38:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString BaseInstance::getWrapperCommand()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return settings()->get("WrapperCommand").toString();
|
2015-07-21 01:38:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString BaseInstance::getPostExitCommand()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return settings()->get("PostExitCommand").toString();
|
2015-07-21 01:38:15 +01:00
|
|
|
}
|
|
|
|
|
2017-02-08 19:01:42 +00:00
|
|
|
int BaseInstance::getConsoleMaxLines() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
auto lineSetting = settings()->getSetting("ConsoleMaxLines");
|
|
|
|
bool conversionOk = false;
|
|
|
|
int maxLines = lineSetting->get().toInt(&conversionOk);
|
|
|
|
if(!conversionOk)
|
|
|
|
{
|
|
|
|
maxLines = lineSetting->defValue().toInt();
|
|
|
|
qWarning() << "ConsoleMaxLines has nonsensical value, defaulting to" << maxLines;
|
|
|
|
}
|
|
|
|
return maxLines;
|
2017-02-08 19:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseInstance::shouldStopOnConsoleOverflow() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return settings()->get("ConsoleOverflowStop").toBool();
|
2017-02-08 19:01:42 +00:00
|
|
|
}
|
|
|
|
|
2013-12-31 00:24:28 +00:00
|
|
|
void BaseInstance::iconUpdated(QString key)
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
if(iconKey() == key)
|
|
|
|
{
|
|
|
|
emit propertiesChanged(this);
|
|
|
|
}
|
2013-12-31 00:24:28 +00:00
|
|
|
}
|
|
|
|
|
2016-10-02 23:55:54 +01:00
|
|
|
void BaseInstance::invalidate()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
changeStatus(Status::Gone);
|
|
|
|
qDebug() << "Instance" << id() << "has been invalidated.";
|
2016-10-02 23:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void BaseInstance::changeStatus(BaseInstance::Status newStatus)
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
Status status = currentStatus();
|
|
|
|
if(status != newStatus)
|
|
|
|
{
|
|
|
|
m_status = newStatus;
|
|
|
|
emit statusChanged(status, newStatus);
|
|
|
|
}
|
2016-10-02 23:55:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BaseInstance::Status BaseInstance::currentStatus() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_status;
|
2013-08-26 05:30:11 +01:00
|
|
|
}
|
|
|
|
|
2013-07-28 23:59:35 +01:00
|
|
|
QString BaseInstance::id() const
|
2013-02-18 22:58:53 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return QFileInfo(instanceRoot()).fileName();
|
2013-02-18 22:58:53 +00:00
|
|
|
}
|
|
|
|
|
2014-06-30 01:02:57 +01:00
|
|
|
bool BaseInstance::isRunning() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_isRunning;
|
2014-06-30 01:02:57 +01:00
|
|
|
}
|
|
|
|
|
2014-12-18 01:48:14 +00:00
|
|
|
void BaseInstance::setRunning(bool running)
|
2014-06-30 01:02:57 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
if(running == m_isRunning)
|
|
|
|
return;
|
2016-08-06 14:39:29 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
m_isRunning = running;
|
2016-10-29 01:19:42 +01:00
|
|
|
|
2020-12-09 22:16:01 +00:00
|
|
|
if(!m_settings->get("RecordGameTime").toBool())
|
|
|
|
{
|
|
|
|
emit runningStatusChanged(running);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
if(running)
|
|
|
|
{
|
|
|
|
m_timeStarted = QDateTime::currentDateTime();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QDateTime timeEnded = QDateTime::currentDateTime();
|
2021-07-13 16:59:33 +01:00
|
|
|
|
|
|
|
qint64 current = settings()->get("totalTimePlayed").toLongLong();
|
2018-07-15 13:51:05 +01:00
|
|
|
settings()->set("totalTimePlayed", current + m_timeStarted.secsTo(timeEnded));
|
2021-07-13 16:59:33 +01:00
|
|
|
settings()->set("lastTimePlayed", m_timeStarted.secsTo(timeEnded));
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
emit propertiesChanged(this);
|
|
|
|
}
|
2016-08-06 14:39:29 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
emit runningStatusChanged(running);
|
2014-06-30 01:02:57 +01:00
|
|
|
}
|
|
|
|
|
2015-09-22 00:25:34 +01:00
|
|
|
int64_t BaseInstance::totalTimePlayed() const
|
2015-09-22 00:06:45 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
qint64 current = settings()->get("totalTimePlayed").toLongLong();
|
|
|
|
if(m_isRunning)
|
|
|
|
{
|
|
|
|
QDateTime timeNow = QDateTime::currentDateTime();
|
|
|
|
return current + m_timeStarted.secsTo(timeNow);
|
|
|
|
}
|
|
|
|
return current;
|
2015-09-22 00:06:45 +01:00
|
|
|
}
|
|
|
|
|
2021-07-13 16:59:33 +01:00
|
|
|
int64_t BaseInstance::lastTimePlayed() const
|
|
|
|
{
|
|
|
|
if(m_isRunning)
|
|
|
|
{
|
|
|
|
QDateTime timeNow = QDateTime::currentDateTime();
|
|
|
|
return m_timeStarted.secsTo(timeNow);
|
|
|
|
}
|
|
|
|
return settings()->get("lastTimePlayed").toLongLong();
|
|
|
|
}
|
|
|
|
|
2015-09-22 00:25:34 +01:00
|
|
|
void BaseInstance::resetTimePlayed()
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
settings()->reset("totalTimePlayed");
|
2021-07-13 16:59:33 +01:00
|
|
|
settings()->reset("lastTimePlayed");
|
2015-09-22 00:25:34 +01:00
|
|
|
}
|
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
QString BaseInstance::instanceType() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings->get("InstanceType").toString();
|
2013-08-03 14:57:33 +01:00
|
|
|
}
|
|
|
|
|
2013-08-11 23:39:19 +01:00
|
|
|
QString BaseInstance::instanceRoot() const
|
2013-02-18 22:58:53 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_rootDir;
|
2013-02-18 22:58:53 +00:00
|
|
|
}
|
|
|
|
|
2015-05-23 15:07:47 +01:00
|
|
|
SettingsObjectPtr BaseInstance::settings() const
|
2013-02-20 14:32:26 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings;
|
2013-02-20 14:32:26 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 19:31:50 +00:00
|
|
|
bool BaseInstance::canLaunch() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return (!hasVersionBroken() && !isRunning());
|
2014-02-17 19:31:50 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 00:38:31 +00:00
|
|
|
bool BaseInstance::reloadSettings()
|
2014-03-09 07:18:50 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings->reload();
|
2013-08-24 02:09:46 +01:00
|
|
|
}
|
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
qint64 BaseInstance::lastLaunch() const
|
2013-02-20 14:32:26 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings->get("lastLaunchTime").value<qint64>();
|
2013-02-20 14:32:26 +00:00
|
|
|
}
|
2014-12-18 01:48:14 +00:00
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
void BaseInstance::setLastLaunch(qint64 val)
|
2013-02-20 14:32:26 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
//FIXME: if no change, do not set. setting involves saving a file.
|
|
|
|
m_settings->set("lastLaunchTime", val);
|
|
|
|
emit propertiesChanged(this);
|
2013-02-20 14:32:26 +00:00
|
|
|
}
|
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
void BaseInstance::setNotes(QString val)
|
2013-02-20 14:32:26 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
//FIXME: if no change, do not set. setting involves saving a file.
|
|
|
|
m_settings->set("notes", val);
|
2013-02-20 14:32:26 +00:00
|
|
|
}
|
2014-12-18 01:48:14 +00:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
QString BaseInstance::notes() const
|
2013-02-20 14:32:26 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings->get("notes").toString();
|
2013-02-20 14:32:26 +00:00
|
|
|
}
|
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
void BaseInstance::setIconKey(QString val)
|
2013-03-13 18:13:28 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
//FIXME: if no change, do not set. setting involves saving a file.
|
|
|
|
m_settings->set("iconKey", val);
|
|
|
|
emit propertiesChanged(this);
|
2013-03-13 18:13:28 +00:00
|
|
|
}
|
2014-12-18 01:48:14 +00:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
QString BaseInstance::iconKey() const
|
2013-03-13 18:13:28 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings->get("iconKey").toString();
|
2013-03-13 18:13:28 +00:00
|
|
|
}
|
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
void BaseInstance::setName(QString val)
|
2013-05-03 20:41:37 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
//FIXME: if no change, do not set. setting involves saving a file.
|
|
|
|
m_settings->set("name", val);
|
|
|
|
emit propertiesChanged(this);
|
2013-05-03 20:41:37 +01:00
|
|
|
}
|
2014-01-09 00:22:34 +00:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
QString BaseInstance::name() const
|
2013-02-25 20:44:36 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_settings->get("name").toString();
|
2013-02-25 20:44:36 +00:00
|
|
|
}
|
2014-01-09 00:22:34 +00:00
|
|
|
|
2014-01-12 22:38:12 +00:00
|
|
|
QString BaseInstance::windowTitle() const
|
|
|
|
{
|
2021-10-17 23:47:02 +01:00
|
|
|
return BuildConfig.LAUNCHER_NAME + ": " + name().replace(QRegExp("[ \n\r\t]+"), " ");
|
2014-01-12 22:38:12 +00:00
|
|
|
}
|
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
// FIXME: why is this here? move it to MinecraftInstance!!!
|
2014-01-09 00:22:34 +00:00
|
|
|
QStringList BaseInstance::extraArguments() const
|
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return Commandline::splitArgs(settings()->get("JvmArgs").toString());
|
2014-01-09 00:22:34 +00:00
|
|
|
}
|
2016-08-06 14:39:29 +01:00
|
|
|
|
2019-04-07 22:59:04 +01:00
|
|
|
shared_qobject_ptr<LaunchTask> BaseInstance::getLaunchTask()
|
2016-08-06 14:39:29 +01:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
return m_launchProcess;
|
2016-08-06 14:39:29 +01:00
|
|
|
}
|