pollymc/api/logic/BaseInstance.cpp

320 lines
7.0 KiB
C++
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 MultiMC Contributors
2013-01-15 05:12:38 +05:30
*
* 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
*
2013-01-15 05:12:38 +05:30
* 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.
*/
#include "BaseInstance.h"
2013-01-15 05:12:38 +05:30
2013-02-19 04:28:53 +05:30
#include <QFileInfo>
#include <QDir>
2016-10-03 04:25:54 +05:30
#include <QDebug>
2013-02-19 04:28:53 +05:30
2015-02-09 06:21:14 +05:30
#include "settings/INISettingsObject.h"
#include "settings/Setting.h"
#include "settings/OverrideSetting.h"
2013-02-26 02:14:36 +05:30
2015-02-09 06:21:14 +05:30
#include "minecraft/MinecraftVersionList.h"
2015-10-05 05:17:27 +05:30
#include "FileSystem.h"
#include "Commandline.h"
2013-02-19 04:28:53 +05:30
2015-02-01 07:38:25 +05:30
BaseInstance::BaseInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir)
: QObject()
2013-01-15 05:12:38 +05:30
{
2015-02-01 07:38:25 +05:30
m_settings = settings;
2014-12-18 07:18:14 +05:30
m_rootDir = rootDir;
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);
2013-02-26 04:06:27 +05:30
// 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);
// 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("LogPrePostOutput"), consoleSetting);
2013-02-19 04:28:53 +05:30
}
QString BaseInstance::getPreLaunchCommand()
{
return settings()->get("PreLaunchCommand").toString();
}
QString BaseInstance::getWrapperCommand()
{
return settings()->get("WrapperCommand").toString();
}
QString BaseInstance::getPostExitCommand()
{
return settings()->get("PostExitCommand").toString();
}
void BaseInstance::iconUpdated(QString key)
{
if(iconKey() == key)
{
emit propertiesChanged(this);
}
}
2016-10-03 04:25:54 +05:30
void BaseInstance::invalidate()
{
changeStatus(Status::Gone);
qDebug() << "Instance" << id() << "has been invalidated.";
}
void BaseInstance::nuke()
{
2016-10-03 04:25:54 +05:30
changeStatus(Status::Gone);
qDebug() << "Instance" << id() << "has been deleted by MultiMC.";
2015-10-05 05:17:27 +05:30
FS::deletePath(instanceRoot());
2016-10-03 04:25:54 +05:30
}
void BaseInstance::changeStatus(BaseInstance::Status newStatus)
{
Status status = currentStatus();
if(status != newStatus)
{
m_status = newStatus;
emit statusChanged(status, newStatus);
}
}
BaseInstance::Status BaseInstance::currentStatus() const
{
return m_status;
}
QString BaseInstance::id() const
2013-02-19 04:28:53 +05:30
{
return QFileInfo(instanceRoot()).fileName();
2013-02-19 04:28:53 +05:30
}
bool BaseInstance::isRunning() const
{
2014-12-18 07:18:14 +05:30
return m_isRunning;
}
2014-12-18 07:18:14 +05:30
void BaseInstance::setRunning(bool running)
{
if(running == m_isRunning)
return;
if(running)
{
m_timeStarted = QDateTime::currentDateTime();
}
else
{
qint64 current = settings()->get("totalTimePlayed").toLongLong();
QDateTime timeEnded = QDateTime::currentDateTime();
settings()->set("totalTimePlayed", current + m_timeStarted.secsTo(timeEnded));
emit propertiesChanged(this);
}
2014-12-18 07:18:14 +05:30
m_isRunning = running;
emit runningStatusChanged(running);
}
int64_t BaseInstance::totalTimePlayed() const
{
qint64 current = settings()->get("totalTimePlayed").toLongLong();
if(m_isRunning)
{
QDateTime timeNow = QDateTime::currentDateTime();
return current + m_timeStarted.secsTo(timeNow);
}
return current;
}
void BaseInstance::resetTimePlayed()
{
settings()->reset("totalTimePlayed");
}
2013-08-03 19:27:33 +05:30
QString BaseInstance::instanceType() const
{
2014-12-18 07:18:14 +05:30
return m_settings->get("InstanceType").toString();
2013-08-03 19:27:33 +05:30
}
QString BaseInstance::instanceRoot() const
2013-02-19 04:28:53 +05:30
{
2014-12-18 07:18:14 +05:30
return m_rootDir;
2013-02-19 04:28:53 +05:30
}
2014-09-06 21:46:56 +05:30
InstancePtr BaseInstance::getSharedPtr()
{
2015-01-28 03:01:07 +05:30
return shared_from_this();
}
SettingsObjectPtr BaseInstance::settings() const
{
return m_settings;
}
2014-09-06 21:46:56 +05:30
BaseInstance::InstanceFlags BaseInstance::flags() const
{
2014-12-18 07:18:14 +05:30
return m_flags;
}
2014-12-18 07:18:14 +05:30
2014-09-06 21:46:56 +05:30
void BaseInstance::setFlags(const InstanceFlags &flags)
{
2014-12-18 07:18:14 +05:30
if (flags != m_flags)
{
2014-12-18 07:18:14 +05:30
m_flags = flags;
emit flagsChanged();
emit propertiesChanged(this);
}
}
2014-12-18 07:18:14 +05:30
2014-09-06 21:46:56 +05:30
void BaseInstance::setFlag(const BaseInstance::InstanceFlag flag)
{
// nothing to set?
if(flag & m_flags)
return;
2014-12-18 07:18:14 +05:30
m_flags |= flag;
2014-09-06 21:46:56 +05:30
emit flagsChanged();
emit propertiesChanged(this);
}
2014-12-18 07:18:14 +05:30
2014-09-06 21:46:56 +05:30
void BaseInstance::unsetFlag(const BaseInstance::InstanceFlag flag)
{
// nothing to unset?
if(!(flag & m_flags))
return;
2014-12-18 07:18:14 +05:30
m_flags &= ~flag;
2014-09-06 21:46:56 +05:30
emit flagsChanged();
emit propertiesChanged(this);
}
bool BaseInstance::canLaunch() const
{
return (!(flags() & VersionBrokenFlag)) && (!isRunning());
}
bool BaseInstance::reload()
{
2014-12-18 07:18:14 +05:30
return m_settings->reload();
}
2013-08-03 19:27:33 +05:30
qint64 BaseInstance::lastLaunch() const
{
2014-12-18 07:18:14 +05:30
return m_settings->get("lastLaunchTime").value<qint64>();
}
2014-12-18 07:18:14 +05:30
void BaseInstance::setLastLaunch(qint64 val)
{
//FIXME: if no change, do not set. setting involves saving a file.
2014-12-18 07:18:14 +05:30
m_settings->set("lastLaunchTime", val);
emit propertiesChanged(this);
}
void BaseInstance::setGroupInitial(QString val)
{
if(m_group == val)
{
return;
}
2014-12-18 07:18:14 +05:30
m_group = val;
emit propertiesChanged(this);
}
void BaseInstance::setGroupPost(QString val)
{
if(m_group == val)
{
return;
}
setGroupInitial(val);
emit groupChanged();
}
2013-08-03 19:27:33 +05:30
QString BaseInstance::group() const
{
2014-12-18 07:18:14 +05:30
return m_group;
}
void BaseInstance::setNotes(QString val)
{
//FIXME: if no change, do not set. setting involves saving a file.
2014-12-18 07:18:14 +05:30
m_settings->set("notes", val);
}
2014-12-18 07:18:14 +05:30
2013-08-03 19:27:33 +05:30
QString BaseInstance::notes() const
{
2014-12-18 07:18:14 +05:30
return m_settings->get("notes").toString();
}
void BaseInstance::setIconKey(QString val)
2013-03-13 23:43:28 +05:30
{
//FIXME: if no change, do not set. setting involves saving a file.
2014-12-18 07:18:14 +05:30
m_settings->set("iconKey", val);
emit propertiesChanged(this);
2013-03-13 23:43:28 +05:30
}
2014-12-18 07:18:14 +05:30
2013-08-03 19:27:33 +05:30
QString BaseInstance::iconKey() const
2013-03-13 23:43:28 +05:30
{
2014-12-18 07:18:14 +05:30
return m_settings->get("iconKey").toString();
2013-03-13 23:43:28 +05:30
}
void BaseInstance::setName(QString val)
{
//FIXME: if no change, do not set. setting involves saving a file.
2014-12-18 07:18:14 +05:30
m_settings->set("name", val);
emit propertiesChanged(this);
}
2013-08-03 19:27:33 +05:30
QString BaseInstance::name() const
2013-02-26 02:14:36 +05:30
{
2014-12-18 07:18:14 +05:30
return m_settings->get("name").toString();
2013-02-26 02:14:36 +05:30
}
2014-01-13 04:08:12 +05:30
QString BaseInstance::windowTitle() const
{
return "MultiMC: " + name();
}
QStringList BaseInstance::extraArguments() const
{
2015-10-05 05:17:27 +05:30
return Commandline::splitArgs(settings()->get("JvmArgs").toString());
}
std::shared_ptr<LaunchTask> BaseInstance::getLaunchTask()
{
return m_launchProcess;
}
2016-10-03 04:25:54 +05:30
void BaseInstance::setProvider(BaseInstanceProvider* provider)
{
// only once.
assert(!m_provider);
if(m_provider)
{
qWarning() << "Provider set more than once for instance" << id();
}
m_provider = provider;
}
BaseInstanceProvider* BaseInstance::provider() const
{
return m_provider;
}