pollymc/logic/BaseInstance.cpp

217 lines
4.6 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>
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
#include "pathutils.h"
#include <cmdutils.h>
2015-02-09 06:21:14 +05:30
#include "minecraft/MinecraftVersionList.h"
#include "icons/IconList.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");
connect(ENV.icons().get(), SIGNAL(iconUpdated(QString)), SLOT(iconUpdated(QString)));
2014-12-18 07:18:14 +05:30
m_settings->registerSetting("notes", "");
m_settings->registerSetting("lastLaunchTime", 0);
2013-02-26 04:06:27 +05:30
// Custom Commands
2014-12-18 07:18:14 +05:30
m_settings->registerSetting({"OverrideCommands","OverrideLaunchCmd"}, false);
m_settings->registerOverride(globalSettings->getSetting("PreLaunchCommand"));
m_settings->registerOverride(globalSettings->getSetting("PostExitCommand"));
// Console
2014-12-18 07:18:14 +05:30
m_settings->registerSetting("OverrideConsole", false);
m_settings->registerOverride(globalSettings->getSetting("ShowConsole"));
m_settings->registerOverride(globalSettings->getSetting("AutoCloseConsole"));
m_settings->registerOverride(globalSettings->getSetting("LogPrePostOutput"));
2013-02-19 04:28:53 +05:30
}
void BaseInstance::iconUpdated(QString key)
{
if(iconKey() == key)
{
emit propertiesChanged(this);
}
}
void BaseInstance::nuke()
{
deletePath(instanceRoot());
emit nuked(this);
}
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)
{
2014-12-18 07:18:14 +05:30
m_isRunning = running;
}
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();
}
2013-08-03 19:27:33 +05:30
SettingsObject &BaseInstance::settings() const
{
2014-12-18 07:18:14 +05:30
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
{
2014-09-06 21:46:56 +05:30
return !(flags() & VersionBrokenFlag);
}
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)
{
2014-12-18 07:18:14 +05:30
m_settings->set("lastLaunchTime", val);
emit propertiesChanged(this);
}
void BaseInstance::setGroupInitial(QString val)
{
2014-12-18 07:18:14 +05:30
m_group = val;
emit propertiesChanged(this);
}
void BaseInstance::setGroupPost(QString val)
{
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)
{
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
{
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)
{
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
{
return Util::Commandline::splitArgs(settings().get("JvmArgs").toString());
}