dolphin/Source/Core/Common/SettingsHandler.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
865 B
C
Raw Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2012-02-09 21:04:07 -08:00
// Thanks to Treeki for writing the original class - 29/01/2012
#pragma once
#include <array>
2012-02-09 21:04:07 -08:00
#include <string>
#include <string_view>
2012-02-09 21:04:07 -08:00
#include "Common/CommonTypes.h"
2012-02-09 21:04:07 -08:00
namespace Common
{
using SettingsBuffer = std::array<u8, 0x100>;
class SettingsWriter
2012-02-09 21:04:07 -08:00
{
public:
SettingsWriter();
void AddSetting(std::string_view key, std::string_view value);
2012-02-09 21:04:07 -08:00
const SettingsBuffer& GetBytes() const;
2012-02-09 21:04:07 -08:00
static std::string GenerateSerialNumber();
2012-02-09 21:04:07 -08:00
private:
void WriteLine(std::string_view str);
2012-02-09 21:04:07 -08:00
void WriteByte(u8 b);
SettingsBuffer m_buffer;
2012-02-09 21:04:07 -08:00
u32 m_position, m_key;
};
class SettingsReader
{
public:
explicit SettingsReader(const SettingsBuffer& buffer);
std::string GetValue(std::string_view key) const;
private:
std::string m_decoded;
2012-02-09 21:04:07 -08:00
};
} // namespace Common