pollymc/api/logic/tools/MCEditTool.cpp

78 lines
1.6 KiB
C++
Raw Normal View History

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