/***************************************************************************** * Copyright (c) 2014-2020 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 "BannerObject.h" #include "../core/IStream.hpp" #include "../core/Json.hpp" #include "../drawing/Drawing.h" #include "../localisation/Language.h" #include "../object/Object.h" #include "../object/ObjectRepository.h" #include "ObjectList.h" void BannerObject::ReadLegacy(IReadObjectContext* context, OpenRCT2::IStream* stream) { stream->Seek(6, OpenRCT2::STREAM_SEEK_CURRENT); _legacyType.banner.scrolling_mode = stream->ReadValue(); _legacyType.banner.flags = stream->ReadValue(); _legacyType.banner.price = stream->ReadValue(); _legacyType.banner.scenery_tab_id = OBJECT_ENTRY_INDEX_NULL; stream->Seek(2, OpenRCT2::STREAM_SEEK_CURRENT); GetStringTable().Read(context, stream, ObjectStringID::NAME); rct_object_entry sgEntry = stream->ReadValue(); SetPrimarySceneryGroup(&sgEntry); GetImageTable().Read(context, stream); // Validate properties if (_legacyType.large_scenery.price <= 0) { context->LogError(OBJECT_ERROR_INVALID_PROPERTY, "Price can not be free or negative."); } // Add banners to 'Signs and items for footpaths' group, rather than lumping them in the Miscellaneous tab. // Since this is already done the other way round for original items, avoid adding those to prevent duplicates. auto identifier = GetLegacyIdentifier(); auto& objectRepository = context->GetObjectRepository(); auto item = objectRepository.FindObject(identifier); if (item != nullptr) { auto sourceGame = item->GetFirstSourceGame(); if (sourceGame == OBJECT_SOURCE_WACKY_WORLDS || sourceGame == OBJECT_SOURCE_TIME_TWISTER || sourceGame == OBJECT_SOURCE_CUSTOM) { auto scgPathX = Object::GetScgPathXHeader(); SetPrimarySceneryGroup(&scgPathX); } } } void BannerObject::Load() { GetStringTable().Sort(); _legacyType.name = language_allocate_object_string(GetName()); _legacyType.image = gfx_object_allocate_images(GetImageTable().GetImages(), GetImageTable().GetCount()); } void BannerObject::Unload() { language_free_object_string(_legacyType.name); gfx_object_free_images(_legacyType.image, GetImageTable().GetCount()); _legacyType.name = 0; _legacyType.image = 0; } void BannerObject::DrawPreview(rct_drawpixelinfo* dpi, int32_t width, int32_t height) const { auto screenCoords = ScreenCoordsXY{ width / 2, height / 2 }; uint32_t imageId = 0x20D00000 | _legacyType.image; gfx_draw_sprite(dpi, imageId + 0, screenCoords + ScreenCoordsXY{ -12, 8 }, 0); gfx_draw_sprite(dpi, imageId + 1, screenCoords + ScreenCoordsXY{ -12, 8 }, 0); } void BannerObject::ReadJson(IReadObjectContext* context, json_t& root) { Guard::Assert(root.is_object(), "BannerObject::ReadJson expects parameter root to be object"); json_t properties = root["properties"]; if (properties.is_object()) { _legacyType.banner.scrolling_mode = Json::GetNumber(properties["scrollingMode"]); _legacyType.banner.price = Json::GetNumber(properties["price"]); _legacyType.banner.flags = Json::GetFlags( properties, { { "hasPrimaryColour", BANNER_ENTRY_FLAG_HAS_PRIMARY_COLOUR }, }); SetPrimarySceneryGroup(Json::GetString(properties["sceneryGroup"])); } PopulateTablesFromJson(context, root); }