2014-02-16 15:16:14 +05:30
|
|
|
#include "MCEditTool.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QProcess>
|
2014-02-22 00:43:12 +05:30
|
|
|
#include <QUrl>
|
2014-02-16 15:16:14 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
|
|
|
#include "BaseInstance.h"
|
|
|
|
#include "minecraft/MinecraftInstance.h"
|
2014-02-16 15:16:14 +05:30
|
|
|
|
2016-11-02 07:03:55 +05:30
|
|
|
MCEditTool::MCEditTool(SettingsObjectPtr settings)
|
2014-02-16 15:16:14 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
settings->registerSetting("MCEditPath");
|
|
|
|
m_settings = settings;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MCEditTool::setPath(QString& path)
|
|
|
|
{
|
|
|
|
m_settings->set("MCEditPath", path);
|
2014-02-16 15:16:14 +05:30
|
|
|
}
|
|
|
|
|
2016-11-02 07:03:55 +05:30
|
|
|
QString MCEditTool::path() const
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
return m_settings->get("MCEditPath").toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MCEditTool::check(const QString& toolPath, QString& error)
|
|
|
|
{
|
|
|
|
if (toolPath.isEmpty())
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
error = QObject::tr("Path is empty");
|
|
|
|
return false;
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
2016-11-02 07:03:55 +05:30
|
|
|
const QDir dir(toolPath);
|
|
|
|
if (!dir.exists())
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
error = QObject::tr("Path does not exist");
|
|
|
|
return false;
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
2016-11-02 07:03:55 +05:30
|
|
|
if (!dir.exists("mcedit.sh") && !dir.exists("mcedit.py") && !dir.exists("mcedit.exe") && !dir.exists("Contents") && !dir.exists("mcedit2.exe"))
|
2015-01-28 03:01:07 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
error = QObject::tr("Path does not seem to be a MCEdit path");
|
|
|
|
return false;
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
2016-11-02 07:03:55 +05:30
|
|
|
return true;
|
2015-01-28 03:01:07 +05:30
|
|
|
}
|
|
|
|
|
2016-11-02 07:03:55 +05:30
|
|
|
QString MCEditTool::getProgramPath()
|
2014-02-16 15:16:14 +05:30
|
|
|
{
|
2014-02-22 00:43:12 +05:30
|
|
|
#ifdef Q_OS_OSX
|
2016-11-02 07:03:55 +05:30
|
|
|
return path();
|
2014-02-22 00:43:12 +05:30
|
|
|
#else
|
2016-11-02 07:03:55 +05:30
|
|
|
const QString mceditPath = path();
|
2014-02-16 16:19:55 +05:30
|
|
|
QDir mceditDir(mceditPath);
|
2016-11-02 07:03:55 +05:30
|
|
|
#ifdef Q_OS_LINUX
|
2016-11-02 05:46:41 +05:30
|
|
|
if (mceditDir.exists("mcedit.sh"))
|
2014-02-16 16:19:55 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
return mceditDir.absoluteFilePath("mcedit.sh");
|
2014-02-16 16:19:55 +05:30
|
|
|
}
|
2016-11-02 05:46:41 +05:30
|
|
|
else if (mceditDir.exists("mcedit.py"))
|
2015-06-11 03:21:05 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
return mceditDir.absoluteFilePath("mcedit.py");
|
2015-06-11 03:21:05 +05:30
|
|
|
}
|
2016-11-02 07:03:55 +05:30
|
|
|
return QString();
|
|
|
|
#elif defined(Q_OS_WIN32)
|
2015-06-11 03:21:05 +05:30
|
|
|
if (mceditDir.exists("mcedit.exe"))
|
2014-02-16 16:19:55 +05:30
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
return mceditDir.absoluteFilePath("mcedit.exe");
|
2014-02-16 16:19:55 +05:30
|
|
|
}
|
2015-04-02 02:13:18 +05:30
|
|
|
else if (mceditDir.exists("mcedit2.exe"))
|
|
|
|
{
|
2016-11-02 07:03:55 +05:30
|
|
|
return mceditDir.absoluteFilePath("mcedit2.exe");
|
2015-04-02 02:13:18 +05:30
|
|
|
}
|
2016-11-02 07:03:55 +05:30
|
|
|
return QString();
|
|
|
|
#endif
|
2014-02-22 00:43:12 +05:30
|
|
|
#endif
|
2014-02-16 15:16:14 +05:30
|
|
|
}
|