2022-11-02 00:21:25 -07:00
|
|
|
/* Copyright (C) 2022 Wildfire Games.
|
2013-09-29 11:56:50 -07:00
|
|
|
* This file is part of 0 A.D.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. 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 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
|
|
|
|
#include "JSInterface_ConfigDB.h"
|
|
|
|
|
|
|
|
|
|
#include "ps/ConfigDB.h"
|
|
|
|
|
#include "ps/CLogger.h"
|
2021-10-17 03:58:51 -07:00
|
|
|
#include "ps/VideoMode.h"
|
2021-03-02 12:01:14 -08:00
|
|
|
#include "scriptinterface/FunctionWrapper.h"
|
2021-05-03 09:07:26 -07:00
|
|
|
#include "scriptinterface/ScriptRequest.h"
|
2013-09-29 11:56:50 -07:00
|
|
|
|
2018-08-22 09:02:05 -07:00
|
|
|
#include <string>
|
|
|
|
|
#include <unordered_set>
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
namespace JSI_ConfigDB
|
|
|
|
|
{
|
2020-06-07 06:16:57 -07:00
|
|
|
// These entries will not be readable nor writable for JS, so that e.g. malicious mods can't leak personal or sensitive data
|
2018-08-22 09:02:05 -07:00
|
|
|
static const std::unordered_set<std::string> g_ProtectedConfigNames = {
|
2020-06-07 06:16:57 -07:00
|
|
|
"modio.public_key", // See ModIO.cpp
|
|
|
|
|
"modio.v1.baseurl",
|
|
|
|
|
"modio.v1.api_key",
|
|
|
|
|
"modio.v1.name_id",
|
|
|
|
|
"userreport.id" // Acts as authentication token for GDPR personal data requests.
|
2018-08-22 09:02:05 -07:00
|
|
|
};
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool IsProtectedConfigName(const std::string& name)
|
2018-08-22 09:02:05 -07:00
|
|
|
{
|
|
|
|
|
if (g_ProtectedConfigNames.find(name) != g_ProtectedConfigNames.end())
|
|
|
|
|
{
|
|
|
|
|
LOGERROR("Access denied (%s)", name.c_str());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool GetConfigNamespace(const std::wstring& cfgNsString, EConfigNamespace& cfgNs)
|
2013-09-29 11:56:50 -07:00
|
|
|
{
|
|
|
|
|
if (cfgNsString == L"default")
|
|
|
|
|
cfgNs = CFG_DEFAULT;
|
2020-06-07 06:16:57 -07:00
|
|
|
else if (cfgNsString == L"mod")
|
|
|
|
|
cfgNs = CFG_MOD;
|
2013-09-29 11:56:50 -07:00
|
|
|
else if (cfgNsString == L"system")
|
|
|
|
|
cfgNs = CFG_SYSTEM;
|
|
|
|
|
else if (cfgNsString == L"user")
|
|
|
|
|
cfgNs = CFG_USER;
|
2020-06-07 06:16:57 -07:00
|
|
|
else if (cfgNsString == L"hwdetect")
|
|
|
|
|
cfgNs = CFG_HWDETECT;
|
2013-09-29 11:56:50 -07:00
|
|
|
else
|
|
|
|
|
{
|
2015-01-22 12:31:30 -08:00
|
|
|
LOGERROR("Invalid namespace name passed to the ConfigDB!");
|
2013-10-16 05:22:50 -07:00
|
|
|
cfgNs = CFG_DEFAULT;
|
2016-11-23 06:09:58 -08:00
|
|
|
return false;
|
2013-09-29 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool HasChanges(const std::wstring& cfgNsString)
|
2016-02-07 07:10:44 -08:00
|
|
|
{
|
|
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return g_ConfigDB.HasChanges(cfgNs);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool SetChanges(const std::wstring& cfgNsString, bool value)
|
2016-02-07 07:10:44 -08:00
|
|
|
{
|
|
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
g_ConfigDB.SetChanges(cfgNs, value);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
std::string GetValue(const std::wstring& cfgNsString, const std::string& name)
|
2013-09-29 11:56:50 -07:00
|
|
|
{
|
2018-08-22 09:02:05 -07:00
|
|
|
if (IsProtectedConfigName(name))
|
|
|
|
|
return "";
|
|
|
|
|
|
2013-09-29 11:56:50 -07:00
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return std::string();
|
|
|
|
|
|
2013-12-29 15:56:18 -08:00
|
|
|
std::string value;
|
2014-11-16 17:03:59 -08:00
|
|
|
g_ConfigDB.GetValue(cfgNs, name, value);
|
2013-12-29 15:56:18 -08:00
|
|
|
return value;
|
2013-09-29 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool CreateValue(const std::wstring& cfgNsString, const std::string& name, const std::string& value)
|
2013-09-29 11:56:50 -07:00
|
|
|
{
|
2018-08-22 09:02:05 -07:00
|
|
|
if (IsProtectedConfigName(name))
|
|
|
|
|
return false;
|
|
|
|
|
|
2013-09-29 11:56:50 -07:00
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
2013-12-29 15:56:18 -08:00
|
|
|
g_ConfigDB.SetValueString(cfgNs, name, value);
|
2022-11-02 00:21:25 -07:00
|
|
|
g_ConfigDB.SetChanges(cfgNs, true);
|
2013-09-29 11:56:50 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool CreateValues(const std::wstring& cfgNsString, const std::string& name, const std::vector<CStr>& values)
|
Let players remap hotkeys in-game, fix default hotkeys being qwerty-specific.
- Provide a "Hotkey" screen to let players remap hotkeys in-game using a
convenient setup.
- Make all .cfg hotkeys refer to scancodes (i.e. position on the
keyboard), so that default hotkeys now translate correctly for AZERTY,
QWERTZ and other layouts.
- 'BackSpace' is now an alias for 'Delete', and works for killing units.
This fixes #1917, as macs don't have a proper delete key and would need
to use Fn+Del otherwise. This shifts "timewarp" to Shift+BackSpace.
Functionally, this switches hotkeys to scancodes, as that makes more
sense (they are combinations of key positions, not actual text output).
SDL includes are cleaned and key names are reused.
Fixes #2850, Fixes #2604, Refs #1810, Fixes #1917.
Follows work in 3d7784d2af.
Various diffs tested by: Angen, Stan, Freagarach
Comments by: Nescio
Differential Revision: https://code.wildfiregames.com/D2814
This was SVN commit r24215.
2020-11-19 01:27:26 -08:00
|
|
|
{
|
|
|
|
|
if (IsProtectedConfigName(name))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
g_ConfigDB.SetValueList(cfgNs, name, values);
|
2022-11-02 00:21:25 -07:00
|
|
|
g_ConfigDB.SetChanges(cfgNs, true);
|
Let players remap hotkeys in-game, fix default hotkeys being qwerty-specific.
- Provide a "Hotkey" screen to let players remap hotkeys in-game using a
convenient setup.
- Make all .cfg hotkeys refer to scancodes (i.e. position on the
keyboard), so that default hotkeys now translate correctly for AZERTY,
QWERTZ and other layouts.
- 'BackSpace' is now an alias for 'Delete', and works for killing units.
This fixes #1917, as macs don't have a proper delete key and would need
to use Fn+Del otherwise. This shifts "timewarp" to Shift+BackSpace.
Functionally, this switches hotkeys to scancodes, as that makes more
sense (they are combinations of key positions, not actual text output).
SDL includes are cleaned and key names are reused.
Fixes #2850, Fixes #2604, Refs #1810, Fixes #1917.
Follows work in 3d7784d2af.
Various diffs tested by: Angen, Stan, Freagarach
Comments by: Nescio
Differential Revision: https://code.wildfiregames.com/D2814
This was SVN commit r24215.
2020-11-19 01:27:26 -08:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool RemoveValue(const std::wstring& cfgNsString, const std::string& name)
|
2016-02-07 07:10:44 -08:00
|
|
|
{
|
2018-08-22 09:02:05 -07:00
|
|
|
if (IsProtectedConfigName(name))
|
|
|
|
|
return false;
|
|
|
|
|
|
2016-02-07 07:10:44 -08:00
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-11-02 00:21:25 -07:00
|
|
|
bool result = g_ConfigDB.RemoveValue(cfgNs, name);
|
|
|
|
|
if (result)
|
|
|
|
|
g_ConfigDB.SetChanges(cfgNs, true);
|
|
|
|
|
|
|
|
|
|
return result;
|
2016-02-07 07:10:44 -08:00
|
|
|
}
|
|
|
|
|
|
2022-11-02 00:21:25 -07:00
|
|
|
bool SaveChanges(const std::wstring& cfgNsString)
|
2013-09-29 11:56:50 -07:00
|
|
|
{
|
|
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-11-02 00:21:25 -07:00
|
|
|
bool result = g_ConfigDB.WriteFile(cfgNs);
|
|
|
|
|
if (result)
|
|
|
|
|
g_ConfigDB.SetChanges(cfgNs, false);
|
|
|
|
|
|
|
|
|
|
return result;
|
2013-09-29 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
|
2022-11-02 00:21:25 -07:00
|
|
|
bool RemoveValueAndSave(const std::wstring& cfgNsString, const std::string& name)
|
|
|
|
|
{
|
|
|
|
|
if (RemoveValue(cfgNsString, name))
|
|
|
|
|
return SaveChanges(cfgNsString);
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool SaveValue(const std::wstring& cfgNsString, const std::string& name, const std::string& value)
|
2016-02-07 03:31:23 -08:00
|
|
|
{
|
2018-08-22 09:02:05 -07:00
|
|
|
if (IsProtectedConfigName(name))
|
|
|
|
|
return false;
|
|
|
|
|
|
2016-02-07 03:31:23 -08:00
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-11-02 00:21:25 -07:00
|
|
|
return g_ConfigDB.WriteValueToFile(cfgNs, name, value);
|
2016-02-07 03:31:23 -08:00
|
|
|
}
|
|
|
|
|
|
2022-11-02 00:21:25 -07:00
|
|
|
void CreateAndSaveValue(const std::wstring& cfgNsString, const std::string& name, const std::string& value)
|
2019-08-05 07:12:55 -07:00
|
|
|
{
|
2022-11-02 00:21:25 -07:00
|
|
|
if (CreateValue(cfgNsString, name, value))
|
|
|
|
|
SaveValue(cfgNsString, name, value);
|
2019-08-05 07:12:55 -07:00
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
bool Reload(const std::wstring& cfgNsString)
|
2013-09-29 11:56:50 -07:00
|
|
|
{
|
|
|
|
|
EConfigNamespace cfgNs;
|
|
|
|
|
if (!GetConfigNamespace(cfgNsString, cfgNs))
|
|
|
|
|
return false;
|
|
|
|
|
|
2018-08-22 09:02:05 -07:00
|
|
|
return g_ConfigDB.Reload(cfgNs);
|
2013-09-29 11:56:50 -07:00
|
|
|
}
|
|
|
|
|
|
2021-08-27 11:54:20 -07:00
|
|
|
void PauseOnFocusLoss(bool pause)
|
|
|
|
|
{
|
|
|
|
|
g_PauseOnFocusLoss = pause;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-17 03:58:51 -07:00
|
|
|
void SetGUIScale(float scale)
|
|
|
|
|
{
|
|
|
|
|
g_VideoMode.Rescale(scale);
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:01:14 -08:00
|
|
|
void RegisterScriptFunctions(const ScriptRequest& rq)
|
2013-09-29 11:56:50 -07:00
|
|
|
{
|
2021-03-02 12:01:14 -08:00
|
|
|
ScriptFunction::Register<&HasChanges>(rq, "ConfigDB_HasChanges");
|
|
|
|
|
ScriptFunction::Register<&SetChanges>(rq, "ConfigDB_SetChanges");
|
|
|
|
|
ScriptFunction::Register<&GetValue>(rq, "ConfigDB_GetValue");
|
|
|
|
|
ScriptFunction::Register<&CreateValue>(rq, "ConfigDB_CreateValue");
|
|
|
|
|
ScriptFunction::Register<&CreateValues>(rq, "ConfigDB_CreateValues");
|
|
|
|
|
ScriptFunction::Register<&RemoveValue>(rq, "ConfigDB_RemoveValue");
|
2022-11-02 00:21:25 -07:00
|
|
|
ScriptFunction::Register<&RemoveValueAndSave>(rq, "ConfigDB_RemoveValueAndSave");
|
|
|
|
|
ScriptFunction::Register<&SaveChanges>(rq, "ConfigDB_SaveChanges");
|
|
|
|
|
ScriptFunction::Register<&SaveValue>(rq, "ConfigDB_SaveValue");
|
|
|
|
|
ScriptFunction::Register<&CreateAndSaveValue>(rq, "ConfigDB_CreateAndSaveValue");
|
2021-03-02 12:01:14 -08:00
|
|
|
ScriptFunction::Register<&Reload>(rq, "ConfigDB_Reload");
|
2021-08-27 11:54:20 -07:00
|
|
|
ScriptFunction::Register<&PauseOnFocusLoss>(rq, "PauseOnFocusLoss");
|
2021-10-17 03:58:51 -07:00
|
|
|
ScriptFunction::Register<&SetGUIScale>(rq, "SetGUIScale");
|
2021-03-02 12:01:14 -08:00
|
|
|
}
|
2013-09-29 11:56:50 -07:00
|
|
|
}
|