/***************************************************************************** * Copyright (c) 2014-2021 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 "Object.h" #include "../Context.h" #include "../core/File.h" #include "../core/FileStream.h" #include "../core/Memory.hpp" #include "../core/String.hpp" #include "../core/ZipStream.hpp" #include "../localisation/Language.h" #include "../localisation/LocalisationService.h" #include "../localisation/StringIds.h" #include "../world/Scenery.h" #include "ObjectLimits.h" #include "ObjectRepository.h" #include #include #include using namespace OpenRCT2; ObjectType& operator++(ObjectType& d, int) { return d = (d == ObjectType::Count) ? ObjectType::Ride : static_cast(static_cast(d) + 1); } ObjectEntryDescriptor::ObjectEntryDescriptor(const rct_object_entry& newEntry) { if (!newEntry.IsEmpty()) { Generation = ObjectGeneration::DAT; Entry = newEntry; } } ObjectEntryDescriptor::ObjectEntryDescriptor(std::string_view newIdentifier) { Generation = ObjectGeneration::JSON; Identifier = std::string(newIdentifier); } ObjectEntryDescriptor::ObjectEntryDescriptor(ObjectType type, std::string_view newIdentifier) { Generation = ObjectGeneration::JSON; Identifier = std::string(newIdentifier); Type = type; } ObjectEntryDescriptor::ObjectEntryDescriptor(const ObjectRepositoryItem& ori) { if (!ori.Identifier.empty()) { Generation = ObjectGeneration::JSON; Identifier = std::string(ori.Identifier); } else { Generation = ObjectGeneration::DAT; Entry = ori.ObjectEntry; } } bool ObjectEntryDescriptor::HasValue() const { return Generation != ObjectGeneration::JSON || !Identifier.empty(); }; ObjectType ObjectEntryDescriptor::GetType() const { return Generation == ObjectGeneration::JSON ? Type : Entry.GetType(); } std::string_view ObjectEntryDescriptor::GetName() const { return Generation == ObjectGeneration::JSON ? Identifier : Entry.GetName(); } bool ObjectEntryDescriptor::operator==(const ObjectEntryDescriptor& rhs) const { if (Generation != rhs.Generation) return false; if (Generation == ObjectGeneration::DAT) { return Entry == rhs.Entry; } else { return Type == rhs.Type && Identifier == rhs.Identifier; } } bool ObjectEntryDescriptor::operator!=(const ObjectEntryDescriptor& rhs) const { return !(*this == rhs); } void* Object::GetLegacyData() { throw std::runtime_error("Not supported."); } void Object::ReadLegacy(IReadObjectContext* context, OpenRCT2::IStream* stream) { throw std::runtime_error("Not supported."); } void Object::PopulateTablesFromJson(IReadObjectContext* context, json_t& root) { _stringTable.ReadJson(root); _imageTable.ReadJson(context, root); } rct_object_entry Object::ParseObjectEntry(const std::string& s) { rct_object_entry entry = {}; std::fill_n(entry.name, sizeof(entry.name), ' '); auto copyLen = std::min(8, s.size()); std::copy_n(s.c_str(), copyLen, entry.name); return entry; } std::string Object::GetOverrideString(uint8_t index) const { auto legacyIdentifier = GetLegacyIdentifier(); const auto& localisationService = OpenRCT2::GetContext()->GetLocalisationService(); auto stringId = localisationService.GetObjectOverrideStringId(legacyIdentifier, index); const utf8* result = nullptr; if (stringId != STR_NONE) { result = language_get_string(stringId); } return String::ToStd(result); } std::string Object::GetString(ObjectStringID index) const { auto sz = GetOverrideString(static_cast(index)); if (sz.empty()) { sz = GetStringTable().GetString(index); } return sz; } std::string Object::GetString(int32_t language, ObjectStringID index) const { return GetStringTable().GetString(language, index); } ObjectEntryDescriptor Object::GetScgWallsHeader() const { return ObjectEntryDescriptor("rct2.scenery_group.scgwalls"); } ObjectEntryDescriptor Object::GetScgPathXHeader() const { return ObjectEntryDescriptor("rct2.scenery_group.scgpathx"); } rct_object_entry Object::CreateHeader(const char name[DAT_NAME_LENGTH + 1], uint32_t flags, uint32_t checksum) { rct_object_entry header = {}; header.flags = flags; std::copy_n(name, DAT_NAME_LENGTH, header.name); header.checksum = checksum; return header; } std::vector Object::GetSourceGames() { return _sourceGames; } void Object::SetSourceGames(const std::vector& sourceGames) { _sourceGames = sourceGames; } #ifdef __WARN_SUGGEST_FINAL_METHODS__ # pragma GCC diagnostic push # pragma GCC diagnostic ignored "-Wsuggest-final-methods" #endif std::string Object::GetName() const { return GetString(ObjectStringID::NAME); } std::string Object::GetName(int32_t language) const { return GetString(language, ObjectStringID::NAME); } void rct_object_entry::SetName(std::string_view value) { std::memset(name, ' ', sizeof(name)); std::memcpy(name, value.data(), std::min(sizeof(name), value.size())); } const std::vector& Object::GetAuthors() const { return _authors; } void Object::SetAuthors(std::vector&& authors) { _authors = std::move(authors); } bool rct_object_entry::IsEmpty() const { uint64_t a, b; std::memcpy(&a, reinterpret_cast(this), 8); std::memcpy(&b, reinterpret_cast(this) + 8, 8); if (a == 0xFFFFFFFFFFFFFFFF && b == 0xFFFFFFFFFFFFFFFF) return true; if (a == 0 && b == 0) return true; return false; } bool rct_object_entry::operator==(const rct_object_entry& rhs) const { const auto a = this; const auto b = &rhs; // If an official object don't bother checking checksum if ((a->flags & 0xF0) || (b->flags & 0xF0)) { if (a->GetType() != b->GetType()) { return false; } int32_t match = memcmp(a->name, b->name, 8); if (match) { return false; } } else { if (a->flags != b->flags) { return false; } int32_t match = memcmp(a->name, b->name, 8); if (match) { return false; } if (a->checksum != b->checksum) { return false; } } return true; } bool rct_object_entry::operator!=(const rct_object_entry& rhs) const { return !(*this == rhs); } bool ObjectAsset::IsAvailable() const { if (_zipPath.empty()) { return File::Exists(_path); } auto zipArchive = Zip::TryOpen(_zipPath, ZIP_ACCESS::READ); return zipArchive != nullptr && zipArchive->Exists(_path); } uint64_t ObjectAsset::GetSize() const { if (_zipPath.empty()) { return File::GetSize(_path); } auto zipArchive = Zip::TryOpen(_zipPath, ZIP_ACCESS::READ); if (zipArchive != nullptr) { auto index = zipArchive->GetIndexFromPath(_path); if (index.has_value()) { auto size = zipArchive->GetFileSize(index.value()); return size; } } return 0; } std::unique_ptr ObjectAsset::GetStream() const { if (_zipPath.empty()) { return std::make_unique(_path, FILE_MODE_OPEN); } auto zipArchive = Zip::TryOpen(_zipPath, ZIP_ACCESS::READ); if (zipArchive != nullptr) { auto stream = zipArchive->GetFileStream(_path); if (stream != nullptr) { return std::make_unique(std::move(zipArchive), std::move(stream)); } } return {}; } #ifdef __WARN_SUGGEST_FINAL_METHODS__ # pragma GCC diagnostic pop #endif