src/ldpaths.cpp

Sun, 06 Sep 2015 13:46:39 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sun, 06 Sep 2015 13:46:39 +0300
changeset 987
91281e39c50c
parent 971
c00f9665a9f8
child 999
213a7c7a3ce4
permissions
-rw-r--r--

Removed the exiting hacks

#include <QDir>
#include "ldpaths.h"
#include "mainwindow.h"
#include "dialogs/ldrawpathdialog.h"

ConfigOption (QString LDrawPath)

LDPaths::LDPaths (QObject* parent) :
	QObject (parent),
	HierarchyElement (parent),
	m_dialog (nullptr) {}

void LDPaths::checkPaths()
{
	QString pathconfig = m_config->lDrawPath();

	if (not configurePaths (pathconfig))
	{
		m_dialog = new LDrawPathDialog (pathconfig, false);
		connect (m_dialog, SIGNAL (pathChanged(QString)), this, SLOT (configurePaths (QString)));

		if (not m_dialog->exec())
			exit (1);
		else
			m_config->setLDrawPath (m_dialog->path());
	}
}

bool LDPaths::isValid (const QDir& dir) const
{
	if (dir.exists() && dir.isReadable())
	{
		QStringList mustHave = { "LDConfig.ldr", "parts", "p" };
		QStringList contents = dir.entryList (mustHave);

		if (contents.size() == mustHave.size())
			m_error = "";
		else
			m_error = "Not an LDraw directory! Must<br />have LDConfig.ldr, parts/ and p/.";
	}
	else
		m_error = "Directory does not exist or is not readable.";
	
	return m_error.isEmpty();
}

bool LDPaths::configurePaths (QString path)
{
	QDir dir;
	dir.cd (path);
	bool ok = isValid (dir);

	if (ok)
	{
		baseDir() = dir;
		ldConfigPath() = format ("%1" DIRSLASH "LDConfig.ldr", path);
		partsDir() = QDir (path + DIRSLASH "parts");
		primitivesDir() = QDir (path + DIRSLASH "p");
	}

	if (m_dialog)
		m_dialog->setStatusText (m_error.isEmpty() ? "OK" : m_error, ok);

	return ok;
}

QString& LDPaths::ldConfigPath()
{
	static QString value;
	return value;
}

QDir& LDPaths::primitivesDir()
{
	static QDir value;
	return value;
}

QDir& LDPaths::partsDir()
{
	static QDir value;
	return value;
}

QDir& LDPaths::baseDir()
{
	static QDir value;
	return value;
}

mercurial