mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 19:13:07 +01:00
* Move all object units into OpenRCT2 namespace * Dealing with fallout, part 1 * Dealing with fallout, part 2 * Dealing with fallout, part 3 * Apply clang-format in a few more places * Remove redundant 'virtual' keyword
51 lines
1.7 KiB
C++
51 lines
1.7 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.
|
|
*****************************************************************************/
|
|
|
|
#include "PeepNamesObject.h"
|
|
|
|
#include "../Context.h"
|
|
#include "../PlatformEnvironment.h"
|
|
#include "../core/Guard.hpp"
|
|
#include "../core/Json.hpp"
|
|
|
|
namespace OpenRCT2
|
|
{
|
|
void PeepNamesObject::Load()
|
|
{
|
|
}
|
|
|
|
void PeepNamesObject::Unload()
|
|
{
|
|
}
|
|
|
|
void PeepNamesObject::ReadJson(IReadObjectContext* context, json_t& root)
|
|
{
|
|
Guard::Assert(root.is_object(), "PeepNamesObject::ReadJson expects parameter root to be an object");
|
|
PopulateTablesFromJson(context, root);
|
|
|
|
Guard::Assert(root["given_names"].is_array(), "PeepNamesObject::ReadJson expects given_names to be an array");
|
|
_givenNames = root["given_names"].get<std::vector<std::string>>();
|
|
std::sort(_givenNames.begin(), _givenNames.end());
|
|
|
|
Guard::Assert(root["surnames"].is_array(), "PeepNamesObject::ReadJson expects surnames to be an array");
|
|
_surnames = root["surnames"].get<std::vector<std::string>>();
|
|
std::sort(_surnames.begin(), _surnames.end());
|
|
}
|
|
|
|
std::string PeepNamesObject::GetGivenNameAt(size_t index) const
|
|
{
|
|
return _givenNames[index % _givenNames.size()];
|
|
}
|
|
|
|
std::string PeepNamesObject::GetSurnameAt(size_t index) const
|
|
{
|
|
return _surnames[index % _surnames.size()];
|
|
}
|
|
} // namespace OpenRCT2
|