mirror of
https://github.com/ModOrganizer2/modorganizer.git
synced 2026-07-27 13:58:24 -07:00
Compare commits
34
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db0347212a | ||
|
|
5895a1a92d | ||
|
|
c6101e34e1 | ||
|
|
75475a7984 | ||
|
|
315ed6e41a | ||
|
|
b2d613e9d1 | ||
|
|
f010c22a3b | ||
|
|
d1594798e6 | ||
|
|
09bd3dbead | ||
|
|
8c0b309bde | ||
|
|
bc7c42dbe8 | ||
|
|
9a03783f49 | ||
|
|
d73b1e38c8 | ||
|
|
b47c89661e | ||
|
|
0b84cc3d45 | ||
|
|
1bf3cc585e | ||
|
|
eae275cc84 | ||
|
|
f3cb50057b | ||
|
|
5518309300 | ||
|
|
f22bb9d6a6 | ||
|
|
382226bb46 | ||
|
|
bdf04f516c | ||
|
|
54c7131a5e | ||
|
|
15e256ef44 | ||
|
|
b23a4885e0 | ||
|
|
823dfd410b | ||
|
|
ba09054e6b | ||
|
|
694e3ed279 | ||
|
|
cffd9eb4e2 | ||
|
|
640b14ef25 | ||
|
|
47293827bb | ||
|
|
0a3169b808 | ||
|
|
f4528c7aaa | ||
|
|
4f0a6e8b88 |
+11
-11
@@ -1,23 +1,23 @@
|
||||
TEMPLATE = subdirs
|
||||
CONFIG += ordered
|
||||
|
||||
|
||||
SUBDIRS = bsatk \
|
||||
shared \
|
||||
uibase \
|
||||
organizer \
|
||||
hookdll \
|
||||
archive \
|
||||
helper \
|
||||
shared \
|
||||
uibase \
|
||||
organizer \
|
||||
hookdll \
|
||||
archive \
|
||||
helper \
|
||||
plugins \
|
||||
proxydll \
|
||||
nxmhandler \
|
||||
BossDummy \
|
||||
pythonRunner \
|
||||
esptk
|
||||
BossDummy \
|
||||
pythonRunner \
|
||||
esptk
|
||||
|
||||
plugins.depends = pythonRunner
|
||||
hookdll.depends = shared
|
||||
organizer.depends = shared, uibase, plugins
|
||||
organizer.depends = shared uibase plugins
|
||||
|
||||
CONFIG(debug, debug|release) {
|
||||
DESTDIR = outputd
|
||||
|
||||
@@ -43,6 +43,7 @@ QString CategoryFactory::categoriesFilePath()
|
||||
|
||||
CategoryFactory::CategoryFactory()
|
||||
{
|
||||
atexit(&cleanup);
|
||||
reset();
|
||||
|
||||
QFile categoryFile(categoriesFilePath());
|
||||
@@ -124,6 +125,12 @@ void CategoryFactory::setParents()
|
||||
}
|
||||
}
|
||||
|
||||
void CategoryFactory::cleanup()
|
||||
{
|
||||
delete s_Instance;
|
||||
s_Instance = NULL;
|
||||
}
|
||||
|
||||
|
||||
void CategoryFactory::saveCategories()
|
||||
{
|
||||
|
||||
@@ -180,6 +180,8 @@ private:
|
||||
|
||||
void setParents();
|
||||
|
||||
static void cleanup();
|
||||
|
||||
private:
|
||||
|
||||
static CategoryFactory *s_Instance;
|
||||
@@ -188,6 +190,8 @@ private:
|
||||
std::map<int, unsigned int> m_IDMap;
|
||||
std::map<int, unsigned int> m_NexusMap;
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -75,12 +75,14 @@ QVariant DownloadList::data(const QModelIndex &index, int role) const
|
||||
if (role == Qt::DisplayRole) {
|
||||
return index.row();
|
||||
} else if (role == Qt::ToolTipRole) {
|
||||
QString text = m_Manager->getFileName(index.row()) + "\n";
|
||||
if (m_Manager->isInfoIncomplete(index.row())) {
|
||||
return tr("Information missing, please select \"Query Info\" from the context menu to re-retrieve.");
|
||||
text += tr("Information missing, please select \"Query Info\" from the context menu to re-retrieve.");
|
||||
} else {
|
||||
NexusInfo info = m_Manager->getNexusInfo(index.row());
|
||||
return QString("%1 (ID %2) %3").arg(info.m_ModName).arg(m_Manager->getModID(index.row())).arg(info.m_Version);
|
||||
text += QString("%1 (ID %2) %3").arg(info.m_ModName).arg(m_Manager->getModID(index.row())).arg(info.m_Version);
|
||||
}
|
||||
return text;
|
||||
} else {
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
@@ -208,6 +208,11 @@ void DownloadListWidgetDelegate::issueRemoveFromView()
|
||||
emit removeDownload(m_ContextRow, false);
|
||||
}
|
||||
|
||||
void DownloadListWidgetDelegate::issueRestoreToView()
|
||||
{
|
||||
emit restoreDownload(m_ContextRow);
|
||||
}
|
||||
|
||||
void DownloadListWidgetDelegate::issueCancel()
|
||||
{
|
||||
emit cancelDownload(m_ContextRow);
|
||||
@@ -277,13 +282,18 @@ bool DownloadListWidgetDelegate::editorEvent(QEvent *event, QAbstractItemModel *
|
||||
QMenu menu(m_View);
|
||||
m_ContextRow = qobject_cast<QSortFilterProxyModel*>(model)->mapToSource(index).row();
|
||||
DownloadManager::DownloadState state = m_Manager->getState(m_ContextRow);
|
||||
bool hidden = m_Manager->isHidden(m_ContextRow);
|
||||
if (state >= DownloadManager::STATE_READY) {
|
||||
menu.addAction(tr("Install"), this, SLOT(issueInstall()));
|
||||
if (m_Manager->isInfoIncomplete(m_ContextRow)) {
|
||||
menu.addAction(tr("Query Info"), this, SLOT(issueQueryInfo()));
|
||||
}
|
||||
menu.addAction(tr("Delete"), this, SLOT(issueDelete()));
|
||||
menu.addAction(tr("Remove from View"), this, SLOT(issueRemoveFromView()));
|
||||
if (hidden) {
|
||||
menu.addAction(tr("Un-Hide"), this, SLOT(issueRestoreToView()));
|
||||
} else {
|
||||
menu.addAction(tr("Remove from View"), this, SLOT(issueRemoveFromView()));
|
||||
}
|
||||
} else if (state == DownloadManager::STATE_DOWNLOADING){
|
||||
menu.addAction(tr("Cancel"), this, SLOT(issueCancel()));
|
||||
menu.addAction(tr("Pause"), this, SLOT(issuePause()));
|
||||
@@ -295,9 +305,11 @@ bool DownloadListWidgetDelegate::editorEvent(QEvent *event, QAbstractItemModel *
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("Delete Installed..."), this, SLOT(issueDeleteCompleted()));
|
||||
menu.addAction(tr("Delete All..."), this, SLOT(issueDeleteAll()));
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("Remove Installed..."), this, SLOT(issueRemoveFromViewCompleted()));
|
||||
menu.addAction(tr("Remove All..."), this, SLOT(issueRemoveFromViewAll()));
|
||||
if (!hidden) {
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("Remove Installed..."), this, SLOT(issueRemoveFromViewCompleted()));
|
||||
menu.addAction(tr("Remove All..."), this, SLOT(issueRemoveFromViewAll()));
|
||||
}
|
||||
menu.exec(mouseEvent->globalPos());
|
||||
|
||||
event->accept();
|
||||
|
||||
@@ -65,6 +65,7 @@ signals:
|
||||
void installDownload(int index);
|
||||
void queryInfo(int index);
|
||||
void removeDownload(int index, bool deleteFile);
|
||||
void restoreDownload(int index);
|
||||
void cancelDownload(int index);
|
||||
void pauseDownload(int index);
|
||||
void resumeDownload(int index);
|
||||
@@ -83,6 +84,7 @@ private slots:
|
||||
void issueInstall();
|
||||
void issueDelete();
|
||||
void issueRemoveFromView();
|
||||
void issueRestoreToView();
|
||||
void issueCancel();
|
||||
void issuePause();
|
||||
void issueResume();
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>315</width>
|
||||
<height>75</height>
|
||||
<height>81</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="contextMenuPolicy">
|
||||
@@ -78,14 +78,14 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="sizeLabel">
|
||||
<property name="text">
|
||||
<string>0</string>
|
||||
<string notr="true">0</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>KB</string>
|
||||
<string notr="true">KB</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -195,6 +195,11 @@ void DownloadListWidgetCompactDelegate::issueRemoveFromView()
|
||||
emit removeDownload(m_ContextIndex.row(), false);
|
||||
}
|
||||
|
||||
void DownloadListWidgetCompactDelegate::issueRestoreToView()
|
||||
{
|
||||
emit restoreDownload(m_ContextIndex.row());
|
||||
}
|
||||
|
||||
void DownloadListWidgetCompactDelegate::issueCancel()
|
||||
{
|
||||
emit cancelDownload(m_ContextIndex.row());
|
||||
@@ -265,13 +270,18 @@ bool DownloadListWidgetCompactDelegate::editorEvent(QEvent *event, QAbstractItem
|
||||
QMenu menu;
|
||||
m_ContextIndex = qobject_cast<QSortFilterProxyModel*>(model)->mapToSource(index);
|
||||
DownloadManager::DownloadState state = m_Manager->getState(m_ContextIndex.row());
|
||||
bool hidden = m_Manager->isHidden(m_ContextIndex.row());
|
||||
if (state >= DownloadManager::STATE_READY) {
|
||||
menu.addAction(tr("Install"), this, SLOT(issueInstall()));
|
||||
if (m_Manager->isInfoIncomplete(m_ContextIndex.row())) {
|
||||
menu.addAction(tr("Query Info"), this, SLOT(issueQueryInfo()));
|
||||
}
|
||||
menu.addAction(tr("Delete"), this, SLOT(issueDelete()));
|
||||
menu.addAction(tr("Remove from View"), this, SLOT(issueRemoveFromView()));
|
||||
if (hidden) {
|
||||
menu.addAction(tr("Un-Hide"), this, SLOT(issueRestoreToView()));
|
||||
} else {
|
||||
menu.addAction(tr("Remove from View"), this, SLOT(issueRemoveFromView()));
|
||||
}
|
||||
} else if (state == DownloadManager::STATE_DOWNLOADING){
|
||||
menu.addAction(tr("Cancel"), this, SLOT(issueCancel()));
|
||||
menu.addAction(tr("Pause"), this, SLOT(issuePause()));
|
||||
@@ -283,9 +293,11 @@ bool DownloadListWidgetCompactDelegate::editorEvent(QEvent *event, QAbstractItem
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("Delete Installed..."), this, SLOT(issueDeleteCompleted()));
|
||||
menu.addAction(tr("Delete All..."), this, SLOT(issueDeleteAll()));
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("Remove Installed..."), this, SLOT(issueRemoveFromViewCompleted()));
|
||||
menu.addAction(tr("Remove All..."), this, SLOT(issueRemoveFromViewAll()));
|
||||
if (!hidden) {
|
||||
menu.addSeparator();
|
||||
menu.addAction(tr("Remove Installed..."), this, SLOT(issueRemoveFromViewCompleted()));
|
||||
menu.addAction(tr("Remove All..."), this, SLOT(issueRemoveFromViewAll()));
|
||||
}
|
||||
menu.exec(mouseEvent->globalPos());
|
||||
|
||||
event->accept();
|
||||
|
||||
@@ -65,6 +65,7 @@ signals:
|
||||
void installDownload(int index);
|
||||
void queryInfo(int index);
|
||||
void removeDownload(int index, bool deleteFile);
|
||||
void restoreDownload(int index);
|
||||
void cancelDownload(int index);
|
||||
void pauseDownload(int index);
|
||||
void resumeDownload(int index);
|
||||
@@ -83,6 +84,7 @@ private slots:
|
||||
void issueInstall();
|
||||
void issueDelete();
|
||||
void issueRemoveFromView();
|
||||
void issueRestoreToView();
|
||||
void issueCancel();
|
||||
void issuePause();
|
||||
void issueResume();
|
||||
|
||||
+69
-11
@@ -22,6 +22,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
#include "nxmurl.h"
|
||||
#include <gameinfo.h>
|
||||
#include <nxmurl.h>
|
||||
#include <taskprogressmanager.h>
|
||||
#include "utility.h"
|
||||
#include "json.h"
|
||||
#include "selectiondialog.h"
|
||||
@@ -63,18 +64,21 @@ DownloadManager::DownloadInfo *DownloadManager::DownloadInfo::createNew(const Ne
|
||||
info->m_CurrentUrl = 0;
|
||||
info->m_Tries = AUTOMATIC_RETRIES;
|
||||
info->m_State = STATE_STARTED;
|
||||
info->m_TaskProgressId = TaskProgressManager::instance().getId();
|
||||
|
||||
return info;
|
||||
}
|
||||
|
||||
DownloadManager::DownloadInfo *DownloadManager::DownloadInfo::createFromMeta(const QString &filePath)
|
||||
DownloadManager::DownloadInfo *DownloadManager::DownloadInfo::createFromMeta(const QString &filePath, bool showHidden)
|
||||
{
|
||||
DownloadInfo *info = new DownloadInfo;
|
||||
|
||||
QString metaFileName = filePath + ".meta";
|
||||
QSettings metaFile(metaFileName, QSettings::IniFormat);
|
||||
if (metaFile.value("removed", false).toBool()) {
|
||||
if (!showHidden && metaFile.value("removed", false).toBool()) {
|
||||
return NULL;
|
||||
} else {
|
||||
info->m_Hidden = metaFile.value("removed", false).toBool();
|
||||
}
|
||||
|
||||
QString fileName = QFileInfo(filePath).fileName();
|
||||
@@ -105,6 +109,7 @@ DownloadManager::DownloadInfo *DownloadManager::DownloadInfo::createFromMeta(con
|
||||
info->m_CurrentUrl = 0;
|
||||
info->m_Urls = metaFile.value("url", "").toString().split(";");
|
||||
info->m_Tries = 0;
|
||||
info->m_TaskProgressId = TaskProgressManager::instance().getId();
|
||||
info->m_NexusInfo.m_Name = metaFile.value("name", 0).toString();
|
||||
info->m_NexusInfo.m_ModName = metaFile.value("modName", "").toString();
|
||||
info->m_NexusInfo.m_Version = metaFile.value("version", 0).toString();
|
||||
@@ -148,7 +153,7 @@ QString DownloadManager::DownloadInfo::currentURL()
|
||||
|
||||
|
||||
DownloadManager::DownloadManager(NexusInterface *nexusInterface, QObject *parent)
|
||||
: IDownloadManager(parent), m_NexusInterface(nexusInterface), m_DirWatcher()
|
||||
: IDownloadManager(parent), m_NexusInterface(nexusInterface), m_DirWatcher(), m_ShowHidden(false)
|
||||
{
|
||||
connect(&m_DirWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
|
||||
}
|
||||
@@ -159,6 +164,7 @@ DownloadManager::~DownloadManager()
|
||||
for (QVector<DownloadInfo*>::iterator iter = m_ActiveDownloads.begin(); iter != m_ActiveDownloads.end(); ++iter) {
|
||||
delete *iter;
|
||||
}
|
||||
m_ActiveDownloads.clear();
|
||||
}
|
||||
|
||||
|
||||
@@ -184,13 +190,15 @@ void DownloadManager::pauseAll()
|
||||
::Sleep(100);
|
||||
|
||||
bool done = false;
|
||||
QTime startTime = QTime::currentTime();
|
||||
// further loops: busy waiting for all downloads to complete. This could be neater...
|
||||
while (!done) {
|
||||
while (!done && (startTime.secsTo(QTime::currentTime()) < 5)) {
|
||||
QCoreApplication::processEvents();
|
||||
done = true;
|
||||
foreach (DownloadInfo *info, m_ActiveDownloads) {
|
||||
if ((info->m_State < STATE_CANCELED) ||
|
||||
(info->m_State != STATE_FETCHINGFILEINFO) || (info->m_State != STATE_FETCHINGMODINFO)) {
|
||||
(info->m_State == STATE_FETCHINGFILEINFO) ||
|
||||
(info->m_State == STATE_FETCHINGMODINFO)) {
|
||||
done = false;
|
||||
break;
|
||||
}
|
||||
@@ -226,6 +234,12 @@ void DownloadManager::setSupportedExtensions(const QStringList &extensions)
|
||||
refreshList();
|
||||
}
|
||||
|
||||
void DownloadManager::setShowHidden(bool showHidden)
|
||||
{
|
||||
m_ShowHidden = showHidden;
|
||||
refreshList();
|
||||
}
|
||||
|
||||
void DownloadManager::refreshList()
|
||||
{
|
||||
// remove finished downloads
|
||||
@@ -263,7 +277,7 @@ void DownloadManager::refreshList()
|
||||
|
||||
QString fileName = QDir::fromNativeSeparators(m_OutputDirectory) + "/" + file;
|
||||
|
||||
DownloadInfo *info = DownloadInfo::createFromMeta(fileName);
|
||||
DownloadInfo *info = DownloadInfo::createFromMeta(fileName, m_ShowHidden);
|
||||
if (info != NULL) {
|
||||
m_ActiveDownloads.push_front(info);
|
||||
}
|
||||
@@ -362,6 +376,15 @@ void DownloadManager::startDownload(QNetworkReply *reply, DownloadInfo *newDownl
|
||||
void DownloadManager::addNXMDownload(const QString &url)
|
||||
{
|
||||
NXMUrl nxmInfo(url);
|
||||
|
||||
QString managedGame = ToQString(MOShared::GameInfo::instance().getGameShortName());
|
||||
|
||||
if (nxmInfo.game().compare(managedGame, Qt::CaseInsensitive) != 0) {
|
||||
QMessageBox::information(NULL, tr("Wrong Game"), tr("The download link is for a mod for \"%1\" but this instance of MO "
|
||||
"has been set up for \"%2\".").arg(nxmInfo.game()).arg(managedGame), QMessageBox::Ok);
|
||||
return;
|
||||
}
|
||||
|
||||
m_RequestIDs.insert(m_NexusInterface->requestFileInfo(nxmInfo.getModId(), nxmInfo.getFileId(), this, QVariant()));
|
||||
}
|
||||
|
||||
@@ -433,6 +456,22 @@ void DownloadManager::refreshAlphabeticalTranslation()
|
||||
}
|
||||
|
||||
|
||||
void DownloadManager::restoreDownload(int index)
|
||||
{
|
||||
if ((index < 0) || (index >= m_ActiveDownloads.size())) {
|
||||
throw MyException(tr("invalid index"));
|
||||
}
|
||||
|
||||
DownloadInfo *download = m_ActiveDownloads.at(index);
|
||||
download->m_Hidden = false;
|
||||
|
||||
QString filePath = m_OutputDirectory + "/" + download->m_FileName;
|
||||
|
||||
QSettings metaSettings(filePath.append(".meta"), QSettings::IniFormat);
|
||||
metaSettings.setValue("removed", false);
|
||||
}
|
||||
|
||||
|
||||
void DownloadManager::removeDownload(int index, bool deleteFile)
|
||||
{
|
||||
try {
|
||||
@@ -488,9 +527,13 @@ void DownloadManager::pauseDownload(int index)
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_ActiveDownloads.at(index)->m_State == STATE_DOWNLOADING) {
|
||||
setState(m_ActiveDownloads.at(index), STATE_PAUSING);
|
||||
qDebug("pausing %d - %s", index, m_ActiveDownloads[index]->m_FileName.toUtf8().constData());
|
||||
DownloadInfo *info = m_ActiveDownloads.at(index);
|
||||
|
||||
if (info->m_State == STATE_DOWNLOADING) {
|
||||
setState(info, STATE_PAUSING);
|
||||
qDebug("pausing %d - %s", index, info->m_FileName.toUtf8().constData());
|
||||
} else if ((info->m_State == STATE_FETCHINGMODINFO) || (info->m_State == STATE_FETCHINGFILEINFO)) {
|
||||
setState(info, STATE_READY);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -667,6 +710,14 @@ int DownloadManager::getModID(int index) const
|
||||
return m_ActiveDownloads.at(index)->m_ModID;
|
||||
}
|
||||
|
||||
bool DownloadManager::isHidden(int index) const
|
||||
{
|
||||
if ((index < 0) || (index >= m_ActiveDownloads.size())) {
|
||||
throw MyException(tr("invalid index"));
|
||||
}
|
||||
return m_ActiveDownloads.at(index)->m_Hidden;
|
||||
}
|
||||
|
||||
|
||||
NexusInfo DownloadManager::getNexusInfo(int index) const
|
||||
{
|
||||
@@ -805,6 +856,7 @@ void DownloadManager::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)
|
||||
}
|
||||
int oldProgress = info->m_Progress;
|
||||
info->m_Progress = ((info->m_ResumePos + bytesReceived) * 100) / (info->m_ResumePos + bytesTotal);
|
||||
TaskProgressManager::instance().updateProgress(info->m_TaskProgressId, bytesReceived, bytesTotal);
|
||||
if (oldProgress != info->m_Progress) {
|
||||
emit update(index);
|
||||
}
|
||||
@@ -838,6 +890,7 @@ void DownloadManager::createMetaFile(DownloadInfo *info)
|
||||
metaFile.setValue("uninstalled", info->m_State == DownloadManager::STATE_UNINSTALLED);
|
||||
metaFile.setValue("paused", (info->m_State == DownloadManager::STATE_PAUSED) ||
|
||||
(info->m_State == DownloadManager::STATE_ERROR));
|
||||
metaFile.setValue("removed", info->m_Hidden);
|
||||
|
||||
// slightly hackish...
|
||||
for (int i = 0; i < m_ActiveDownloads.size(); ++i) {
|
||||
@@ -946,7 +999,7 @@ void DownloadManager::nxmFilesAvailable(int, QVariant userData, QVariant resultD
|
||||
}
|
||||
|
||||
|
||||
void DownloadManager::nxmFileInfoAvailable(int modID, int fileID, QVariant, QVariant resultData, int requestID)
|
||||
void DownloadManager::nxmFileInfoAvailable(int modID, int fileID, QVariant userData, QVariant resultData, int requestID)
|
||||
{
|
||||
std::set<int>::iterator idIter = m_RequestIDs.find(requestID);
|
||||
if (idIter == m_RequestIDs.end()) {
|
||||
@@ -963,7 +1016,11 @@ void DownloadManager::nxmFileInfoAvailable(int modID, int fileID, QVariant, QVar
|
||||
info.m_Version = result["version"].toString();
|
||||
info.m_FileName = result["uri"].toString();
|
||||
|
||||
m_RequestIDs.insert(m_NexusInterface->requestDownloadURL(modID, fileID, this, qVariantFromValue(info)));
|
||||
if (userData.isValid()) {
|
||||
m_RequestIDs.insert(m_NexusInterface->requestDownloadURL(modID, fileID, this, qVariantFromValue(info), userData.toString()));
|
||||
} else {
|
||||
m_RequestIDs.insert(m_NexusInterface->requestDownloadURL(modID, fileID, this, qVariantFromValue(info)));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1105,6 +1162,7 @@ void DownloadManager::downloadFinished()
|
||||
QByteArray data = info->m_Reply->readAll();
|
||||
info->m_Output.write(data);
|
||||
info->m_Output.close();
|
||||
TaskProgressManager::instance().forgetMe(info->m_TaskProgressId);
|
||||
|
||||
bool error = false;
|
||||
|
||||
|
||||
+26
-2
@@ -98,10 +98,14 @@ private:
|
||||
int m_Tries;
|
||||
bool m_ReQueried;
|
||||
|
||||
quint32 m_TaskProgressId;
|
||||
|
||||
NexusInfo m_NexusInfo;
|
||||
|
||||
bool m_Hidden;
|
||||
|
||||
static DownloadInfo *createNew(const NexusInfo &nexusInfo, int modID, int fileID, const QStringList &URLs);
|
||||
static DownloadInfo *createFromMeta(const QString &filePath);
|
||||
static DownloadInfo *createFromMeta(const QString &filePath, bool showHidden);
|
||||
|
||||
/**
|
||||
* @brief rename the file
|
||||
@@ -121,7 +125,7 @@ private:
|
||||
private:
|
||||
static unsigned int s_NextDownloadID;
|
||||
private:
|
||||
DownloadInfo() : m_TotalSize(0), m_ReQueried(false) {}
|
||||
DownloadInfo() : m_TotalSize(0), m_ReQueried(false), m_Hidden(false) {}
|
||||
};
|
||||
|
||||
public:
|
||||
@@ -166,6 +170,11 @@ public:
|
||||
*/
|
||||
void setSupportedExtensions(const QStringList &extensions);
|
||||
|
||||
/**
|
||||
* @brief sets whether hidden files are to be shown after all
|
||||
*/
|
||||
void setShowHidden(bool showHidden);
|
||||
|
||||
/**
|
||||
* @brief download from an already open network connection
|
||||
*
|
||||
@@ -261,6 +270,13 @@ public:
|
||||
**/
|
||||
int getModID(int index) const;
|
||||
|
||||
/**
|
||||
* @brief determine if the specified file is supposed to be hidden
|
||||
* @param index index of the file to look up
|
||||
* @return true if the specified file is supposed to be hidden
|
||||
*/
|
||||
bool isHidden(int index) const;
|
||||
|
||||
/**
|
||||
* @brief retrieve all nexus info of the download specified by index
|
||||
*
|
||||
@@ -350,6 +366,12 @@ public slots:
|
||||
**/
|
||||
void removeDownload(int index, bool deleteFile);
|
||||
|
||||
/**
|
||||
* @brief restores the specified download to view (which was previously hidden
|
||||
* @param index index of the download to restore
|
||||
*/
|
||||
void restoreDownload(int index);
|
||||
|
||||
/**
|
||||
* @brief cancel the specified download. This will lead to the corresponding file to be deleted
|
||||
*
|
||||
@@ -434,6 +456,8 @@ private:
|
||||
|
||||
std::map<QString, int> m_DownloadFails;
|
||||
|
||||
bool m_ShowHidden;
|
||||
|
||||
};
|
||||
|
||||
#endif // DOWNLOADMANAGER_H
|
||||
|
||||
+33
-61
@@ -46,6 +46,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
#include <QDateTime>
|
||||
#include <QDirIterator>
|
||||
#include <boost/assign.hpp>
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
|
||||
|
||||
using namespace MOBase;
|
||||
@@ -183,11 +184,7 @@ bool InstallationManager::unpackSingleFile(const QString &fileName)
|
||||
QString InstallationManager::extractFile(const QString &fileName)
|
||||
{
|
||||
if (unpackSingleFile(fileName)) {
|
||||
QString tempFileName = QDir::tempPath().append("/").append(QFileInfo(fileName).fileName());
|
||||
|
||||
m_FilesToDelete.insert(tempFileName);
|
||||
|
||||
return tempFileName;
|
||||
return QDir::tempPath().append("/").append(QFileInfo(fileName).fileName());
|
||||
} else {
|
||||
return QString();
|
||||
}
|
||||
@@ -509,7 +506,6 @@ bool InstallationManager::ensureValidModName(GuessedValue<QString> &name) const
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool InstallationManager::doInstall(GuessedValue<QString> &modName, int modID,
|
||||
const QString &version, const QString &newestVersion, int categoryID)
|
||||
{
|
||||
@@ -531,7 +527,6 @@ bool InstallationManager::doInstall(GuessedValue<QString> &modName, int modID,
|
||||
m_InstallationProgress.setValue(0);
|
||||
m_InstallationProgress.setWindowModality(Qt::WindowModal);
|
||||
m_InstallationProgress.show();
|
||||
|
||||
if (!m_CurrentArchive->extract(ToWString(QDir::toNativeSeparators(targetDirectory)).c_str(),
|
||||
new MethodCallback<InstallationManager, void, float>(this, &InstallationManager::updateProgress),
|
||||
new MethodCallback<InstallationManager, void, LPCWSTR>(this, &InstallationManager::updateProgressFile),
|
||||
@@ -570,52 +565,39 @@ bool InstallationManager::doInstall(GuessedValue<QString> &modName, int modID,
|
||||
}
|
||||
|
||||
|
||||
void InstallationManager::openFile(const QString &fileName)
|
||||
{
|
||||
unpackSingleFile(fileName);
|
||||
|
||||
QString tempFileName = QDir::tempPath().append("/").append(QFileInfo(fileName).fileName());
|
||||
|
||||
SHELLEXECUTEINFOW execInfo;
|
||||
memset(&execInfo, 0, sizeof(SHELLEXECUTEINFOW));
|
||||
execInfo.cbSize = sizeof(SHELLEXECUTEINFOW);
|
||||
execInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
|
||||
execInfo.lpVerb = L"open";
|
||||
std::wstring fileNameW = ToWString(tempFileName);
|
||||
execInfo.lpFile = fileNameW.c_str();
|
||||
execInfo.nShow = SW_SHOWNORMAL;
|
||||
if (!::ShellExecuteExW(&execInfo)) {
|
||||
qCritical("failed to spawn %s: %d", tempFileName.toUtf8().constData(), ::GetLastError());
|
||||
}
|
||||
|
||||
m_FilesToDelete.insert(tempFileName);
|
||||
}
|
||||
|
||||
|
||||
// copy and pasted from mo_dll
|
||||
bool EndsWith(LPCWSTR string, LPCWSTR subString)
|
||||
{
|
||||
size_t slen = wcslen(string);
|
||||
size_t len = wcslen(subString);
|
||||
if (slen < len) {
|
||||
return false;
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < len; ++i) {
|
||||
if (towlower(string[slen - len + i]) != towlower(subString[i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool InstallationManager::wasCancelled()
|
||||
{
|
||||
return m_CurrentArchive->getLastError() == Archive::ERROR_EXTRACT_CANCELLED;
|
||||
}
|
||||
|
||||
|
||||
void InstallationManager::postInstallCleanup() const
|
||||
{
|
||||
m_CurrentArchive->close();
|
||||
|
||||
// directories we may want to remove. sorted from longest to shortest to ensure we remove subdirectories first.
|
||||
auto longestFirst = [](const QString &LHS, const QString &RHS) -> bool {
|
||||
if (LHS.size() != RHS.size()) return LHS.size() > RHS.size();
|
||||
else return LHS < RHS;
|
||||
};
|
||||
|
||||
std::set<QString, std::function<bool(const QString&, const QString&)>> directoriesToRemove(longestFirst);
|
||||
|
||||
// clean up temp files
|
||||
// TODO: this doesn't yet remove directories. Also, the files may be left there if this point isn't reached
|
||||
foreach (const QString &tempFile, m_TempFilesToDelete) {
|
||||
QFileInfo fileInfo(QDir::tempPath() + "/" + tempFile);
|
||||
QFile::remove(fileInfo.absoluteFilePath());
|
||||
directoriesToRemove.insert(fileInfo.absolutePath());
|
||||
}
|
||||
|
||||
// try to delete each directory we had temporary files in. the call fails for non-empty directories which is ok
|
||||
foreach (const QString &dir, directoriesToRemove) {
|
||||
QDir().rmdir(dir);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool InstallationManager::install(const QString &fileName, GuessedValue<QString> &modName, bool &hasIniTweaks)
|
||||
{
|
||||
QFileInfo fileInfo(fileName);
|
||||
@@ -665,7 +647,7 @@ bool InstallationManager::install(const QString &fileName, GuessedValue<QString>
|
||||
}
|
||||
|
||||
m_CurrentFile = fileInfo.absoluteFilePath();
|
||||
if (fileInfo.dir() == QDir(ToQString(GameInfo::instance().getDownloadDir()))) {
|
||||
if (fileInfo.dir() == QDir(m_DownloadsDirectory)) {
|
||||
m_CurrentFile = fileInfo.fileName();
|
||||
}
|
||||
qDebug("using mod name \"%s\" (id %d) -> %s", modName->toUtf8().constData(), modID, qPrintable(m_CurrentFile));
|
||||
@@ -674,12 +656,9 @@ bool InstallationManager::install(const QString &fileName, GuessedValue<QString>
|
||||
bool archiveOpen = m_CurrentArchive->open(ToWString(QDir::toNativeSeparators(fileName)).c_str(),
|
||||
new MethodCallback<InstallationManager, void, LPSTR>(this, &InstallationManager::queryPassword));
|
||||
|
||||
ON_BLOCK_EXIT([this] {
|
||||
this->m_CurrentArchive->close();
|
||||
});
|
||||
|
||||
DirectoryTree *filesTree = archiveOpen ? createFilesTree() : NULL;
|
||||
ON_BLOCK_EXIT(std::bind(&InstallationManager::postInstallCleanup, this));
|
||||
|
||||
QScopedPointer<DirectoryTree> filesTree(archiveOpen ? createFilesTree() : NULL);
|
||||
IPluginInstaller::EInstallResult installResult = IPluginInstaller::RESULT_NOTATTEMPTED;
|
||||
|
||||
std::sort(m_Installers.begin(), m_Installers.end(), [] (IPluginInstaller *LHS, IPluginInstaller *RHS) {
|
||||
@@ -704,7 +683,7 @@ bool InstallationManager::install(const QString &fileName, GuessedValue<QString>
|
||||
(filesTree != NULL) && (installer->isArchiveSupported(*filesTree))) {
|
||||
installResult = installerSimple->install(modName, *filesTree, version, modID);
|
||||
if (installResult == IPluginInstaller::RESULT_SUCCESS) {
|
||||
mapToArchive(filesTree);
|
||||
mapToArchive(filesTree.data());
|
||||
// the simple installer only prepares the installation, the rest works the same for all installers
|
||||
if (!doInstall(modName, modID, version, newestVersion, categoryID)) {
|
||||
installResult = IPluginInstaller::RESULT_FAILED;
|
||||
@@ -729,13 +708,6 @@ bool InstallationManager::install(const QString &fileName, GuessedValue<QString>
|
||||
qPrintable(installer->name()), e.what());
|
||||
}
|
||||
|
||||
// clean up temp files
|
||||
// TODO: this doesn't yet remove directories. Also, the files may be left there if this point isn't reached
|
||||
foreach (const QString &tempFile, m_TempFilesToDelete) {
|
||||
QFile::remove(QDir::tempPath() + "/" + tempFile);
|
||||
}
|
||||
|
||||
|
||||
// act upon the installation result. at this point the files have already been
|
||||
// extracted to the correct location
|
||||
switch (installResult) {
|
||||
|
||||
@@ -64,6 +64,12 @@ public:
|
||||
*/
|
||||
void setModsDirectory(const QString &modsDirectory) { m_ModsDirectory = modsDirectory; }
|
||||
|
||||
/**
|
||||
* @brief update the directory where downloads are stored
|
||||
* @param downloadDirectory the download directory
|
||||
*/
|
||||
void setDownloadDirectory(const QString &downloadDirectory) { m_DownloadsDirectory = downloadDirectory; }
|
||||
|
||||
/**
|
||||
* @brief install a mod from an archive
|
||||
*
|
||||
@@ -168,9 +174,7 @@ private:
|
||||
|
||||
bool ensureValidModName(MOBase::GuessedValue<QString> &name) const;
|
||||
|
||||
private slots:
|
||||
|
||||
void openFile(const QString &fileName);
|
||||
void postInstallCleanup() const;
|
||||
|
||||
private:
|
||||
|
||||
@@ -193,6 +197,7 @@ private:
|
||||
QWidget *m_ParentWidget;
|
||||
|
||||
QString m_ModsDirectory;
|
||||
QString m_DownloadsDirectory;
|
||||
|
||||
std::vector<MOBase::IPluginInstaller*> m_Installers;
|
||||
std::set<QString, CaseInsensitive> m_SupportedExtensions;
|
||||
@@ -202,7 +207,6 @@ private:
|
||||
|
||||
QProgressDialog m_InstallationProgress;
|
||||
|
||||
std::set<QString> m_FilesToDelete;
|
||||
std::set<QString> m_TempFilesToDelete;
|
||||
|
||||
};
|
||||
|
||||
+79
-46
@@ -18,6 +18,11 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
||||
#ifdef LEAK_CHECK_WITH_VLD
|
||||
#include <wchar.h>
|
||||
#include <vld.h>
|
||||
#endif // LEAK_CHECK_WITH_VLD
|
||||
|
||||
#include <QApplication>
|
||||
#include <QPushButton>
|
||||
#include <QListWidget>
|
||||
@@ -55,7 +60,6 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
#include "selectiondialog.h"
|
||||
#include "moapplication.h"
|
||||
#include "tutorialmanager.h"
|
||||
#include <QLibrary>
|
||||
#include <iostream>
|
||||
#include <QMessageBox>
|
||||
#include <QSharedMemory>
|
||||
@@ -135,7 +139,7 @@ bool bootstrap()
|
||||
QObject::tr("The current user account doesn't have the required access rights to run "
|
||||
"Mod Organizer. The neccessary changes can be made automatically (the MO directory "
|
||||
"will be made writable for the current user account). You will be asked to run "
|
||||
"\"helper.exe\" with administrative rights)."),
|
||||
"\"helper.exe\" with administrative rights."),
|
||||
QMessageBox::Yes | QMessageBox::Cancel) == QMessageBox::Yes) {
|
||||
if (!Helper::init(GameInfo::instance().getOrganizerDirectory())) {
|
||||
return false;
|
||||
@@ -151,6 +155,7 @@ bool bootstrap()
|
||||
|
||||
// verify the hook-dll exists
|
||||
QString dllName = qApp->applicationDirPath() + "/" + ToQString(AppConfig::hookDLLName());
|
||||
|
||||
HMODULE dllMod = ::LoadLibraryW(ToWString(dllName).c_str());
|
||||
if (dllMod == NULL) {
|
||||
throw windows_error("hook.dll is missing or invalid");
|
||||
@@ -395,6 +400,27 @@ int main(int argc, char *argv[])
|
||||
settings.setValue("gamePath", gamePath.toUtf8().constData());
|
||||
}
|
||||
|
||||
int edition = 0;
|
||||
if (settings.contains("game_edition")) {
|
||||
edition = settings.value("game_edition").toInt();
|
||||
} else {
|
||||
std::vector<std::wstring> editions = GameInfo::instance().getSteamVariants();
|
||||
if (editions.size() < 2) {
|
||||
edition = 0;
|
||||
} else {
|
||||
SelectionDialog selection(QObject::tr("Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)"), NULL);
|
||||
int index = 0;
|
||||
for (auto iter = editions.begin(); iter != editions.end(); ++iter) {
|
||||
selection.addChoice(ToQString(*iter), "", index++);
|
||||
}
|
||||
if (selection.exec() == QDialog::Rejected) {
|
||||
return -1;
|
||||
} else {
|
||||
settings.setValue("game_edition", selection.getChoiceData().toInt());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
qDebug("managing game at %s", qPrintable(QDir::toNativeSeparators(gamePath)));
|
||||
|
||||
ExecutablesList executablesList;
|
||||
@@ -428,63 +454,70 @@ int main(int argc, char *argv[])
|
||||
qDebug("initializing tutorials");
|
||||
TutorialManager::init(QDir::fromNativeSeparators(ToQString(GameInfo::instance().getTutorialDir())).append("/"));
|
||||
|
||||
application.setStyleFile(settings.value("Settings/style", "").toString());
|
||||
if (!application.setStyleFile(settings.value("Settings/style", "").toString())) {
|
||||
// disable invalid stylesheet
|
||||
settings.setValue("Settings/style", "");
|
||||
}
|
||||
|
||||
// set up main window and its data structures
|
||||
MainWindow mainWindow(argv[0], settings);
|
||||
QObject::connect(&mainWindow, SIGNAL(styleChanged(QString)), &application, SLOT(setStyleFile(QString)));
|
||||
QObject::connect(&instance, SIGNAL(messageSent(QString)), &mainWindow, SLOT(externalMessage(QString)));
|
||||
int res = 1;
|
||||
{ // scope to control lifetime of mainwindow
|
||||
// set up main window and its data structures
|
||||
MainWindow mainWindow(argv[0], settings);
|
||||
QObject::connect(&mainWindow, SIGNAL(styleChanged(QString)), &application, SLOT(setStyleFile(QString)));
|
||||
QObject::connect(&instance, SIGNAL(messageSent(QString)), &mainWindow, SLOT(externalMessage(QString)));
|
||||
|
||||
mainWindow.setExecutablesList(executablesList);
|
||||
mainWindow.readSettings();
|
||||
mainWindow.setExecutablesList(executablesList);
|
||||
mainWindow.readSettings();
|
||||
|
||||
QString selectedProfileName = QString::fromUtf8(settings.value("selected_profile", "").toByteArray());
|
||||
QString selectedProfileName = QString::fromUtf8(settings.value("selected_profile", "").toByteArray());
|
||||
|
||||
{ // see if there is a profile on the command line
|
||||
int profileIndex = arguments.indexOf("-p", 1);
|
||||
if ((profileIndex != -1) && (profileIndex < arguments.size() - 1)) {
|
||||
qDebug("profile overwritten on command line");
|
||||
selectedProfileName = arguments.at(profileIndex + 1);
|
||||
{ // see if there is a profile on the command line
|
||||
int profileIndex = arguments.indexOf("-p", 1);
|
||||
if ((profileIndex != -1) && (profileIndex < arguments.size() - 1)) {
|
||||
qDebug("profile overwritten on command line");
|
||||
selectedProfileName = arguments.at(profileIndex + 1);
|
||||
}
|
||||
arguments.removeAt(profileIndex);
|
||||
arguments.removeAt(profileIndex);
|
||||
}
|
||||
arguments.removeAt(profileIndex);
|
||||
arguments.removeAt(profileIndex);
|
||||
}
|
||||
qDebug("configured profile: %s", qPrintable(selectedProfileName));
|
||||
qDebug("configured profile: %s", qPrintable(selectedProfileName));
|
||||
|
||||
// if we have a command line parameter, it is either a nxm link or
|
||||
// a binary to start
|
||||
if ((arguments.size() > 1) && (!isNxmLink(arguments.at(1)))) {
|
||||
QString exeName = arguments.at(1);
|
||||
qDebug("starting %s from command line", qPrintable(exeName));
|
||||
arguments.removeFirst(); // remove application name (ModOrganizer.exe)
|
||||
arguments.removeFirst(); // remove binary name
|
||||
// pass the remaining parameters to the binary
|
||||
mainWindow.spawnProgram(exeName, arguments.join(" "), selectedProfileName, QDir());
|
||||
return 0;
|
||||
}
|
||||
// if we have a command line parameter, it is either a nxm link or
|
||||
// a binary to start
|
||||
if ((arguments.size() > 1) && (!isNxmLink(arguments.at(1)))) {
|
||||
QString exeName = arguments.at(1);
|
||||
qDebug("starting %s from command line", qPrintable(exeName));
|
||||
arguments.removeFirst(); // remove application name (ModOrganizer.exe)
|
||||
arguments.removeFirst(); // remove binary name
|
||||
// pass the remaining parameters to the binary
|
||||
mainWindow.startApplication(exeName, arguments, QString(), selectedProfileName);
|
||||
return 0;
|
||||
}
|
||||
|
||||
mainWindow.createFirstProfile();
|
||||
mainWindow.createFirstProfile();
|
||||
|
||||
if (selectedProfileName.length() != 0) {
|
||||
if (!mainWindow.setCurrentProfile(selectedProfileName)) {
|
||||
if (selectedProfileName.length() != 0) {
|
||||
if (!mainWindow.setCurrentProfile(selectedProfileName)) {
|
||||
mainWindow.setCurrentProfile(1);
|
||||
qWarning("failed to set profile: %s",
|
||||
selectedProfileName.toUtf8().constData());
|
||||
}
|
||||
} else {
|
||||
mainWindow.setCurrentProfile(1);
|
||||
qWarning("failed to set profile: %s",
|
||||
selectedProfileName.toUtf8().constData());
|
||||
}
|
||||
} else {
|
||||
mainWindow.setCurrentProfile(1);
|
||||
}
|
||||
|
||||
qDebug("displaying main window");
|
||||
mainWindow.show();
|
||||
qDebug("displaying main window");
|
||||
mainWindow.show();
|
||||
|
||||
if ((arguments.size() > 1) &&
|
||||
(isNxmLink(arguments.at(1)))) {
|
||||
qDebug("starting download from command line: %s", qPrintable(arguments.at(1)));
|
||||
mainWindow.externalMessage(arguments.at(1));
|
||||
if ((arguments.size() > 1) &&
|
||||
(isNxmLink(arguments.at(1)))) {
|
||||
qDebug("starting download from command line: %s", qPrintable(arguments.at(1)));
|
||||
mainWindow.externalMessage(arguments.at(1));
|
||||
}
|
||||
splash.finish(&mainWindow);
|
||||
res = application.exec();
|
||||
}
|
||||
splash.finish(&mainWindow);
|
||||
return application.exec();
|
||||
return res;
|
||||
} catch (const std::exception &e) {
|
||||
reportError(e.what());
|
||||
return 1;
|
||||
|
||||
+262
-48
File diff suppressed because it is too large
Load Diff
+43
-5
@@ -50,6 +50,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
#include "savegameinfowidgetgamebryo.h"
|
||||
#include <guessedvalue.h>
|
||||
#include <directoryentry.h>
|
||||
#include <boost/signals2.hpp>
|
||||
|
||||
namespace Ui {
|
||||
class MainWindow;
|
||||
@@ -59,11 +60,32 @@ class QToolButton;
|
||||
class ModListSortProxy;
|
||||
class ModListGroupCategoriesProxy;
|
||||
|
||||
|
||||
class MainWindow : public QMainWindow, public MOBase::IOrganizer, public MOBase::IPluginDiagnose
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_INTERFACES(MOBase::IPluginDiagnose)
|
||||
|
||||
private:
|
||||
|
||||
struct SignalCombinerAnd
|
||||
{
|
||||
typedef bool result_type;
|
||||
template<typename InputIterator>
|
||||
bool operator()(InputIterator first, InputIterator last) const
|
||||
{
|
||||
while (first != last) {
|
||||
if (!(*first)) {
|
||||
return false;
|
||||
}
|
||||
++first;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
typedef boost::signals2::signal<bool (const QString&), SignalCombinerAnd> SignalAboutToRunApplication;
|
||||
|
||||
public:
|
||||
explicit MainWindow(const QString &exeName, QSettings &initSettings, QWidget *parent = 0);
|
||||
~MainWindow();
|
||||
@@ -76,7 +98,6 @@ public:
|
||||
void refreshBSAList();
|
||||
void refreshDataTree();
|
||||
void refreshSaveList();
|
||||
void refreshModList();
|
||||
|
||||
void setExecutablesList(const ExecutablesList &executablesList);
|
||||
|
||||
@@ -89,8 +110,8 @@ public:
|
||||
|
||||
void createFirstProfile();
|
||||
|
||||
void spawnProgram(const QString &fileName, const QString &argumentsArg,
|
||||
const QString &profileName, const QDir ¤tDirectory);
|
||||
/* void spawnProgram(const QString &fileName, const QString &argumentsArg,
|
||||
const QString &profileName, const QDir ¤tDirectory);*/
|
||||
|
||||
void loadPlugins();
|
||||
|
||||
@@ -111,7 +132,16 @@ public:
|
||||
virtual QString pluginDataPath() const;
|
||||
virtual void installMod(const QString &fileName);
|
||||
virtual QString resolvePath(const QString &fileName) const;
|
||||
virtual QStringList listDirectories(const QString &directoryName) const;
|
||||
virtual QStringList findFiles(const QString &path, const std::function<bool(const QString &)> &filter) const;
|
||||
virtual QList<FileInfo> findFileInfos(const QString &path, const std::function<bool(const FileInfo&)> &filter) const;
|
||||
|
||||
virtual MOBase::IDownloadManager *downloadManager();
|
||||
virtual MOBase::IPluginList *pluginList();
|
||||
virtual MOBase::IModList *modList();
|
||||
virtual HANDLE startApplication(const QString &executable, const QStringList &args = QStringList(), const QString &cwd = "", const QString &profile = "");
|
||||
virtual bool onAboutToRun(const std::function<bool(const QString&)> &func);
|
||||
virtual void refreshModList(bool saveChanges = true);
|
||||
|
||||
virtual std::vector<unsigned int> activeProblems() const;
|
||||
virtual QString shortDescription(unsigned int key) const;
|
||||
@@ -153,7 +183,6 @@ signals:
|
||||
void styleChanged(const QString &styleFile);
|
||||
|
||||
|
||||
|
||||
void modListDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
|
||||
|
||||
protected:
|
||||
@@ -247,6 +276,7 @@ private:
|
||||
private:
|
||||
|
||||
static const unsigned int PROBLEM_PLUGINSNOTLOADED = 1;
|
||||
static const unsigned int PROBLEM_TOOMANYPLUGINS = 2;
|
||||
|
||||
private:
|
||||
|
||||
@@ -320,6 +350,8 @@ private:
|
||||
|
||||
QFile m_PluginsCheck;
|
||||
|
||||
SignalAboutToRunApplication m_AboutToRun;
|
||||
|
||||
private slots:
|
||||
|
||||
void showMessage(const QString &message);
|
||||
@@ -466,6 +498,10 @@ private slots:
|
||||
void removeFromToolbar();
|
||||
void overwriteClosed(int);
|
||||
|
||||
void changeVersioningScheme();
|
||||
void ignoreUpdate();
|
||||
void unignoreUpdate();
|
||||
|
||||
private slots: // ui slots
|
||||
// actions
|
||||
void on_actionAdd_Profile_triggered();
|
||||
@@ -478,7 +514,7 @@ private slots: // ui slots
|
||||
void on_actionEndorseMO_triggered();
|
||||
|
||||
void on_bsaList_customContextMenuRequested(const QPoint &pos);
|
||||
void on_bsaList_itemChanged(QTreeWidgetItem *item, int column);
|
||||
void bsaList_itemMoved();
|
||||
void on_btnRefreshData_clicked();
|
||||
void on_categoriesList_customContextMenuRequested(const QPoint &pos);
|
||||
void on_compactBox_toggled(bool checked);
|
||||
@@ -498,6 +534,8 @@ private slots: // ui slots
|
||||
void on_groupCombo_currentIndexChanged(int index);
|
||||
void on_categoriesList_itemSelectionChanged();
|
||||
void on_linkButton_pressed();
|
||||
void on_showHiddenBox_toggled(bool checked);
|
||||
void on_bsaList_itemChanged(QTreeWidgetItem *item, int column);
|
||||
};
|
||||
|
||||
#endif // MAINWINDOW_H
|
||||
|
||||
+73
-15
@@ -31,7 +31,16 @@
|
||||
<property name="spacing">
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
@@ -721,11 +730,20 @@ p, li { white-space: pre-wrap; }
|
||||
<string notr="true">Archives</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_9">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QTreeWidget" name="bsaList">
|
||||
<widget class="MOBase::SortableTreeWidget" name="bsaList">
|
||||
<property name="contextMenuPolicy">
|
||||
<enum>Qt::CustomContextMenu</enum>
|
||||
</property>
|
||||
@@ -742,7 +760,7 @@ BSAs checked here are loaded in such a way that your installation order is obeye
|
||||
<set>QAbstractItemView::NoEditTriggers</set>
|
||||
</property>
|
||||
<property name="showDropIndicator" stdset="0">
|
||||
<bool>false</bool>
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="dragEnabled">
|
||||
<bool>false</bool>
|
||||
@@ -751,10 +769,10 @@ BSAs checked here are loaded in such a way that your installation order is obeye
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="dragDropMode">
|
||||
<enum>QAbstractItemView::NoDragDrop</enum>
|
||||
<enum>QAbstractItemView::DragDrop</enum>
|
||||
</property>
|
||||
<property name="defaultDropAction">
|
||||
<enum>Qt::IgnoreAction</enum>
|
||||
<enum>Qt::MoveAction</enum>
|
||||
</property>
|
||||
<property name="selectionMode">
|
||||
<enum>QAbstractItemView::SingleSelection</enum>
|
||||
@@ -768,6 +786,12 @@ BSAs checked here are loaded in such a way that your installation order is obeye
|
||||
<property name="itemsExpandable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="columnCount">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<attribute name="headerVisible">
|
||||
<bool>false</bool>
|
||||
</attribute>
|
||||
<attribute name="headerDefaultSectionSize">
|
||||
<number>200</number>
|
||||
</attribute>
|
||||
@@ -776,11 +800,6 @@ BSAs checked here are loaded in such a way that your installation order is obeye
|
||||
<string>File</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Mod</string>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@@ -800,7 +819,16 @@ BSAs checked here are loaded in such a way that your installation order is obeye
|
||||
<string>Data</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
@@ -870,7 +898,16 @@ BSAs checked here are loaded in such a way that your installation order is obeye
|
||||
<string>Saves</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
@@ -899,7 +936,16 @@ p, li { white-space: pre-wrap; }
|
||||
<string>Downloads</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_7">
|
||||
<property name="margin">
|
||||
<property name="leftMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<item>
|
||||
@@ -968,7 +1014,7 @@ p, li { white-space: pre-wrap; }
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout" stretch="1,2">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout" stretch="1,0,2">
|
||||
<item>
|
||||
<widget class="QCheckBox" name="compactBox">
|
||||
<property name="text">
|
||||
@@ -976,6 +1022,13 @@ p, li { white-space: pre-wrap; }
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="showHiddenBox">
|
||||
<property name="text">
|
||||
<string>Show Hidden</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="MOBase::LineEditClear" name="downloadFilterEdit">
|
||||
<property name="placeholderText">
|
||||
@@ -1217,6 +1270,11 @@ Right now this has very limited functionality</string>
|
||||
<extends>QTreeView</extends>
|
||||
<header>modlistview.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>MOBase::SortableTreeWidget</class>
|
||||
<extends>QTreeWidget</extends>
|
||||
<header>sortabletreewidget.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="resources.qrc"/>
|
||||
|
||||
+24
-9
@@ -19,20 +19,23 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
#include "moapplication.h"
|
||||
#include "report.h"
|
||||
#include "utility.h"
|
||||
#include <utility.h>
|
||||
#include <appconfig.h>
|
||||
#include <QFile>
|
||||
#include <QStringList>
|
||||
#include <QPlastiqueStyle>
|
||||
#include <QCleanlooksStyle>
|
||||
|
||||
|
||||
MOApplication::MOApplication(int argc, char **argv)
|
||||
: QApplication(argc, argv)
|
||||
{
|
||||
connect(&m_StyleWatcher, SIGNAL(fileChanged(QString)), SLOT(updateStyle(QString)));
|
||||
m_DefaultStyle = style()->objectName();
|
||||
}
|
||||
|
||||
|
||||
void MOApplication::setStyleFile(const QString &styleName)
|
||||
bool MOApplication::setStyleFile(const QString &styleName)
|
||||
{
|
||||
// remove all files from watch
|
||||
QStringList currentWatch = m_StyleWatcher.files();
|
||||
@@ -42,11 +45,16 @@ void MOApplication::setStyleFile(const QString &styleName)
|
||||
// set new stylesheet or clear it
|
||||
if (styleName.length() != 0) {
|
||||
QString styleSheetName = applicationDirPath() + "/" + MOBase::ToQString(AppConfig::stylesheetsPath()) + "/" + styleName;
|
||||
m_StyleWatcher.addPath(styleSheetName);
|
||||
updateStyle(styleSheetName);
|
||||
if (QFile::exists(styleSheetName)) {
|
||||
m_StyleWatcher.addPath(styleSheetName);
|
||||
updateStyle(styleSheetName);
|
||||
} else {
|
||||
updateStyle(styleName);
|
||||
}
|
||||
} else {
|
||||
setStyleSheet("");
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -70,11 +78,18 @@ bool MOApplication::notify(QObject *receiver, QEvent *event)
|
||||
|
||||
void MOApplication::updateStyle(const QString &fileName)
|
||||
{
|
||||
QFile file(fileName);
|
||||
if (file.open(QFile::ReadOnly)) {
|
||||
setStyleSheet(file.readAll());
|
||||
if (fileName == "Plastique") {
|
||||
setStyle(new QPlastiqueStyle);
|
||||
setStyleSheet("");
|
||||
} else if (fileName == "Cleanlooks") {
|
||||
setStyle(new QCleanlooksStyle);
|
||||
setStyleSheet("");
|
||||
} else {
|
||||
qDebug("no stylesheet");
|
||||
setStyle(m_DefaultStyle);
|
||||
if (QFile::exists(fileName)) {
|
||||
setStyleSheet(QString("file:///%1").arg(fileName));
|
||||
} else {
|
||||
qWarning("invalid stylesheet: %s", qPrintable(fileName));
|
||||
}
|
||||
}
|
||||
file.close();
|
||||
}
|
||||
|
||||
+32
-30
@@ -17,33 +17,35 @@ You should have received a copy of the GNU General Public License
|
||||
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef MOAPPLICATION_H
|
||||
#define MOAPPLICATION_H
|
||||
|
||||
#include <QApplication>
|
||||
#include <QFileSystemWatcher>
|
||||
|
||||
|
||||
class MOApplication : public QApplication {
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
MOApplication(int argc, char **argv);
|
||||
|
||||
virtual bool notify (QObject *receiver, QEvent *event);
|
||||
|
||||
public slots:
|
||||
|
||||
void setStyleFile(const QString &style);
|
||||
|
||||
private slots:
|
||||
|
||||
void updateStyle(const QString &fileName);
|
||||
|
||||
private:
|
||||
|
||||
QFileSystemWatcher m_StyleWatcher;
|
||||
};
|
||||
|
||||
|
||||
#endif // MOAPPLICATION_H
|
||||
#ifndef MOAPPLICATION_H
|
||||
#define MOAPPLICATION_H
|
||||
|
||||
#include <QApplication>
|
||||
#include <QFileSystemWatcher>
|
||||
|
||||
|
||||
class MOApplication : public QApplication {
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
MOApplication(int argc, char **argv);
|
||||
|
||||
virtual bool notify (QObject *receiver, QEvent *event);
|
||||
|
||||
public slots:
|
||||
|
||||
bool setStyleFile(const QString &style);
|
||||
|
||||
private slots:
|
||||
|
||||
void updateStyle(const QString &fileName);
|
||||
|
||||
private:
|
||||
|
||||
QFileSystemWatcher m_StyleWatcher;
|
||||
QString m_DefaultStyle;
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif // MOAPPLICATION_H
|
||||
|
||||
+64
-26
@@ -303,10 +303,11 @@ ModInfoRegular::ModInfoRegular(const QDir &path, DirectoryEntry **directoryStruc
|
||||
QString metaFileName = path.absoluteFilePath("meta.ini");
|
||||
QSettings metaFile(metaFileName, QSettings::IniFormat);
|
||||
|
||||
m_Notes = metaFile.value("notes", "").toString();
|
||||
m_NexusID = metaFile.value("modid", -1).toInt();
|
||||
m_Notes = metaFile.value("notes", "").toString();
|
||||
m_NexusID = metaFile.value("modid", -1).toInt();
|
||||
m_Version.parse(metaFile.value("version", "").toString());
|
||||
m_NewestVersion = metaFile.value("newestVersion", "").toString();
|
||||
m_NewestVersion = metaFile.value("newestVersion", "").toString();
|
||||
m_IgnoredVersion = metaFile.value("ignoredVersion", "").toString();
|
||||
m_InstallationFile = metaFile.value("installationFile", "").toString();
|
||||
m_NexusDescription = metaFile.value("nexusDescription", "").toString();
|
||||
m_LastNexusQuery = QDateTime::fromString(metaFile.value("lastNexusQuery", "").toString(), Qt::ISODate);
|
||||
@@ -323,6 +324,7 @@ ModInfoRegular::ModInfoRegular(const QDir &path, DirectoryEntry **directoryStruc
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
QString categoriesString = metaFile.value("category", "").toString();
|
||||
|
||||
QStringList categories = categoriesString.split(',', QString::SkipEmptyParts);
|
||||
@@ -350,8 +352,6 @@ ModInfoRegular::ModInfoRegular(const QDir &path, DirectoryEntry **directoryStruc
|
||||
ModInfoRegular::~ModInfoRegular()
|
||||
{
|
||||
try {
|
||||
//TODO this may cause the meta-file and the directory to be
|
||||
// re-created after a remove
|
||||
saveMeta();
|
||||
} catch (const std::exception &e) {
|
||||
qCritical("failed to save meta information for \"%s\": %s",
|
||||
@@ -371,28 +371,26 @@ bool ModInfoRegular::isEmpty() const
|
||||
|
||||
void ModInfoRegular::saveMeta()
|
||||
{
|
||||
if (m_MetaInfoChanged) {
|
||||
if (QFile::exists(absolutePath().append("/meta.ini"))) {
|
||||
QSettings metaFile(absolutePath().append("/meta.ini"), QSettings::IniFormat);
|
||||
if (metaFile.status() == QSettings::NoError) {
|
||||
std::set<int> temp = m_Categories;
|
||||
temp.erase(m_PrimaryCategory);
|
||||
metaFile.setValue("category", QString("%1").arg(m_PrimaryCategory) + "," + SetJoin(temp, ","));
|
||||
metaFile.setValue("newestVersion", m_NewestVersion.canonicalString());
|
||||
metaFile.setValue("version", m_Version.canonicalString());
|
||||
metaFile.setValue("modid", m_NexusID);
|
||||
metaFile.setValue("notes", m_Notes);
|
||||
metaFile.setValue("nexusDescription", m_NexusDescription);
|
||||
metaFile.setValue("lastNexusQuery", m_LastNexusQuery.toString(Qt::ISODate));
|
||||
if (m_EndorsedState != ENDORSED_UNKNOWN) {
|
||||
metaFile.setValue("endorsed", m_EndorsedState);
|
||||
}
|
||||
|
||||
} else {
|
||||
reportError(tr("failed to write %1/meta.ini: %2").arg(absolutePath()).arg(metaFile.status()));
|
||||
// only write meta data if the mod directory exists
|
||||
if (m_MetaInfoChanged && QFile::exists(absolutePath())) {
|
||||
QSettings metaFile(absolutePath().append("/meta.ini"), QSettings::IniFormat);
|
||||
if (metaFile.status() == QSettings::NoError) {
|
||||
std::set<int> temp = m_Categories;
|
||||
temp.erase(m_PrimaryCategory);
|
||||
metaFile.setValue("category", QString("%1").arg(m_PrimaryCategory) + "," + SetJoin(temp, ","));
|
||||
metaFile.setValue("newestVersion", m_NewestVersion.canonicalString());
|
||||
metaFile.setValue("ignoredVersion", m_IgnoredVersion.canonicalString());
|
||||
metaFile.setValue("version", m_Version.canonicalString());
|
||||
metaFile.setValue("modid", m_NexusID);
|
||||
metaFile.setValue("notes", m_Notes);
|
||||
metaFile.setValue("nexusDescription", m_NexusDescription);
|
||||
metaFile.setValue("lastNexusQuery", m_LastNexusQuery.toString(Qt::ISODate));
|
||||
if (m_EndorsedState != ENDORSED_UNKNOWN) {
|
||||
metaFile.setValue("endorsed", m_EndorsedState);
|
||||
}
|
||||
metaFile.sync(); // sync needs to be called to ensure the file is created
|
||||
} else {
|
||||
qWarning("mod %s has no meta.ini at %s/meta.ini", m_Name.toUtf8().constData(), absolutePath().toUtf8().constData());
|
||||
reportError(tr("failed to write %1/meta.ini: %2").arg(absolutePath()).arg(metaFile.status()));
|
||||
}
|
||||
m_MetaInfoChanged = false;
|
||||
}
|
||||
@@ -401,10 +399,22 @@ void ModInfoRegular::saveMeta()
|
||||
|
||||
bool ModInfoRegular::updateAvailable() const
|
||||
{
|
||||
if (m_IgnoredVersion.isValid() && (m_IgnoredVersion == m_NewestVersion)) {
|
||||
return false;
|
||||
}
|
||||
return m_NewestVersion.isValid() && (m_Version < m_NewestVersion);
|
||||
}
|
||||
|
||||
|
||||
bool ModInfoRegular::downgradeAvailable() const
|
||||
{
|
||||
if (m_IgnoredVersion.isValid() && (m_IgnoredVersion == m_NewestVersion)) {
|
||||
return false;
|
||||
}
|
||||
return m_NewestVersion.isValid() && (m_NewestVersion < m_Version);
|
||||
}
|
||||
|
||||
|
||||
void ModInfoRegular::nxmDescriptionAvailable(int, QVariant, QVariant resultData)
|
||||
{
|
||||
QVariantMap result = resultData.toMap();
|
||||
@@ -545,6 +555,10 @@ void ModInfoRegular::setNexusDescription(const QString &description)
|
||||
m_MetaInfoChanged = true;
|
||||
}
|
||||
|
||||
void ModInfoRegular::addNexusCategory(int categoryID)
|
||||
{
|
||||
m_Categories.insert(CategoryFactory::instance().resolveNexusID(categoryID));
|
||||
}
|
||||
|
||||
void ModInfoRegular::setIsEndorsed(bool endorsed)
|
||||
{
|
||||
@@ -575,12 +589,27 @@ void ModInfoRegular::endorse(bool doEndorse)
|
||||
}
|
||||
}
|
||||
|
||||
void ModInfoRegular::clearCaches()
|
||||
{
|
||||
m_LastConflictCheck = QTime();
|
||||
}
|
||||
|
||||
|
||||
QString ModInfoRegular::absolutePath() const
|
||||
{
|
||||
return m_Path;
|
||||
}
|
||||
|
||||
void ModInfoRegular::ignoreUpdate(bool ignore)
|
||||
{
|
||||
if (ignore) {
|
||||
m_IgnoredVersion = m_NewestVersion;
|
||||
} else {
|
||||
m_IgnoredVersion.clear();
|
||||
}
|
||||
m_MetaInfoChanged = true;
|
||||
}
|
||||
|
||||
|
||||
std::vector<ModInfo::EFlag> ModInfoRegular::getFlags() const
|
||||
{
|
||||
@@ -666,7 +695,7 @@ ModInfoRegular::EConflictType ModInfoRegular::isConflicted() const
|
||||
{
|
||||
// this is costy so cache the result
|
||||
QTime now = QTime::currentTime();
|
||||
if (abs(m_LastConflictCheck.secsTo(now)) > 10) {
|
||||
if (m_LastConflictCheck.isNull() || (m_LastConflictCheck.secsTo(now) > 10)) {
|
||||
bool overwrite = false;
|
||||
bool overwritten = false;
|
||||
bool regular = false;
|
||||
@@ -798,6 +827,15 @@ ModInfoOverwrite::ModInfoOverwrite()
|
||||
}
|
||||
|
||||
|
||||
bool ModInfoOverwrite::isEmpty() const
|
||||
{
|
||||
QDirIterator iter(absolutePath(), QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs);
|
||||
if (!iter.hasNext()) return true;
|
||||
iter.next();
|
||||
if ((iter.fileName() == "meta.ini") && !iter.hasNext()) return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
QString ModInfoOverwrite::absolutePath() const
|
||||
{
|
||||
return QDir::fromNativeSeparators(ToQString(GameInfo::instance().getOverwriteDir()));
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user