summaryrefslogtreecommitdiff
path: root/src/instancemanager.cpp
blob: c74f3c1a609040a48b4788c107ac62d9acf7c351 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*
Copyright (C) 2016 Sebastian Herbord. All rights reserved.

This file is part of Mod Organizer.

Mod Organizer is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Mod Organizer is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Mod Organizer.  If not, see <http://www.gnu.org/licenses/>.
*/


#include "instancemanager.h"
#include "selectiondialog.h"
#include <utility.h>
#include <appconfig.h>
#include <QCoreApplication>
#include <QDir>
#include <QStandardPaths>
#include <QInputDialog>
#include <QMessageBox>


static const char COMPANY_NAME[]     = "Tannin";
static const char APPLICATION_NAME[] = "Mod Organizer";
static const char INSTANCE_KEY[]     = "CurrentInstance";



InstanceManager::InstanceManager()
  : m_AppSettings(COMPANY_NAME, APPLICATION_NAME)
{
}


QString InstanceManager::currentInstance() const
{
  return m_AppSettings.value(INSTANCE_KEY, "").toString();
}

void InstanceManager::clearCurrentInstance()
{
  setCurrentInstance("");
}

void InstanceManager::setCurrentInstance(const QString &name)
{
  m_AppSettings.setValue(INSTANCE_KEY, name);
}


QString InstanceManager::queryInstanceName() const
{
  QString instanceId;
  while (instanceId.isEmpty()) {
    QInputDialog dialog;
    // would be neat if we could take the names from the game plugins but
    // the required initialization order requires the ini file to be
    // available *before* we load plugins
    dialog.setComboBoxItems({ "Oblivion", "Skyrim", "Fallout 3",
                              "Fallout NV", "Fallout 4" });
    dialog.setComboBoxEditable(true);
    dialog.setWindowTitle(QObject::tr("Enter Instance Name"));
    dialog.setLabelText(QObject::tr("Name"));
    if (dialog.exec() == QDialog::Rejected) {
      throw MOBase::MyException(QObject::tr("Canceled"));
    }
    instanceId = dialog.textValue().replace(QRegExp("[^0-9a-zA-Z ]"), "");
  }
  return instanceId;
}


QString InstanceManager::chooseInstance(const QStringList &instanceList) const
{
  SelectionDialog selection(QObject::tr("Choose Instance"), nullptr);
  selection.disableCancel();
  for (const QString &instance : instanceList) {
    selection.addChoice(instance, "", instance);
  }

  selection.addChoice(QObject::tr("New"),
                      QObject::tr("Create a new instance."),
                      "");
  if (selection.exec() == QDialog::Rejected) {
    qDebug("rejected");
    throw MOBase::MyException(QObject::tr("Canceled"));
  }

  QString choice = selection.getChoiceData().toString();

  if (choice.isEmpty()) {
    return queryInstanceName();
  } else {
    return choice;
  }
}


QString InstanceManager::instancePath() const
{
  return QDir::fromNativeSeparators(
        QStandardPaths::writableLocation(QStandardPaths::DataLocation));
}


QStringList InstanceManager::instances() const
{
  return QDir(instancePath()).entryList(QDir::Dirs | QDir::NoDotAndDotDot);
}


bool InstanceManager::portableInstall() const
{
  return QFile::exists(qApp->applicationDirPath() + "/" +
                       QString::fromStdWString(AppConfig::iniFileName()));
}


InstanceManager::InstallationMode InstanceManager::queryInstallMode() const
{
  SelectionDialog selection(QObject::tr("Installation Mode"), nullptr);
  selection.disableCancel();
  selection.addChoice(QObject::tr("Portable"),
                      QObject::tr("Everything in one directory, only one game per installation."),
                      0);
  selection.addChoice(QObject::tr("Regular"),
                      QObject::tr("Data in separate directory, multiple games supported."),
                      1);
  if (selection.exec() == QDialog::Rejected) {
    throw MOBase::MyException(QObject::tr("Canceled"));
  }

  switch (selection.getChoiceData().toInt()) {
    case 0:  return InstallationMode::PORTABLE;
    default: return InstallationMode::REGULAR;
  }
}


void InstanceManager::createDataPath(const QString &dataPath) const
{
  if (!QDir(dataPath).exists()) {
    if (!QDir().mkpath(dataPath)) {
      throw MOBase::MyException(
            QObject::tr("failed to create %1").arg(dataPath));
    } else {
      QMessageBox::information(
          nullptr, QObject::tr("Data directory created"),
          QObject::tr("New data directory created at %1. If you don't want to "
                      "store a lot of data there, reconfigure the storage "
                      "directories via settings.").arg(dataPath));
    }
  }
}


QString InstanceManager::determineDataPath()
{
  QString instanceId = currentInstance();
  QString dataPath = QDir::fromNativeSeparators(
        QStandardPaths::writableLocation(QStandardPaths::DataLocation)
        + "/" + instanceId);

  if ((instanceId.isEmpty() || !QFileInfo::exists(dataPath)) && !portableInstall()) {
    // no portable install and no selected instance

    QStringList instanceList = instances();

    if (instanceList.size() == 0) {
      if (QFileInfo(qApp->applicationDirPath()).isWritable()) {
        switch (queryInstallMode()) {
          case InstallationMode::PORTABLE: {
            instanceId = QString();
          } break;
          case InstallationMode::REGULAR: {
            instanceId = queryInstanceName();
          } break;
        }
      } else {
        instanceId = queryInstanceName();
      }
    } else {
      // don't offer portable instance if we can't set one up.
      instanceId = chooseInstance(instanceList);
    }
  }

  if (instanceId.isEmpty() || !QFileInfo::exists(dataPath)) {
    return qApp->applicationDirPath();
  } else {
    setCurrentInstance(instanceId);

    createDataPath(dataPath);

    return dataPath;
  }
}