Updated Ukrainian translation.
[LameXP.git] / src / Model_Settings.cpp
blobb1403a83818ab15f691022e9a1b84a5b4a202a51
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "Model_Settings.h"
24 #include "Global.h"
26 #include <QSettings>
27 #include <QDesktopServices>
28 #include <QApplication>
29 #include <QString>
30 #include <QFileInfo>
31 #include <QDir>
32 #include <QStringList>
33 #include <QLocale>
34 #include <QRegExp>
37 ////////////////////////////////////////////////////////////
38 //Macros
39 ////////////////////////////////////////////////////////////
41 #define LAMEXP_MAKE_OPTION_I(OPT,DEF) \
42 int SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toInt(); } \
43 void SettingsModel::OPT(int value) { m_settings->setValue(g_settingsId_##OPT, value); } \
44 int SettingsModel::OPT##Default(void) { return DEF; }
46 #define LAMEXP_MAKE_OPTION_S(OPT,DEF) \
47 QString SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toString().trimmed(); } \
48 void SettingsModel::OPT(const QString &value) { m_settings->setValue(g_settingsId_##OPT, value); } \
49 QString SettingsModel::OPT##Default(void) { return DEF; }
51 #define LAMEXP_MAKE_OPTION_B(OPT,DEF) \
52 bool SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toBool(); } \
53 void SettingsModel::OPT(bool value) { m_settings->setValue(g_settingsId_##OPT, value); } \
54 bool SettingsModel::OPT##Default(void) { return DEF; }
56 #define LAMEXP_MAKE_OPTION_U(OPT,DEF) \
57 unsigned int SettingsModel::OPT(void) { return m_settings->value(g_settingsId_##OPT, DEF).toUInt(); } \
58 void SettingsModel::OPT(unsigned int value) { m_settings->setValue(g_settingsId_##OPT, value); } \
59 unsigned int SettingsModel::OPT##Default(void) { return DEF; }
61 #define LAMEXP_MAKE_ID(DEC,STR) static const char *g_settingsId_##DEC = STR
62 #define REMOVE_GROUP(OBJ,ID) OBJ->beginGroup(ID); OBJ->remove(""); OBJ->endGroup();
64 ////////////////////////////////////////////////////////////
65 //Constants
66 ////////////////////////////////////////////////////////////
68 //Setting ID's
69 LAMEXP_MAKE_ID(versionNumber, "VersionNumber");
70 LAMEXP_MAKE_ID(licenseAccepted, "LicenseAccepted");
71 LAMEXP_MAKE_ID(interfaceStyle, "InterfaceStyle");
72 LAMEXP_MAKE_ID(compressionEncoder, "Compression/Encoder");
73 LAMEXP_MAKE_ID(compressionRCMode, "Compression/RCMode");
74 LAMEXP_MAKE_ID(compressionBitrate, "Compression/Bitrate");
75 LAMEXP_MAKE_ID(outputDir, "OutputDirectory/SelectedPath");
76 LAMEXP_MAKE_ID(outputToSourceDir, "OutputDirectory/OutputToSourceFolder");
77 LAMEXP_MAKE_ID(prependRelativeSourcePath, "OutputDirectory/PrependRelativeSourcePath");
78 LAMEXP_MAKE_ID(favoriteOutputFolders, "OutputDirectory/Favorites");
79 LAMEXP_MAKE_ID(mostRecentInputPath, "InputDirectory/MostRecentPath");
80 LAMEXP_MAKE_ID(writeMetaTags, "Flags/WriteMetaTags");
81 LAMEXP_MAKE_ID(createPlaylist, "Flags/AutoCreatePlaylist");
82 LAMEXP_MAKE_ID(autoUpdateLastCheck, "AutoUpdate/LastCheck");
83 LAMEXP_MAKE_ID(autoUpdateEnabled, "AutoUpdate/Enabled");
84 LAMEXP_MAKE_ID(autoUpdateCheckBeta, "AutoUpdate/CheckForBetaVersions");
85 LAMEXP_MAKE_ID(soundsEnabled, "Flags/EnableSounds");
86 LAMEXP_MAKE_ID(neroAacNotificationsEnabled, "Flags/EnableNeroAacNotifications");
87 LAMEXP_MAKE_ID(antivirNotificationsEnabled, "Flags/EnableAntivirusNotifications");
88 LAMEXP_MAKE_ID(dropBoxWidgetEnabled, "Flags/EnableDropBoxWidget");
89 LAMEXP_MAKE_ID(shellIntegrationEnabled, "Flags/EnableShellIntegration");
90 LAMEXP_MAKE_ID(currentLanguage, "Localization/Language");
91 LAMEXP_MAKE_ID(currentLanguageFile, "Localization/UseQMFile");
92 LAMEXP_MAKE_ID(lameAlgoQuality, "AdvancedOptions/LAME/AlgorithmQuality");
93 LAMEXP_MAKE_ID(lameChannelMode, "AdvancedOptions/LAME/ChannelMode");
94 LAMEXP_MAKE_ID(forceStereoDownmix, "AdvancedOptions/StereoDownmix/Force");
95 LAMEXP_MAKE_ID(bitrateManagementEnabled, "AdvancedOptions/BitrateManagement/Enabled");
96 LAMEXP_MAKE_ID(bitrateManagementMinRate, "AdvancedOptions/BitrateManagement/MinRate");
97 LAMEXP_MAKE_ID(bitrateManagementMaxRate, "AdvancedOptions/BitrateManagement/MaxRate");
98 LAMEXP_MAKE_ID(aftenAudioCodingMode, "AdvancedOptions/Aften/AudioCodingMode");
99 LAMEXP_MAKE_ID(aftenDynamicRangeCompression, "AdvancedOptions/Aften/DynamicRangeCompression");
100 LAMEXP_MAKE_ID(aftenFastBitAllocation, "AdvancedOptions/Aften/FastBitAllocation");
101 LAMEXP_MAKE_ID(aftenExponentSearchSize, "AdvancedOptions/Aften/ExponentSearchSize");
102 LAMEXP_MAKE_ID(samplingRate, "AdvancedOptions/Common/Resampling");
103 LAMEXP_MAKE_ID(neroAACEnable2Pass, "AdvancedOptions/AACEnc/Enable2Pass");
104 LAMEXP_MAKE_ID(aacEncProfile, "AdvancedOptions/AACEnc/ForceProfile");
105 LAMEXP_MAKE_ID(opusOptimizeFor, "AdvancedOptions/Opus/OptimizeForSignalType");
106 LAMEXP_MAKE_ID(opusComplexity, "AdvancedOptions/Opus/EncodingComplexity");
107 LAMEXP_MAKE_ID(opusFramesize, "AdvancedOptions/Opus/FrameSize");
108 LAMEXP_MAKE_ID(normalizationFilterEnabled, "AdvancedOptions/VolumeNormalization/Enabled");
109 LAMEXP_MAKE_ID(normalizationFilterMaxVolume, "AdvancedOptions/VolumeNormalization/MaxVolume");
110 LAMEXP_MAKE_ID(normalizationFilterEqualizationMode, "AdvancedOptions/VolumeNormalization/EqualizationMode");
111 LAMEXP_MAKE_ID(toneAdjustBass, "AdvancedOptions/ToneAdjustment/Bass");
112 LAMEXP_MAKE_ID(toneAdjustTreble, "AdvancedOptions/ToneAdjustment/Treble");
113 LAMEXP_MAKE_ID(customParametersLAME, "AdvancedOptions/CustomParameters/LAME");
114 LAMEXP_MAKE_ID(customParametersOggEnc, "AdvancedOptions/CustomParameters/OggEnc");
115 LAMEXP_MAKE_ID(customParametersAacEnc, "AdvancedOptions/CustomParameters/AacEnc");
116 LAMEXP_MAKE_ID(customParametersAften, "AdvancedOptions/CustomParameters/Aften");
117 LAMEXP_MAKE_ID(customParametersFLAC, "AdvancedOptions/CustomParameters/FLAC");
118 LAMEXP_MAKE_ID(customParametersOpus, "AdvancedOptions/CustomParameters/OpusEnc");
119 LAMEXP_MAKE_ID(renameOutputFilesEnabled, "AdvancedOptions/RenameOutputFiles/Enabled");
120 LAMEXP_MAKE_ID(renameOutputFilesPattern, "AdvancedOptions/RenameOutputFiles/Pattern");
121 LAMEXP_MAKE_ID(overwriteMode, "AdvancedOptions/OverwriteMode");
122 LAMEXP_MAKE_ID(hibernateComputer, "AdvancedOptions/HibernateComputerOnShutdown");
123 LAMEXP_MAKE_ID(metaInfoPosition, "MetaInformation/PlaylistPosition");
124 LAMEXP_MAKE_ID(maximumInstances, "AdvancedOptions/Threading/MaximumInstances");
125 LAMEXP_MAKE_ID(customTempPath, "AdvancedOptions/TempDirectory/CustomPath");
126 LAMEXP_MAKE_ID(customTempPathEnabled, "AdvancedOptions/TempDirectory/UseCustomPath");
127 LAMEXP_MAKE_ID(slowStartup, "Flags/SlowStartupDetected");
129 //LUT
130 const int SettingsModel::mp3Bitrates[15] = {32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, -1};
131 const int SettingsModel::ac3Bitrates[20] = {32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, 448, 512, 576, 640, -1};
132 const int SettingsModel::samplingRates[8] = {0, 16000, 22050, 24000, 32000, 44100, 48000, -1};
134 ////////////////////////////////////////////////////////////
135 // Constructor
136 ////////////////////////////////////////////////////////////
138 SettingsModel::SettingsModel(void)
140 m_defaultLanguage(NULL)
142 QString configPath = "LameXP.ini";
144 if(!lamexp_portable_mode())
146 QString dataPath = initDirectory(QDesktopServices::storageLocation(QDesktopServices::DataLocation));
147 if(!dataPath.isEmpty())
149 configPath = QString("%1/config.ini").arg(QDir(dataPath).canonicalPath());
151 else
153 qWarning("SettingsModel: DataLocation could not be initialized!");
154 dataPath = initDirectory(QDesktopServices::storageLocation(QDesktopServices::HomeLocation));
155 if(!dataPath.isEmpty())
157 configPath = QString("%1/LameXP.ini").arg(QDir(dataPath).canonicalPath());
161 else
163 qDebug("LameXP is running in \"portable\" mode -> config in application dir!\n");
164 QString appPath = QFileInfo(QApplication::applicationFilePath()).canonicalFilePath();
165 if(appPath.isEmpty())
167 appPath = QFileInfo(QApplication::applicationFilePath()).absoluteFilePath();
169 if(QFileInfo(appPath).exists() && QFileInfo(appPath).isFile())
171 configPath = QString("%1/%2.ini").arg(QFileInfo(appPath).absolutePath(), QFileInfo(appPath).completeBaseName());
175 m_settings = new QSettings(configPath, QSettings::IniFormat);
176 const QString groupKey = QString().sprintf("LameXP_%u%02u%05u", lamexp_version_major(), lamexp_version_minor(), lamexp_version_build());
177 QStringList childGroups = m_settings->childGroups();
179 while(!childGroups.isEmpty())
181 QString current = childGroups.takeFirst();
182 QRegExp filter("^LameXP_(\\d+)(\\d\\d)(\\d\\d\\d\\d\\d)$");
183 if(filter.indexIn(current) >= 0)
185 bool ok = false;
186 unsigned int temp = filter.cap(3).toUInt(&ok) + 10;
187 if(ok && (temp >= lamexp_version_build()))
189 continue;
192 qWarning("Deleting obsolete group from config: %s", current.toUtf8().constData());
193 REMOVE_GROUP(m_settings, current);
196 m_settings->beginGroup(groupKey);
197 m_settings->setValue(g_settingsId_versionNumber, QApplication::applicationVersion());
198 m_settings->sync();
201 ////////////////////////////////////////////////////////////
202 // Destructor
203 ////////////////////////////////////////////////////////////
205 SettingsModel::~SettingsModel(void)
207 LAMEXP_DELETE(m_settings);
208 LAMEXP_DELETE(m_defaultLanguage);
211 ////////////////////////////////////////////////////////////
212 // Public Functions
213 ////////////////////////////////////////////////////////////
215 void SettingsModel::validate(void)
217 if(this->compressionEncoder() < SettingsModel::MP3Encoder || this->compressionEncoder() > SettingsModel::PCMEncoder)
219 this->compressionEncoder(SettingsModel::MP3Encoder);
222 if(this->compressionRCMode() < SettingsModel::VBRMode || this->compressionRCMode() > SettingsModel::CBRMode)
224 this->compressionEncoder(SettingsModel::VBRMode);
227 if(!(lamexp_check_tool("neroAacEnc.exe") && lamexp_check_tool("neroAacDec.exe") && lamexp_check_tool("neroAacTag.exe")))
229 if(!(lamexp_check_tool("fhgaacenc.exe") && lamexp_check_tool("enc_fhgaac.dll")))
231 if(!(lamexp_check_tool("qaac.exe") && lamexp_check_tool("libsoxrate.dll")))
233 if(this->compressionEncoder() == SettingsModel::AACEncoder)
235 qWarning("AAC encoder selected, but not available any more. Reverting to MP3!");
236 this->compressionEncoder(SettingsModel::MP3Encoder);
242 if(this->outputDir().isEmpty() || !QFileInfo(this->outputDir()).isDir())
244 QString musicLocation = QDesktopServices::storageLocation(QDesktopServices::MusicLocation);
245 this->outputDir(musicLocation.isEmpty() ? QDesktopServices::storageLocation(QDesktopServices::HomeLocation) : musicLocation);
248 if(this->mostRecentInputPath().isEmpty() || !QFileInfo(this->mostRecentInputPath()).isDir())
250 QString musicLocation = QDesktopServices::storageLocation(QDesktopServices::MusicLocation);
251 this->outputDir(musicLocation.isEmpty() ? QDesktopServices::storageLocation(QDesktopServices::HomeLocation) : musicLocation);
254 if(!this->currentLanguageFile().isEmpty())
256 const QString qmPath = QFileInfo(this->currentLanguageFile()).canonicalFilePath();
257 if(qmPath.isEmpty() || (!(QFileInfo(qmPath).exists() && QFileInfo(qmPath).isFile() && (QFileInfo(qmPath).suffix().compare("qm", Qt::CaseInsensitive) == 0))))
259 qWarning("Current language file missing, reverting to built-in translator!");
260 this->currentLanguageFile(QString());
264 if(!lamexp_query_translations().contains(this->currentLanguage(), Qt::CaseInsensitive))
266 qWarning("Current language \"%s\" is unknown, reverting to default language!", this->currentLanguage().toLatin1().constData());
267 this->currentLanguage(defaultLanguage());
270 if(this->hibernateComputer())
272 if(!lamexp_is_hibernation_supported())
274 this->hibernateComputer(false);
278 if(this->overwriteMode() < SettingsModel::Overwrite_KeepBoth || this->overwriteMode() > SettingsModel::Overwrite_Replaces)
280 this->overwriteMode(SettingsModel::Overwrite_KeepBoth);
285 void SettingsModel::syncNow(void)
287 m_settings->sync();
290 ////////////////////////////////////////////////////////////
291 // Private Functions
292 ////////////////////////////////////////////////////////////
294 QString SettingsModel::defaultLanguage(void)
296 if(m_defaultLanguage)
298 return *m_defaultLanguage;
301 //Detect system langauge
302 QLocale systemLanguage= QLocale::system();
303 qDebug("[Locale]");
304 qDebug("Language: %s (%d)", QLocale::languageToString(systemLanguage.language()).toUtf8().constData(), systemLanguage.language());
305 qDebug("Country is: %s (%d)", QLocale::countryToString(systemLanguage.country()).toUtf8().constData(), systemLanguage.country());
306 qDebug("Script is: %s (%d)\n", QLocale::scriptToString(systemLanguage.script()).toUtf8().constData(), systemLanguage.script());
308 //Check if we can use the default translation
309 if(systemLanguage.language() == QLocale::English /*|| systemLanguage.language() == QLocale::C*/)
311 m_defaultLanguage = new QString(LAMEXP_DEFAULT_LANGID);
312 return LAMEXP_DEFAULT_LANGID;
315 //Try to find a suitable translation for the user's system language *and* country
316 QStringList languages = lamexp_query_translations();
317 while(!languages.isEmpty())
319 QString currentLangId = languages.takeFirst();
320 if(lamexp_translation_sysid(currentLangId) == systemLanguage.language())
322 if(lamexp_translation_country(currentLangId) == systemLanguage.country())
324 m_defaultLanguage = new QString(currentLangId);
325 return currentLangId;
330 //Try to find a suitable translation for the user's system language
331 languages = lamexp_query_translations();
332 while(!languages.isEmpty())
334 QString currentLangId = languages.takeFirst();
335 if(lamexp_translation_sysid(currentLangId) == systemLanguage.language())
337 m_defaultLanguage = new QString(currentLangId);
338 return currentLangId;
342 //Fall back to the default translation
343 m_defaultLanguage = new QString(LAMEXP_DEFAULT_LANGID);
344 return LAMEXP_DEFAULT_LANGID;
347 QString SettingsModel::initDirectory(const QString &path)
349 if(path.isEmpty())
351 return QString();
354 if(!QDir(path).exists())
356 for(int i = 0; i < 32; i++)
358 if(QDir(path).mkpath(".")) break;
359 Sleep(1);
363 if(!QDir(path).exists())
365 return QString();
368 return QDir(path).canonicalPath();
371 ////////////////////////////////////////////////////////////
372 // Getter and Setter
373 ////////////////////////////////////////////////////////////
375 LAMEXP_MAKE_OPTION_I(licenseAccepted, 0)
376 LAMEXP_MAKE_OPTION_I(interfaceStyle, 0)
377 LAMEXP_MAKE_OPTION_I(compressionEncoder, 0)
378 LAMEXP_MAKE_OPTION_I(compressionRCMode, 0)
379 LAMEXP_MAKE_OPTION_I(compressionBitrate, 7)
380 LAMEXP_MAKE_OPTION_S(outputDir, QDesktopServices::storageLocation(QDesktopServices::MusicLocation))
381 LAMEXP_MAKE_OPTION_B(outputToSourceDir, false)
382 LAMEXP_MAKE_OPTION_B(prependRelativeSourcePath, false)
383 LAMEXP_MAKE_OPTION_S(favoriteOutputFolders, QString());
384 LAMEXP_MAKE_OPTION_B(writeMetaTags, true)
385 LAMEXP_MAKE_OPTION_B(createPlaylist, true)
386 LAMEXP_MAKE_OPTION_S(autoUpdateLastCheck, "Never")
387 LAMEXP_MAKE_OPTION_B(autoUpdateEnabled, true)
388 LAMEXP_MAKE_OPTION_B(autoUpdateCheckBeta, false)
389 LAMEXP_MAKE_OPTION_B(soundsEnabled, true)
390 LAMEXP_MAKE_OPTION_B(neroAacNotificationsEnabled, true)
391 LAMEXP_MAKE_OPTION_B(antivirNotificationsEnabled, true)
392 LAMEXP_MAKE_OPTION_B(dropBoxWidgetEnabled, true)
393 LAMEXP_MAKE_OPTION_B(shellIntegrationEnabled, !lamexp_portable_mode())
394 LAMEXP_MAKE_OPTION_S(currentLanguage, defaultLanguage())
395 LAMEXP_MAKE_OPTION_S(currentLanguageFile, QString())
396 LAMEXP_MAKE_OPTION_I(lameAlgoQuality, 3)
397 LAMEXP_MAKE_OPTION_I(lameChannelMode, 0)
398 LAMEXP_MAKE_OPTION_B(forceStereoDownmix, false)
399 LAMEXP_MAKE_OPTION_B(bitrateManagementEnabled, false)
400 LAMEXP_MAKE_OPTION_I(bitrateManagementMinRate, 32)
401 LAMEXP_MAKE_OPTION_I(bitrateManagementMaxRate, 500)
402 LAMEXP_MAKE_OPTION_I(samplingRate, 0)
403 LAMEXP_MAKE_OPTION_B(neroAACEnable2Pass, true)
404 LAMEXP_MAKE_OPTION_I(aacEncProfile, 0)
405 LAMEXP_MAKE_OPTION_I(aftenAudioCodingMode, 0);
406 LAMEXP_MAKE_OPTION_I(aftenDynamicRangeCompression, 5);
407 LAMEXP_MAKE_OPTION_B(aftenFastBitAllocation, false);
408 LAMEXP_MAKE_OPTION_I(aftenExponentSearchSize, 8);
409 LAMEXP_MAKE_OPTION_I(opusOptimizeFor, 0);
410 LAMEXP_MAKE_OPTION_I(opusComplexity, 10);
411 LAMEXP_MAKE_OPTION_I(opusFramesize, 3);
412 LAMEXP_MAKE_OPTION_B(normalizationFilterEnabled, false)
413 LAMEXP_MAKE_OPTION_I(normalizationFilterMaxVolume, -50)
414 LAMEXP_MAKE_OPTION_I(normalizationFilterEqualizationMode, 0);
415 LAMEXP_MAKE_OPTION_I(toneAdjustBass, 0)
416 LAMEXP_MAKE_OPTION_I(toneAdjustTreble, 0)
417 LAMEXP_MAKE_OPTION_S(customParametersLAME, QString());
418 LAMEXP_MAKE_OPTION_S(customParametersOggEnc, QString());
419 LAMEXP_MAKE_OPTION_S(customParametersAacEnc, QString());
420 LAMEXP_MAKE_OPTION_S(customParametersAften, QString());
421 LAMEXP_MAKE_OPTION_S(customParametersFLAC, QString());
422 LAMEXP_MAKE_OPTION_S(customParametersOpus, QString());
423 LAMEXP_MAKE_OPTION_B(renameOutputFilesEnabled, false);
424 LAMEXP_MAKE_OPTION_S(renameOutputFilesPattern, "[<TrackNo>] <Artist> - <Title>");
425 LAMEXP_MAKE_OPTION_I(overwriteMode, Overwrite_KeepBoth);
426 LAMEXP_MAKE_OPTION_U(metaInfoPosition, UINT_MAX);
427 LAMEXP_MAKE_OPTION_U(maximumInstances, 0);
428 LAMEXP_MAKE_OPTION_S(customTempPath, QDesktopServices::storageLocation(QDesktopServices::TempLocation));
429 LAMEXP_MAKE_OPTION_B(customTempPathEnabled, false);
430 LAMEXP_MAKE_OPTION_B(slowStartup, false);
431 LAMEXP_MAKE_OPTION_S(mostRecentInputPath, QDesktopServices::storageLocation(QDesktopServices::MusicLocation));
432 LAMEXP_MAKE_OPTION_B(hibernateComputer, false);