2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2012-02-09 22:04:07 -07:00
|
|
|
|
|
|
|
// Thanks to Treeki for writing the original class - 29/01/2012
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-01-27 08:01:25 -07:00
|
|
|
#include <array>
|
2012-02-09 22:04:07 -07:00
|
|
|
#include <string>
|
2019-07-16 02:11:53 -06:00
|
|
|
#include <string_view>
|
2012-02-09 22:04:07 -07:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2012-02-09 22:04:07 -07:00
|
|
|
|
2018-05-12 11:39:35 -06:00
|
|
|
namespace Common
|
|
|
|
{
|
2012-02-09 22:04:07 -07:00
|
|
|
class SettingsHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum
|
|
|
|
{
|
2013-08-27 06:57:08 -06:00
|
|
|
SETTINGS_SIZE = 0x100,
|
|
|
|
// Key used to encrypt/decrypt setting.txt contents
|
|
|
|
INITIAL_SEED = 0x73B5DBFA
|
2012-02-09 22:04:07 -07:00
|
|
|
};
|
2014-03-29 04:05:44 -06:00
|
|
|
|
2018-05-09 12:40:56 -06:00
|
|
|
using Buffer = std::array<u8, SETTINGS_SIZE>;
|
2017-01-27 08:01:25 -07:00
|
|
|
SettingsHandler();
|
2018-05-09 12:40:56 -06:00
|
|
|
explicit SettingsHandler(Buffer&& buffer);
|
2017-01-27 08:01:25 -07:00
|
|
|
|
2020-03-24 09:58:54 -06:00
|
|
|
void AddSetting(const std::string& key, const std::string& value);
|
2012-02-09 22:04:07 -07:00
|
|
|
|
2018-05-09 12:40:56 -06:00
|
|
|
const Buffer& GetBytes() const;
|
|
|
|
void SetBytes(Buffer&& buffer);
|
2019-07-16 02:11:53 -06:00
|
|
|
std::string GetValue(std::string_view key) const;
|
2012-02-09 22:04:07 -07:00
|
|
|
|
|
|
|
void Decrypt();
|
|
|
|
void Reset();
|
2017-01-27 08:11:36 -07:00
|
|
|
static std::string GenerateSerialNumber();
|
2012-02-09 22:04:07 -07:00
|
|
|
|
|
|
|
private:
|
2020-03-24 09:58:54 -06:00
|
|
|
void WriteLine(const std::string& str);
|
2012-02-09 22:04:07 -07:00
|
|
|
void WriteByte(u8 b);
|
|
|
|
|
2017-01-27 08:01:25 -07:00
|
|
|
std::array<u8, SETTINGS_SIZE> m_buffer;
|
2012-02-09 22:04:07 -07:00
|
|
|
u32 m_position, m_key;
|
|
|
|
std::string decoded;
|
|
|
|
};
|
2018-05-12 11:39:35 -06:00
|
|
|
} // namespace Common
|