2017-02-16 15:58:40 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
2019-07-30 14:40:52 +00:00
|
|
|
#include <shared_mutex>
|
2017-02-16 15:58:40 +00:00
|
|
|
|
|
|
|
#include "Common/Config/Config.h"
|
|
|
|
|
|
|
|
namespace Config
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
using Layers = std::map<LayerType, std::shared_ptr<Layer>>;
|
|
|
|
|
2017-02-16 15:58:40 +00:00
|
|
|
static Layers s_layers;
|
|
|
|
static std::list<ConfigChangedCallback> s_callbacks;
|
2019-03-03 16:58:37 +00:00
|
|
|
static u32 s_callback_guards = 0;
|
2017-02-16 15:58:40 +00:00
|
|
|
|
2019-07-30 14:40:52 +00:00
|
|
|
static std::shared_mutex s_layers_rw_lock;
|
2017-02-16 15:58:40 +00:00
|
|
|
|
2019-07-30 14:40:52 +00:00
|
|
|
using ReadLock = std::shared_lock<std::shared_mutex>;
|
|
|
|
using WriteLock = std::unique_lock<std::shared_mutex>;
|
|
|
|
|
2019-12-27 18:17:56 +00:00
|
|
|
static void AddLayerInternal(std::shared_ptr<Layer> layer)
|
2017-02-16 15:58:40 +00:00
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
{
|
|
|
|
WriteLock lock(s_layers_rw_lock);
|
|
|
|
|
|
|
|
const Config::LayerType layer_type = layer->GetLayer();
|
|
|
|
s_layers.insert_or_assign(layer_type, std::move(layer));
|
|
|
|
}
|
2017-02-16 15:58:40 +00:00
|
|
|
InvokeConfigChangedCallbacks();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddLayer(std::unique_ptr<ConfigLayerLoader> loader)
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
AddLayerInternal(std::make_shared<Layer>(std::move(loader)));
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
2019-07-30 14:40:52 +00:00
|
|
|
std::shared_ptr<Layer> GetLayer(LayerType layer)
|
2017-02-16 15:58:40 +00:00
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
ReadLock lock(s_layers_rw_lock);
|
|
|
|
|
|
|
|
std::shared_ptr<Layer> result;
|
|
|
|
const auto it = s_layers.find(layer);
|
|
|
|
if (it != s_layers.end())
|
|
|
|
{
|
|
|
|
result = it->second;
|
|
|
|
}
|
|
|
|
return result;
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveLayer(LayerType layer)
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
{
|
|
|
|
WriteLock lock(s_layers_rw_lock);
|
|
|
|
|
|
|
|
s_layers.erase(layer);
|
|
|
|
}
|
2017-02-16 15:58:40 +00:00
|
|
|
InvokeConfigChangedCallbacks();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AddConfigChangedCallback(ConfigChangedCallback func)
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
s_callbacks.emplace_back(std::move(func));
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InvokeConfigChangedCallbacks()
|
|
|
|
{
|
2019-03-03 16:58:37 +00:00
|
|
|
if (s_callback_guards)
|
|
|
|
return;
|
|
|
|
|
2017-02-16 15:58:40 +00:00
|
|
|
for (const auto& callback : s_callbacks)
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicit load and save of layers
|
|
|
|
void Load()
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
{
|
|
|
|
ReadLock lock(s_layers_rw_lock);
|
|
|
|
|
|
|
|
for (auto& layer : s_layers)
|
|
|
|
layer.second->Load();
|
|
|
|
}
|
2017-08-04 15:43:52 +00:00
|
|
|
InvokeConfigChangedCallbacks();
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Save()
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
{
|
|
|
|
ReadLock lock(s_layers_rw_lock);
|
|
|
|
|
|
|
|
for (auto& layer : s_layers)
|
|
|
|
layer.second->Save();
|
|
|
|
}
|
2017-08-04 15:43:52 +00:00
|
|
|
InvokeConfigChangedCallbacks();
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Init()
|
|
|
|
{
|
2017-05-13 22:34:49 +00:00
|
|
|
// These layers contain temporary values
|
|
|
|
ClearCurrentRunLayer();
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown()
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
WriteLock lock(s_layers_rw_lock);
|
|
|
|
|
2017-02-16 15:58:40 +00:00
|
|
|
s_layers.clear();
|
|
|
|
s_callbacks.clear();
|
|
|
|
}
|
|
|
|
|
2017-05-13 22:34:49 +00:00
|
|
|
void ClearCurrentRunLayer()
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
WriteLock lock(s_layers_rw_lock);
|
|
|
|
|
|
|
|
s_layers.insert_or_assign(LayerType::CurrentRun, std::make_shared<Layer>(LayerType::CurrentRun));
|
2017-05-13 22:34:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 15:58:40 +00:00
|
|
|
static const std::map<System, std::string> system_to_name = {
|
2019-09-06 15:09:30 +00:00
|
|
|
{System::Main, "Dolphin"},
|
|
|
|
{System::GCPad, "GCPad"},
|
|
|
|
{System::WiiPad, "Wiimote"},
|
|
|
|
{System::GCKeyboard, "GCKeyboard"},
|
|
|
|
{System::GFX, "Graphics"},
|
|
|
|
{System::Logger, "Logger"},
|
|
|
|
{System::Debugger, "Debugger"},
|
|
|
|
{System::SYSCONF, "SYSCONF"},
|
2019-10-26 16:05:16 +00:00
|
|
|
{System::DualShockUDPClient, "DualShockUDPClient"}};
|
2017-02-16 15:58:40 +00:00
|
|
|
|
|
|
|
const std::string& GetSystemName(System system)
|
|
|
|
{
|
|
|
|
return system_to_name.at(system);
|
|
|
|
}
|
|
|
|
|
2017-11-26 17:24:01 +00:00
|
|
|
std::optional<System> GetSystemFromName(const std::string& name)
|
2017-02-16 15:58:40 +00:00
|
|
|
{
|
|
|
|
const auto system = std::find_if(system_to_name.begin(), system_to_name.end(),
|
|
|
|
[&name](const auto& entry) { return entry.second == name; });
|
|
|
|
if (system != system_to_name.end())
|
|
|
|
return system->first;
|
|
|
|
|
2017-11-26 17:24:01 +00:00
|
|
|
return {};
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& GetLayerName(LayerType layer)
|
|
|
|
{
|
|
|
|
static const std::map<LayerType, std::string> layer_to_name = {
|
|
|
|
{LayerType::Base, "Base"},
|
|
|
|
{LayerType::GlobalGame, "Global GameINI"},
|
|
|
|
{LayerType::LocalGame, "Local GameINI"},
|
|
|
|
{LayerType::Netplay, "Netplay"},
|
|
|
|
{LayerType::Movie, "Movie"},
|
|
|
|
{LayerType::CommandLine, "Command Line"},
|
|
|
|
{LayerType::CurrentRun, "Current Run"},
|
|
|
|
};
|
|
|
|
return layer_to_name.at(layer);
|
|
|
|
}
|
2017-07-09 23:17:36 +00:00
|
|
|
|
|
|
|
LayerType GetActiveLayerForConfig(const ConfigLocation& config)
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
ReadLock lock(s_layers_rw_lock);
|
|
|
|
|
2017-07-09 23:17:36 +00:00
|
|
|
for (auto layer : SEARCH_ORDER)
|
|
|
|
{
|
2019-07-30 14:40:52 +00:00
|
|
|
const auto it = s_layers.find(layer);
|
|
|
|
if (it != s_layers.end())
|
|
|
|
{
|
|
|
|
if (it->second->Exists(config))
|
|
|
|
return layer;
|
|
|
|
}
|
2017-07-09 23:17:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If config is not present in any layer, base layer is considered active.
|
|
|
|
return LayerType::Base;
|
|
|
|
}
|
2019-03-03 16:58:37 +00:00
|
|
|
|
|
|
|
ConfigChangeCallbackGuard::ConfigChangeCallbackGuard()
|
|
|
|
{
|
|
|
|
++s_callback_guards;
|
2017-02-16 15:58:40 +00:00
|
|
|
}
|
2019-03-03 16:58:37 +00:00
|
|
|
|
|
|
|
ConfigChangeCallbackGuard::~ConfigChangeCallbackGuard()
|
|
|
|
{
|
|
|
|
if (--s_callback_guards)
|
|
|
|
return;
|
|
|
|
|
|
|
|
InvokeConfigChangedCallbacks();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Config
|