-
Notifications
You must be signed in to change notification settings - Fork 7
/
Config.cpp
217 lines (184 loc) · 5.58 KB
/
Config.cpp
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
208
209
210
211
212
213
214
215
216
217
/****************************************************************************
** Hyne Final Fantasy VIII Save Editor
** Copyright (C) 2009-2013 Arzel Jérôme <[email protected]>
**
** This program 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.
**
** This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#include "Config.h"
#include "Parameters.h"
const char *Config::keys[KEYS_SIZE] = {
"recentFiles", "lang", "geometry",
"font", "freq", "freq_auto", "mode", "lastCountry", "lastGameCode", "selectedFF8Installation",
"loadPath", "savePath", "savePathIcon"
};
QTranslator *Config::translator;
QStringList Config::recentFiles;
QSettings *Config::settings = nullptr;
QMap<FF8Installation::Type, FF8Installation> Config::_ff8Installations;
FF8Installation::Type Config::_selectedFF8Installation = FF8Installation::Standard;
bool Config::_ff8InstallationsSearched = false;
QString Config::translationDir()
{
#if defined(Q_OS_UNIX) && !defined(Q_OS_MAC)
return qApp->applicationDirPath().startsWith("/usr/bin")
? "/usr/share/hyne"
: qApp->applicationDirPath();
#else
return qApp->applicationDirPath();
#endif
}
quint32 Config::sec(quint32 time, int freq_value)
{
return time % freq(freq_value);
}
quint32 Config::min(quint32 time, int freq_value)
{
return (time / freq(freq_value)) % 60;
}
quint32 Config::hour(quint32 time, int freq_value)
{
return time / (60 * freq(freq_value));
}
quint32 Config::time(quint32 hour, quint32 min, quint32 sec, int freq_value)
{
int f = freq(freq_value);
return sec + min * f + hour * f * 60;
}
void Config::loadRecentFiles()
{
recentFiles = settings->value(keyToStr(RecentFiles)).toStringList();
// Compatibility with old version (< 1.6)
if (recentFiles.isEmpty()) {
for (int i = 0; i < 20; ++i) {
QString filePath = settings->value(QString("recentFile%1").arg(i), QString()).toString();
if (!filePath.isEmpty()) {
recentFiles.append(QDir::cleanPath(filePath));
}
}
}
}
void Config::addRecentFile(const QString &filePath)
{
int index = recentFiles.indexOf(filePath);
if (index != -1) recentFiles.removeAt(index);
recentFiles.prepend(filePath);
if (recentFiles.size() > 20) recentFiles.removeLast();
}
const QString &Config::recentFile(const uint &index)
{
return recentFiles.at(index);
}
bool Config::hasRecentFiles()
{
return !recentFiles.isEmpty();
}
int Config::recentFilesSize()
{
return recentFiles.size();
}
void Config::saveRecentFiles()
{
QStringList rf;
int i=0;
for (const QString &recentFile : qAsConst(recentFiles)) {
if (QFile::exists(recentFile)) {
rf.append(QDir::cleanPath(recentFile));
++i;
}
if (i > 20) break;
}
setValue(RecentFiles, rf);
// Compatibility with old version (< 1.6)
for (i = 0; i < 20; ++i)
settings->remove(QString("recentFile%1").arg(i));
}
void Config::set()
{
#ifdef Q_OS_WIN
settings = new QSettings(QString("%1/%2.ini").arg(qApp->applicationDirPath(), PROG_NAME), QSettings::IniFormat);
#else
settings = new QSettings(PROG_NAME);
#endif
if (int(_KeysSize) != KEYS_SIZE) {
qWarning() << "Config: invalid keys size!";
Q_ASSERT(false);
}
}
bool Config::mode()
{
return settings->value(keyToStr(Mode), false).toBool();
}
int Config::freq(const int freq_value)
{
if (freq_auto()) return freq_value;
return settings->value(keyToStr(Freq), 60).toUInt() == 50 ? 50 : 60;
}
bool Config::freq_auto()
{
return settings->value(keyToStr(FreqAuto), true).toBool();
}
QString Config::value(Key key, const QString &defaultValue)
{
return settings->value(keyToStr(key), defaultValue).toString();
}
void Config::setValue(Key key, const QVariant &value)
{
settings->setValue(keyToStr(key), value);
}
QVariant Config::valueVar(Key key, const QVariant &defaultValue)
{
return settings->value(keyToStr(key), defaultValue);
}
void Config::sync()
{
settings->sync();
}
const QMap<FF8Installation::Type, FF8Installation> &Config::ff8Installations()
{
if (!_ff8InstallationsSearched) {
_ff8Installations = FF8Installation::installations();
_selectedFF8Installation = FF8Installation::Type(settings->value(keyToStr(SelectedFF8Installation)).toInt());
_ff8InstallationsSearched = true;
}
return _ff8Installations;
}
bool Config::ff8IsInstalled(bool &hasSlots)
{
bool ret = false;
hasSlots = false;
for (const FF8Installation &installation : Config::ff8Installations()) {
if (installation.isValid()) {
ret = true;
}
if (installation.hasSlots()) {
hasSlots = true;
}
if (hasSlots && ret) {
break;
}
}
return ret;
}
FF8Installation Config::ff8Installation()
{
if (!_ff8InstallationsSearched) {
ff8Installations();
}
return _ff8Installations.value(_selectedFF8Installation, _ff8Installations.constBegin().value());
}
void Config::setSelectedFF8Installation(FF8Installation::Type id)
{
_selectedFF8Installation = id;
settings->setValue(keyToStr(SelectedFF8Installation), id);
}