DiskManager tries to keep track of all files made across sessions in an index, but the index was only saved on close. This meant if the program crashed (not an uncommon occurrence at the moment), it would "forget" about any files it had made that session.
258 lines
11 KiB
C++
258 lines
11 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2019 Olive Team
|
|
|
|
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 <QCoreApplication>
|
|
#include <QDebug>
|
|
#include <QDir>
|
|
#include <QMessageBox>
|
|
#include <QStandardPaths>
|
|
#include <QXmlStreamWriter>
|
|
|
|
#include "common/autoscroll.h"
|
|
#include "common/filefunctions.h"
|
|
#include "common/xmlutils.h"
|
|
#include "core.h"
|
|
#include "ui/style/style.h"
|
|
#include "window/mainwindow/mainwindow.h"
|
|
|
|
OLIVE_NAMESPACE_ENTER
|
|
|
|
Config Config::current_config_;
|
|
|
|
Config::Config()
|
|
{
|
|
SetDefaults();
|
|
}
|
|
|
|
void Config::SetEntryInternal(const QString &key, NodeParam::DataType type, const QVariant &data)
|
|
{
|
|
config_map_[key] = {type, data};
|
|
}
|
|
|
|
QString Config::GetConfigFilePath()
|
|
{
|
|
return QDir(FileFunctions::GetConfigurationLocation()).filePath(QStringLiteral("config.xml"));
|
|
}
|
|
|
|
Config &Config::Current()
|
|
{
|
|
return current_config_;
|
|
}
|
|
|
|
void Config::SetDefaults()
|
|
{
|
|
config_map_.clear();
|
|
SetEntryInternal(QStringLiteral("Style"), NodeParam::kString, StyleManager::kDefaultStyle);
|
|
SetEntryInternal(QStringLiteral("TimecodeDisplay"), NodeParam::kInt, Timecode::kTimecodeDropFrame);
|
|
SetEntryInternal(QStringLiteral("DefaultStillLength"), NodeParam::kRational, QVariant::fromValue(rational(2)));
|
|
SetEntryInternal(QStringLiteral("HoverFocus"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("AudioScrubbing"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("AutorecoveryInterval"), NodeParam::kInt, 1);
|
|
SetEntryInternal(QStringLiteral("DiskCacheSaveInterval"), NodeParam::kInt, 10000);
|
|
SetEntryInternal(QStringLiteral("Language"), NodeParam::kString, QLocale::system().name());
|
|
SetEntryInternal(QStringLiteral("ScrollZooms"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("EnableSeekToImport"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("EditToolAlsoSeeks"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("EditToolSelectsLinks"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("EnableDragFilesToTimeline"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("InvertTimelineScrollAxes"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("SelectAlsoSeeks"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("PasteSeeks"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("SelectAlsoSeeks"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("SetNameWithMarker"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("AutoSeekToBeginning"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("DropFileOnMediaToReplace"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("AddDefaultEffectsToClips"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("AutoscaleByDefault"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("Autoscroll"), NodeParam::kInt, AutoScroll::kPage);
|
|
SetEntryInternal(QStringLiteral("AutoSelectDivider"), NodeParam::kBoolean, true);
|
|
SetEntryInternal(QStringLiteral("SetNameWithMarker"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("RectifiedWaveforms"), NodeParam::kBoolean, false);
|
|
SetEntryInternal(QStringLiteral("DropWithoutSequenceBehavior"), NodeParam::kInt, TimelineWidget::kDWSAsk);
|
|
SetEntryInternal(QStringLiteral("Loop"), NodeParam::kBoolean, false);
|
|
|
|
SetEntryInternal(QStringLiteral("AutoCacheInterval"), NodeParam::kInt, 250);
|
|
|
|
SetEntryInternal(QStringLiteral("NodeCatColor0"), NodeParam::kColor, QVariant::fromValue(Color(0.75f, 0.75f, 0.75f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor1"), NodeParam::kColor, QVariant::fromValue(Color(0.25f, 0.25f, 0.25f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor2"), NodeParam::kColor, QVariant::fromValue(Color(0.75f, 0.75f, 0.25f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor3"), NodeParam::kColor, QVariant::fromValue(Color(0.75f, 0.25f, 0.75f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor4"), NodeParam::kColor, QVariant::fromValue(Color(0.25f, 0.75f, 0.75f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor5"), NodeParam::kColor, QVariant::fromValue(Color(0.50f, 0.50f, 0.50f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor6"), NodeParam::kColor, QVariant::fromValue(Color(0.25f, 0.75f, 0.25f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor7"), NodeParam::kColor, QVariant::fromValue(Color(0.25f, 0.25f, 0.75f)));
|
|
SetEntryInternal(QStringLiteral("NodeCatColor8"), NodeParam::kColor, QVariant::fromValue(Color(0.75f, 0.25f, 0.25f)));
|
|
|
|
SetEntryInternal(QStringLiteral("AudioOutput"), NodeParam::kString, QString());
|
|
SetEntryInternal(QStringLiteral("AudioInput"), NodeParam::kString, QString());
|
|
|
|
SetEntryInternal(QStringLiteral("DiskCacheBehind"), NodeParam::kRational, QVariant::fromValue(rational(1)));
|
|
SetEntryInternal(QStringLiteral("DiskCacheAhead"), NodeParam::kRational, QVariant::fromValue(rational(5)));
|
|
|
|
SetEntryInternal(QStringLiteral("DefaultSequenceWidth"), NodeParam::kInt, 1920);
|
|
SetEntryInternal(QStringLiteral("DefaultSequenceHeight"), NodeParam::kInt, 1080);
|
|
SetEntryInternal(QStringLiteral("DefaultSequencePixelAspect"), NodeParam::kRational, QVariant::fromValue(rational(1)));
|
|
SetEntryInternal(QStringLiteral("DefaultSequenceFrameRate"), NodeParam::kRational, QVariant::fromValue(rational(1001, 30000)));
|
|
SetEntryInternal(QStringLiteral("DefaultSequenceInterlacing"), NodeParam::kInt, VideoParams::kInterlaceNone);
|
|
SetEntryInternal(QStringLiteral("DefaultSequenceAudioFrequency"), NodeParam::kInt, 48000);
|
|
SetEntryInternal(QStringLiteral("DefaultSequenceAudioLayout"), NodeParam::kInt, QVariant::fromValue(static_cast<int64_t>(AV_CH_LAYOUT_STEREO)));
|
|
SetEntryInternal(QStringLiteral("DefaultSequencePreviewFormat"), NodeParam::kInt, PixelFormat::PIX_FMT_RGBA16F);
|
|
|
|
// Online/offline settings
|
|
SetEntryInternal(QStringLiteral("OnlinePixelFormat"), NodeParam::kInt, PixelFormat::PIX_FMT_RGBA32F);
|
|
SetEntryInternal(QStringLiteral("OfflinePixelFormat"), NodeParam::kInt, PixelFormat::PIX_FMT_RGBA16F);
|
|
SetEntryInternal(QStringLiteral("OnlineOCIOMethod"), NodeParam::kInt, ColorManager::kOCIOAccurate);
|
|
SetEntryInternal(QStringLiteral("OfflineOCIOMethod"), NodeParam::kInt, ColorManager::kOCIOFast);
|
|
}
|
|
|
|
void Config::Load()
|
|
{
|
|
QFile config_file(GetConfigFilePath());
|
|
|
|
if (!config_file.exists()) {
|
|
return;
|
|
}
|
|
|
|
if (!config_file.open(QFile::ReadOnly)) {
|
|
qWarning() << "Failed to load application settings. This session will use defaults.";
|
|
return;
|
|
}
|
|
|
|
// Reset to defaults
|
|
current_config_.SetDefaults();
|
|
|
|
QXmlStreamReader reader(&config_file);
|
|
|
|
QString config_version;
|
|
|
|
while (XMLReadNextStartElement(&reader)) {
|
|
if (reader.name() == QStringLiteral("Configuration")) {
|
|
while (XMLReadNextStartElement(&reader)) {
|
|
QString key = reader.name().toString();
|
|
QString value = reader.readElementText();
|
|
|
|
if (key == QStringLiteral("Version")) {
|
|
config_version = value;
|
|
|
|
if (!value.contains(".")) {
|
|
qDebug() << "CONFIG: This is a 0.1.x config file, upconvert";
|
|
}
|
|
} else if (key == QStringLiteral("DefaultSequenceFrameRate") && !config_version.contains('.')) {
|
|
// 0.1.x stored this value as a float while we now use rationals, we'll use a heuristic to find the closest
|
|
// supported rational
|
|
qDebug() << " CONFIG: Finding closest match to" << value;
|
|
|
|
double config_fr = value.toDouble();
|
|
|
|
const QVector<rational>& supported_frame_rates = VideoParams::kSupportedFrameRates;
|
|
|
|
rational match = supported_frame_rates.first();
|
|
double match_diff = qAbs(match.toDouble() - config_fr);
|
|
|
|
for (int i=1;i<supported_frame_rates.size();i++) {
|
|
double diff = qAbs(supported_frame_rates.at(i).toDouble() - config_fr);
|
|
|
|
if (diff < match_diff) {
|
|
match = supported_frame_rates.at(i);
|
|
match_diff = diff;
|
|
}
|
|
}
|
|
|
|
qDebug() << " CONFIG: Closest match was" << match.toDouble();
|
|
|
|
current_config_[key] = QVariant::fromValue(match.flipped());
|
|
} else {
|
|
current_config_[key] = NodeInput::StringToValue(current_config_.GetConfigEntryType(key), value, false);
|
|
}
|
|
}
|
|
|
|
//reader.skipCurrentElement();
|
|
} else {
|
|
reader.skipCurrentElement();
|
|
}
|
|
}
|
|
|
|
if (reader.hasError()) {
|
|
QMessageBox::critical(Core::instance()->main_window(),
|
|
QCoreApplication::translate("Config", "Error loading settings"),
|
|
QCoreApplication::translate("Config", "Failed to load application settings. This session will "
|
|
"use defaults.\n\n%1").arg(reader.errorString()),
|
|
QMessageBox::Ok);
|
|
current_config_.SetDefaults();
|
|
}
|
|
|
|
config_file.close();
|
|
}
|
|
|
|
void Config::Save()
|
|
{
|
|
QFile config_file(GetConfigFilePath());
|
|
|
|
if (!config_file.open(QFile::WriteOnly)) {
|
|
QMessageBox::critical(Core::instance()->main_window(),
|
|
QCoreApplication::translate("Config", "Error saving settings"),
|
|
QCoreApplication::translate("Config", "Failed to save application settings. The application "
|
|
"may lack write permissions to this location."),
|
|
QMessageBox::Ok);
|
|
return;
|
|
}
|
|
|
|
QXmlStreamWriter writer(&config_file);
|
|
writer.setAutoFormatting(true);
|
|
|
|
writer.writeStartDocument();
|
|
|
|
writer.writeStartElement("Configuration");
|
|
|
|
// Anything after the hyphen is considered "unimportant" information
|
|
writer.writeTextElement("Version", QCoreApplication::applicationVersion().split('-').first());
|
|
|
|
QMapIterator<QString, ConfigEntry> iterator(current_config_.config_map_);
|
|
while (iterator.hasNext()) {
|
|
iterator.next();
|
|
writer.writeTextElement(iterator.key(), NodeInput::ValueToString(iterator.value().type, iterator.value().data, false));
|
|
}
|
|
|
|
writer.writeEndElement(); // Configuration
|
|
|
|
writer.writeEndDocument();
|
|
|
|
config_file.close();
|
|
}
|
|
|
|
QVariant Config::operator[](const QString &key) const
|
|
{
|
|
return config_map_[key].data;
|
|
}
|
|
|
|
QVariant &Config::operator[](const QString &key)
|
|
{
|
|
return config_map_[key].data;
|
|
}
|
|
|
|
NodeParam::DataType Config::GetConfigEntryType(const QString &key) const
|
|
{
|
|
return config_map_[key].type;
|
|
}
|
|
|
|
OLIVE_NAMESPACE_EXIT
|