summaryrefslogtreecommitdiffstats
path: root/logic/MCEditTool.cpp
blob: 93ffb7a5acf1fe25219b37153b8293da73d52fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "MCEditTool.h"

#include <QDir>
#include <QProcess>
#include <QFileDialog>

#include "settingsobject.h"
#include "logic/BaseInstance.h"
#include "MultiMC.h"

MCEditTool::MCEditTool(BaseInstance *instance, QObject *parent)
	: BaseDetachedTool(instance, parent)
{
}

void MCEditTool::runImpl()
{
	const QString mceditPath = MMC->settings()->get("MCEditPath").toString();
	const QString save = QFileDialog::getExistingDirectory(
		MMC->activeWindow(), tr("MCEdit"),
		QDir(m_instance->minecraftRoot()).absoluteFilePath("saves"));
	if (save.isEmpty())
	{
		return;
	}
	const QString program =
		QDir(mceditPath).absoluteFilePath("mcedit.py");
	QProcess::startDetached(program, QStringList() << save, mceditPath);
}

void MCEditFactory::registerSettings(SettingsObject *settings)
{
	settings->registerSetting("MCEditPath");
}
BaseExternalTool *MCEditFactory::createTool(BaseInstance *instance, QObject *parent)
{
	return new MCEditTool(instance, parent);
}
bool MCEditFactory::check(QString *error)
{
	return check(MMC->settings()->get("MCEditPath").toString(), error);
}
bool MCEditFactory::check(const QString &path, QString *error)
{
	if (path.isEmpty())
	{
		*error = QObject::tr("Path is empty");
		return false;
	}
	const QDir dir(path);
	if (!dir.exists())
	{
		*error = QObject::tr("Path does not exist");
		return false;
	}
	if (!dir.exists("mcedit.py"))
	{
		*error = QObject::tr("Path does not contain mcedit.py");
		return false;
	}
	return true;
}