mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-19 13:03:11 +01:00
* Rename Network::NetworkReadPacket class to Network::ReadPacket * Rename Network::NetworkKey class to Network::Key * Rename Network::NetworkPacket class to Network::Packet * Rename Network::NetworkUser class to Network::User * Rename Network::NetworkConnection class to Network::Connection
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2025 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "../core/JsonFwd.hpp"
|
|
#include "../core/StringTypes.h"
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <unordered_map>
|
|
|
|
namespace OpenRCT2::Network
|
|
{
|
|
class User final
|
|
{
|
|
public:
|
|
std::string Hash;
|
|
std::string Name;
|
|
std::optional<uint8_t> GroupId;
|
|
bool Remove;
|
|
|
|
/**
|
|
* Creates a User object from a JSON object
|
|
* @param jsonData Must be a JSON node of type object
|
|
* @return Pointer to a new User object
|
|
* @note jsonData is deliberately left non-const: json_t behaviour changes when const
|
|
*/
|
|
static std::unique_ptr<User> FromJson(const json_t& jsonData);
|
|
|
|
/**
|
|
* Serialise a User object into a JSON object
|
|
*
|
|
* @return JSON representation of the User object
|
|
*/
|
|
json_t ToJson() const;
|
|
};
|
|
|
|
class UserManager final
|
|
{
|
|
public:
|
|
void Load();
|
|
|
|
/**
|
|
* @brief UserManager::Save
|
|
* Reads mappings from JSON, updates them in-place and saves JSON.
|
|
*
|
|
* Useful for retaining custom entries in JSON file.
|
|
*/
|
|
void Save();
|
|
|
|
void UnsetUsersOfGroup(uint8_t groupId);
|
|
void RemoveUser(const std::string& hash);
|
|
|
|
const User* GetUserByHash(const std::string& hash) const;
|
|
const User* GetUserByName(const std::string& name) const;
|
|
User* GetOrAddUser(const std::string& hash);
|
|
|
|
private:
|
|
std::unordered_map<std::string, std::unique_ptr<User>> _usersByHash;
|
|
|
|
static u8string GetStorePath();
|
|
};
|
|
} // namespace OpenRCT2::Network
|