/***************************************************************************** * Copyright (c) 2014-2018 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 "../Context.h" #include "../Game.h" #include "../GameState.h" #include "../OpenRCT2.h" #include "../ParkImporter.h" #include "../config/Config.h" #include "../core/Console.hpp" #include "../core/FileStream.hpp" #include "../core/IStream.hpp" #include "../core/Path.hpp" #include "../core/String.hpp" #include "../interface/Viewport.h" #include "../localisation/Date.h" #include "../localisation/Localisation.h" #include "../management/Award.h" #include "../management/Finance.h" #include "../management/Marketing.h" #include "../management/NewsItem.h" #include "../management/Research.h" #include "../network/network.h" #include "../object/ObjectLimits.h" #include "../object/ObjectManager.h" #include "../object/ObjectRepository.h" #include "../peep/Staff.h" #include "../rct12/SawyerChunkReader.h" #include "../rct12/SawyerEncoding.h" #include "../ride/Ride.h" #include "../ride/RideRatings.h" #include "../ride/ShopItem.h" #include "../ride/Station.h" #include "../scenario/Scenario.h" #include "../scenario/ScenarioRepository.h" #include "../util/SawyerCoding.h" #include "../util/Util.h" #include "../world/Climate.h" #include "../world/Entrance.h" #include "../world/MapAnimation.h" #include "../world/Park.h" #include "../world/Sprite.h" #include "../world/Surface.h" #include /** * Class to import RollerCoaster Tycoon 2 scenarios (*.SC6) and saved games (*.SV6). */ class S6Importer final : public IParkImporter { private: IObjectRepository& _objectRepository; const utf8* _s6Path = nullptr; rct_s6_data _s6{}; uint8_t _gameVersion = 0; public: S6Importer(IObjectRepository& objectRepository) : _objectRepository(objectRepository) { } ParkLoadResult Load(const utf8* path) override { const utf8* extension = Path::GetExtension(path); if (String::Equals(extension, ".sc6", true)) { return LoadScenario(path); } else if (String::Equals(extension, ".sv6", true)) { return LoadSavedGame(path); } else { throw std::runtime_error("Invalid RCT2 park extension."); } } ParkLoadResult LoadSavedGame(const utf8* path, bool skipObjectCheck = false) override { auto fs = FileStream(path, FILE_MODE_OPEN); auto result = LoadFromStream(&fs, false, skipObjectCheck); _s6Path = path; return result; } ParkLoadResult LoadScenario(const utf8* path, bool skipObjectCheck = false) override { auto fs = FileStream(path, FILE_MODE_OPEN); auto result = LoadFromStream(&fs, true, skipObjectCheck); _s6Path = path; return result; } ParkLoadResult LoadFromStream( IStream* stream, bool isScenario, [[maybe_unused]] bool skipObjectCheck = false, const utf8* path = String::Empty) override { if (isScenario && !gConfigGeneral.allow_loading_with_incorrect_checksum && !SawyerEncoding::ValidateChecksum(stream)) { throw IOException("Invalid checksum."); } auto chunkReader = SawyerChunkReader(stream); chunkReader.ReadChunk(&_s6.header, sizeof(_s6.header)); log_verbose("saved game classic_flag = 0x%02x\n", _s6.header.classic_flag); if (isScenario) { if (_s6.header.type != S6_TYPE_SCENARIO) { throw std::runtime_error("Park is not a scenario."); } chunkReader.ReadChunk(&_s6.info, sizeof(_s6.info)); } else { if (_s6.header.type != S6_TYPE_SAVEDGAME) { throw std::runtime_error("Park is not a saved game."); } } if (_s6.header.classic_flag == 0xf) { throw UnsupportedRCTCFlagException(_s6.header.classic_flag); } // Read packed objects // TODO try to contain this more and not store objects until later for (uint16_t i = 0; i < _s6.header.num_packed_objects; i++) { _objectRepository.ExportPackedObject(stream); } if (isScenario) { chunkReader.ReadChunk(&_s6.objects, sizeof(_s6.objects)); chunkReader.ReadChunk(&_s6.elapsed_months, 16); chunkReader.ReadChunk(&_s6.tile_elements, sizeof(_s6.tile_elements)); chunkReader.ReadChunk(&_s6.next_free_tile_element_pointer_index, 2560076); chunkReader.ReadChunk(&_s6.guests_in_park, 4); chunkReader.ReadChunk(&_s6.last_guests_in_park, 8); chunkReader.ReadChunk(&_s6.park_rating, 2); chunkReader.ReadChunk(&_s6.active_research_types, 1082); chunkReader.ReadChunk(&_s6.current_expenditure, 16); chunkReader.ReadChunk(&_s6.park_value, 4); chunkReader.ReadChunk(&_s6.completed_company_value, 483816); } else { chunkReader.ReadChunk(&_s6.objects, sizeof(_s6.objects)); chunkReader.ReadChunk(&_s6.elapsed_months, 16); chunkReader.ReadChunk(&_s6.tile_elements, sizeof(_s6.tile_elements)); chunkReader.ReadChunk(&_s6.next_free_tile_element_pointer_index, 3048816); } _s6Path = path; return ParkLoadResult(std::vector(std::begin(_s6.objects), std::end(_s6.objects))); } bool GetDetails(scenario_index_entry* dst) override { *dst = {}; return false; } void Import() override { Initialise(); // _s6.header gS6Info = _s6.info; // Some scenarios have their scenario details in UTF-8, due to earlier bugs in OpenRCT2. // This is hard to detect. Therefore, consider invalid characters like colour codes as a sign the text is in UTF-8. bool alreadyInUTF8 = false; if (String::ContainsColourCode(_s6.info.name) || String::ContainsColourCode(_s6.info.details)) { alreadyInUTF8 = true; } if (!alreadyInUTF8) { auto temp = rct2_to_utf8(_s6.info.name, RCT2_LANGUAGE_ID_ENGLISH_UK); safe_strcpy(gS6Info.name, temp.data(), sizeof(gS6Info.name)); auto temp2 = rct2_to_utf8(_s6.info.details, RCT2_LANGUAGE_ID_ENGLISH_UK); safe_strcpy(gS6Info.details, temp2.data(), sizeof(gS6Info.details)); } else { safe_strcpy(gS6Info.name, _s6.info.name, sizeof(gS6Info.name)); safe_strcpy(gS6Info.details, _s6.info.details, sizeof(gS6Info.details)); } gDateMonthsElapsed = _s6.elapsed_months; gDateMonthTicks = _s6.current_day; gScenarioTicks = _s6.scenario_ticks; gScenarioSrand0 = _s6.scenario_srand_0; gScenarioSrand1 = _s6.scenario_srand_1; ImportTileElements(); gNextFreeTileElementPointerIndex = _s6.next_free_tile_element_pointer_index; for (int32_t i = 0; i < RCT2_MAX_SPRITES; i++) { std::memcpy(get_sprite(i), &_s6.sprites[i], sizeof(rct_sprite)); } for (int32_t i = 0; i < NUM_SPRITE_LISTS; i++) { gSpriteListHead[i] = _s6.sprite_lists_head[i]; gSpriteListCount[i] = _s6.sprite_lists_count[i]; } // This list contains the number of free slots. Increase it according to our own sprite limit. gSpriteListCount[SPRITE_LIST_NULL] += (MAX_SPRITES - RCT2_MAX_SPRITES); gParkName = _s6.park_name; // pad_013573D6 gParkNameArgs = _s6.park_name_args; gInitialCash = _s6.initial_cash; gBankLoan = _s6.current_loan; gParkFlags = _s6.park_flags; gParkEntranceFee = _s6.park_entrance_fee; // rct1_park_entrance_x // rct1_park_entrance_y // pad_013573EE // rct1_park_entrance_z ImportPeepSpawns(); gGuestChangeModifier = _s6.guest_count_change_modifier; gResearchFundingLevel = _s6.current_research_level; // pad_01357400 ImportResearchedRideTypes(); ImportResearchedRideEntries(); // _s6.researched_track_types_a // _s6.researched_track_types_b gNumGuestsInPark = _s6.guests_in_park; gNumGuestsHeadingForPark = _s6.guests_heading_for_park; for (size_t i = 0; i < RCT12_EXPENDITURE_TABLE_MONTH_COUNT; i++) { for (size_t j = 0; j < RCT12_EXPENDITURE_TYPE_COUNT; j++) { gExpenditureTable[i][j] = _s6.expenditure_table[i][j]; } } gNumGuestsInParkLastWeek = _s6.last_guests_in_park; // pad_01357BCA gStaffHandymanColour = _s6.handyman_colour; gStaffMechanicColour = _s6.mechanic_colour; gStaffSecurityColour = _s6.security_colour; ImportResearchedSceneryItems(); gParkRating = _s6.park_rating; std::memcpy(gParkRatingHistory, _s6.park_rating_history, sizeof(_s6.park_rating_history)); std::memcpy(gGuestsInParkHistory, _s6.guests_in_park_history, sizeof(_s6.guests_in_park_history)); gResearchPriorities = _s6.active_research_types; gResearchProgressStage = _s6.research_progress_stage; gResearchLastItem.rawValue = _s6.last_researched_item_subject; // pad_01357CF8 gResearchNextItem.rawValue = _s6.next_research_item; gResearchProgress = _s6.research_progress; gResearchNextItem.category = _s6.next_research_category; gResearchExpectedDay = _s6.next_research_expected_day; gResearchExpectedMonth = _s6.next_research_expected_month; gGuestInitialHappiness = _s6.guest_initial_happiness; gParkSize = _s6.park_size; _guestGenerationProbability = _s6.guest_generation_probability; gTotalRideValueForMoney = _s6.total_ride_value_for_money; gMaxBankLoan = _s6.maximum_loan; gGuestInitialCash = _s6.guest_initial_cash; gGuestInitialHunger = _s6.guest_initial_hunger; gGuestInitialThirst = _s6.guest_initial_thirst; gScenarioObjectiveType = _s6.objective_type; gScenarioObjectiveYear = _s6.objective_year; // pad_013580FA gScenarioObjectiveCurrency = _s6.objective_currency; gScenarioObjectiveNumGuests = _s6.objective_guests; std::memcpy(gMarketingCampaignDaysLeft, _s6.campaign_weeks_left, sizeof(_s6.campaign_weeks_left)); std::memcpy(gMarketingCampaignRideIndex, _s6.campaign_ride_index, sizeof(_s6.campaign_ride_index)); gCurrentExpenditure = _s6.current_expenditure; gCurrentProfit = _s6.current_profit; gWeeklyProfitAverageDividend = _s6.weekly_profit_average_dividend; gWeeklyProfitAverageDivisor = _s6.weekly_profit_average_divisor; // pad_0135833A gParkValue = _s6.park_value; for (size_t i = 0; i < RCT12_FINANCE_GRAPH_SIZE; i++) { gCashHistory[i] = _s6.balance_history[i]; gWeeklyProfitHistory[i] = _s6.weekly_profit_history[i]; gParkValueHistory[i] = _s6.park_value_history[i]; } gScenarioCompletedCompanyValue = _s6.completed_company_value; gTotalAdmissions = _s6.total_admissions; gTotalIncomeFromAdmissions = _s6.income_from_admissions; gCompanyValue = _s6.company_value; std::memcpy(gPeepWarningThrottle, _s6.peep_warning_throttle, sizeof(_s6.peep_warning_throttle)); // Awards for (int32_t i = 0; i < RCT12_MAX_AWARDS; i++) { rct12_award* src = &_s6.awards[i]; Award* dst = &gCurrentAwards[i]; dst->Time = src->time; dst->Type = src->type; } gLandPrice = _s6.land_price; gConstructionRightsPrice = _s6.construction_rights_price; // unk_01358774 // pad_01358776 // _s6.cd_key _gameVersion = _s6.game_version_number; gScenarioCompanyValueRecord = _s6.completed_company_value_record; // _s6.loan_hash; gRideCount = _s6.ride_count; // pad_013587CA gHistoricalProfit = _s6.historical_profit; // pad_013587D4 gScenarioCompletedBy = std::string_view(_s6.scenario_completed_name, sizeof(_s6.scenario_completed_name)); gCash = DECRYPT_MONEY(_s6.cash); // pad_013587FC gParkRatingCasualtyPenalty = _s6.park_rating_casualty_penalty; gMapSizeUnits = _s6.map_size_units; gMapSizeMinus2 = _s6.map_size_minus_2; gMapSize = _s6.map_size; gMapSizeMaxXY = _s6.map_max_xy; gSamePriceThroughoutParkA = _s6.same_price_throughout; _suggestedGuestMaximum = _s6.suggested_max_guests; gScenarioParkRatingWarningDays = _s6.park_rating_warning_days; gLastEntranceStyle = _s6.last_entrance_style; // rct1_water_colour // pad_01358842 ImportResearchList(); gMapBaseZ = _s6.map_base_z; gScenarioName = std::string_view(_s6.scenario_name, sizeof(_s6.scenario_name)); gScenarioDetails = std::string_view(_s6.scenario_description, sizeof(_s6.scenario_description)); gBankLoanInterestRate = _s6.current_interest_rate; // pad_0135934B gSamePriceThroughoutParkB = _s6.same_price_throughout_extended; // Preserve compatibility with vanilla RCT2's save format. gParkEntrances.clear(); for (uint8_t i = 0; i < RCT12_MAX_PARK_ENTRANCES; i++) { if (_s6.park_entrance_x[i] != LOCATION_NULL) { CoordsXYZD entrance; entrance.x = _s6.park_entrance_x[i]; entrance.y = _s6.park_entrance_y[i]; entrance.z = _s6.park_entrance_z[i]; entrance.direction = _s6.park_entrance_direction[i]; gParkEntrances.push_back(entrance); } } if (_s6.header.type == S6_TYPE_SCENARIO) { // _s6.scenario_filename is wrong for some RCT2 expansion scenarios, so we use the real filename String::Set(gScenarioFileName, sizeof(gScenarioFileName), Path::GetFileName(_s6Path)); } else { // For savegames the filename can be arbitrary, so we have no choice but to rely on the name provided String::Set(gScenarioFileName, sizeof(gScenarioFileName), _s6.scenario_filename); } std::memcpy(gScenarioExpansionPacks, _s6.saved_expansion_pack_names, sizeof(_s6.saved_expansion_pack_names)); std::memcpy(gBanners, _s6.banners, sizeof(_s6.banners)); // Clear all of the strings, since we will probably have a higher limit on user strings in the future than RCT2. user_string_clear_all(); std::memcpy(gUserStrings, _s6.custom_strings, sizeof(_s6.custom_strings)); gCurrentTicks = _s6.game_ticks_1; gCurrentRealTimeTicks = 0; ImportRides(); gSavedAge = _s6.saved_age; gSavedViewX = _s6.saved_view_x; gSavedViewY = _s6.saved_view_y; gSavedViewZoom = _s6.saved_view_zoom; gSavedViewRotation = _s6.saved_view_rotation; for (size_t i = 0; i < RCT2_MAX_ANIMATED_OBJECTS; i++) { gAnimatedObjects[i] = _s6.map_animations[i]; } gNumMapAnimations = _s6.num_map_animations; // pad_0138B582 gRideRatingsCalcData = _s6.ride_ratings_calc_data; std::memcpy(gRideMeasurements, _s6.ride_measurements, sizeof(_s6.ride_measurements)); gNextGuestNumber = _s6.next_guest_index; gGrassSceneryTileLoopPosition = _s6.grass_and_scenery_tilepos; std::memcpy(gStaffPatrolAreas, _s6.patrol_areas, sizeof(_s6.patrol_areas)); std::memcpy(gStaffModes, _s6.staff_modes, sizeof(_s6.staff_modes)); // unk_13CA73E // pad_13CA73F gUnk13CA740 = _s6.byte_13CA740; gClimate = _s6.climate; // pad_13CA741; // byte_13CA742 // pad_013CA747 gClimateUpdateTimer = _s6.climate_update_timer; gClimateCurrent.Weather = _s6.current_weather; gClimateNext.Weather = _s6.next_weather; gClimateCurrent.Temperature = _s6.temperature; gClimateNext.Temperature = _s6.next_temperature; gClimateCurrent.WeatherEffect = _s6.current_weather_effect; gClimateNext.WeatherEffect = _s6.next_weather_effect; gClimateCurrent.WeatherGloom = _s6.current_weather_gloom; gClimateNext.WeatherGloom = _s6.next_weather_gloom; gClimateCurrent.RainLevel = _s6.current_rain_level; gClimateNext.RainLevel = _s6.next_rain_level; // News items news_item_init_queue(); for (size_t i = 0; i < RCT12_MAX_NEWS_ITEMS; i++) { const rct12_news_item* src = &_s6.news_items[i]; NewsItem* dst = &gNewsItems[i]; if (src->Type < std::size(news_type_properties)) { dst->Type = src->Type; dst->Flags = src->Flags; dst->Assoc = src->Assoc; dst->Ticks = src->Ticks; dst->MonthYear = src->MonthYear; dst->Day = src->Day; std::memcpy(dst->Text, src->Text, sizeof(src->Text)); } else { // In case where news item type is broken, consider all remaining news items invalid. log_error("Invalid news type 0x%x for news item %d, ignoring remaining news items", src->Type, i); // Still need to set the correct type to properly terminate the queue dst->Type = NEWS_ITEM_NULL; break; } } // pad_13CE730 // rct1_scenario_flags gWidePathTileLoopX = _s6.wide_path_tile_loop_x; gWidePathTileLoopY = _s6.wide_path_tile_loop_y; // pad_13CE778 // Fix and set dynamic variables map_strip_ghost_flag_from_elements(); map_update_tile_pointers(); game_convert_strings_to_utf8(); map_count_remaining_land_rights(); determine_ride_entrance_and_exit_locations(); // We try to fix the cycles on import, hence the 'true' parameter check_for_sprite_list_cycles(true); check_for_spatial_index_cycles(true); int32_t disjoint_sprites_count = fix_disjoint_sprites(); // This one is less harmful, no need to assert for it ~janisozaur if (disjoint_sprites_count > 0) { log_error("Found %d disjoint null sprites", disjoint_sprites_count); } if (String::Equals(_s6.scenario_filename, "Europe - European Cultural Festival.SC6")) { // This scenario breaks pathfinding. Create passages between the worlds. (List is grouped by neighbouring tiles.) // clang-format off FixLandOwnershipTilesWithOwnership( { { 67, 94 }, { 68, 94 }, { 69, 94 }, { 58, 24 }, { 58, 25 }, { 58, 26 }, { 58, 27 }, { 58, 28 }, { 58, 29 }, { 58, 30 }, { 58, 31 }, { 58, 32 }, { 26, 44 }, { 26, 45 }, { 32, 79 }, { 32, 80 }, { 32, 81 }, }, OWNERSHIP_OWNED); // clang-format on } } void ImportRides() { for (uint8_t index = 0; index < RCT12_MAX_RIDES_IN_PARK; index++) { auto src = &_s6.rides[index]; auto dst = get_ride(index); *dst = {}; if (src->type == RIDE_TYPE_NULL) { dst->type = RIDE_TYPE_NULL; } else { ImportRide(dst, src, index); } } } void ImportRide(Ride* dst, const rct2_ride* src, const uint8_t rideIndex) { std::memset(dst, 0, sizeof(Ride)); dst->type = src->type; dst->subtype = src->subtype; // pad_002; dst->mode = src->mode; dst->colour_scheme_type = src->colour_scheme_type; for (uint8_t i = 0; i < RCT2_MAX_CARS_PER_TRAIN; i++) { dst->vehicle_colours[i] = src->vehicle_colours[i]; } // pad_046; dst->status = src->status; dst->name = src->name; dst->name_arguments = src->name_arguments; dst->overall_view = src->overall_view; for (int32_t i = 0; i < RCT12_MAX_STATIONS_PER_RIDE; i++) { dst->station_starts[i] = src->station_starts[i]; dst->station_heights[i] = src->station_heights[i]; dst->station_length[i] = src->station_length[i]; dst->station_depart[i] = src->station_depart[i]; dst->train_at_station[i] = src->train_at_station[i]; // Direction is fixed later. if (src->entrances[i].xy == RCT_XY8_UNDEFINED) ride_clear_entrance_location(dst, i); else ride_set_entrance_location(dst, i, { src->entrances[i].x, src->entrances[i].y, src->station_heights[i], 0 }); if (src->exits[i].xy == RCT_XY8_UNDEFINED) ride_clear_exit_location(dst, i); else ride_set_exit_location(dst, i, { src->entrances[i].x, src->entrances[i].y, src->station_heights[i], 0 }); dst->last_peep_in_queue[i] = src->last_peep_in_queue[i]; dst->length[i] = src->length[i]; dst->time[i] = src->time[i]; dst->queue_time[i] = src->queue_time[i]; dst->queue_length[i] = src->queue_length[i]; } // All other values take 0 as their default. Since they're already memset to that, no need to do it again. for (int32_t i = RCT12_MAX_STATIONS_PER_RIDE; i < MAX_STATIONS; i++) { dst->station_starts[i].xy = RCT_XY8_UNDEFINED; dst->train_at_station[i] = 255; ride_clear_entrance_location(dst, i); ride_clear_exit_location(dst, i); dst->last_peep_in_queue[i] = SPRITE_INDEX_NULL; } for (int32_t i = 0; i < RCT2_MAX_VEHICLES_PER_RIDE; i++) { dst->vehicles[i] = src->vehicles[i]; } for (int32_t i = RCT2_MAX_VEHICLES_PER_RIDE; i < MAX_VEHICLES_PER_RIDE; i++) { dst->vehicles[i] = SPRITE_INDEX_NULL; } dst->depart_flags = src->depart_flags; dst->num_stations = src->num_stations; dst->num_vehicles = src->num_vehicles; dst->num_cars_per_train = src->num_cars_per_train; dst->proposed_num_vehicles = src->proposed_num_vehicles; dst->proposed_num_cars_per_train = src->proposed_num_cars_per_train; dst->max_trains = src->max_trains; dst->min_max_cars_per_train = src->min_max_cars_per_train; dst->min_waiting_time = src->min_waiting_time; dst->max_waiting_time = src->max_waiting_time; // Includes time_limit, num_laps, launch_speed, speed, rotations dst->operation_option = src->operation_option; dst->boat_hire_return_direction = src->boat_hire_return_direction; dst->boat_hire_return_position = src->boat_hire_return_position; dst->measurement_index = src->measurement_index; dst->special_track_elements = src->special_track_elements; // pad_0D6[2]; dst->max_speed = src->max_speed; dst->average_speed = src->average_speed; dst->current_test_segment = src->current_test_segment; dst->average_speed_test_timeout = src->average_speed_test_timeout; // pad_0E2[0x2]; dst->max_positive_vertical_g = src->max_positive_vertical_g; dst->max_negative_vertical_g = src->max_negative_vertical_g; dst->max_lateral_g = src->max_lateral_g; dst->previous_vertical_g = src->previous_vertical_g; dst->previous_lateral_g = src->previous_lateral_g; // pad_106[0x2]; dst->testing_flags = src->testing_flags; dst->cur_test_track_location = src->cur_test_track_location; dst->turn_count_default = src->turn_count_default; dst->turn_count_banked = src->turn_count_banked; dst->turn_count_sloped = src->turn_count_sloped; // Includes holes and (for some strange reason?!) sheltered_eights dst->inversions = src->inversions; dst->drops = src->drops; dst->start_drop_height = src->start_drop_height; dst->highest_drop_height = src->highest_drop_height; dst->sheltered_length = src->sheltered_length; dst->var_11C = src->var_11C; dst->num_sheltered_sections = src->num_sheltered_sections; dst->cur_test_track_z = src->cur_test_track_z; dst->cur_num_customers = src->cur_num_customers; dst->num_customers_timeout = src->num_customers_timeout; for (uint8_t i = 0; i < RCT2_CUSTOMER_HISTORY_SIZE; i++) { dst->num_customers[i] = src->num_customers[i]; } dst->price = src->price; for (uint8_t i = 0; i < 2; i++) { dst->chairlift_bullwheel_location[i] = src->chairlift_bullwheel_location[i]; dst->chairlift_bullwheel_z[i] = src->chairlift_bullwheel_z[i]; } dst->ratings = src->ratings; dst->value = src->value; dst->chairlift_bullwheel_rotation = src->chairlift_bullwheel_rotation; dst->satisfaction = src->satisfaction; dst->satisfaction_time_out = src->satisfaction_time_out; dst->satisfaction_next = src->satisfaction_next; dst->window_invalidate_flags = src->window_invalidate_flags; // pad_14E[0x02]; dst->total_customers = src->total_customers; dst->total_profit = src->total_profit; dst->popularity = src->popularity; dst->popularity_time_out = src->popularity_time_out; dst->popularity_next = src->popularity_next; ImportNumRiders(dst, rideIndex); dst->music_tune_id = src->music_tune_id; dst->slide_in_use = src->slide_in_use; // Includes maze_tiles dst->slide_peep = src->slide_peep; // pad_160[0xE]; dst->slide_peep_t_shirt_colour = src->slide_peep_t_shirt_colour; // pad_16F[0x7]; dst->spiral_slide_progress = src->spiral_slide_progress; // pad_177[0x9]; dst->build_date = src->build_date; dst->upkeep_cost = src->upkeep_cost; dst->race_winner = src->race_winner; // pad_186[0x02]; dst->music_position = src->music_position; dst->breakdown_reason_pending = src->breakdown_reason_pending; dst->mechanic_status = src->mechanic_status; dst->mechanic = src->mechanic; dst->inspection_station = src->inspection_station; dst->broken_vehicle = src->broken_vehicle; dst->broken_car = src->broken_car; dst->breakdown_reason = src->breakdown_reason; dst->price_secondary = src->price_secondary; dst->reliability = src->reliability; dst->unreliability_factor = src->unreliability_factor; dst->downtime = src->downtime; dst->inspection_interval = src->inspection_interval; dst->last_inspection = src->last_inspection; for (uint8_t i = 0; i < RCT2_DOWNTIME_HISTORY_SIZE; i++) { dst->downtime_history[i] = src->downtime_history[i]; } dst->no_primary_items_sold = src->no_primary_items_sold; dst->no_secondary_items_sold = src->no_secondary_items_sold; dst->breakdown_sound_modifier = src->breakdown_sound_modifier; dst->not_fixed_timeout = src->not_fixed_timeout; dst->last_crash_type = src->last_crash_type; dst->connected_message_throttle = src->connected_message_throttle; dst->income_per_hour = src->income_per_hour; dst->profit = src->profit; for (uint8_t i = 0; i < RCT12_NUM_COLOUR_SCHEMES; i++) { dst->track_colour_main[i] = src->track_colour_main[i]; dst->track_colour_additional[i] = src->track_colour_additional[i]; dst->track_colour_supports[i] = src->track_colour_supports[i]; } dst->music = src->music; dst->entrance_style = src->entrance_style; dst->vehicle_change_timeout = src->vehicle_change_timeout; dst->num_block_brakes = src->num_block_brakes; dst->lift_hill_speed = src->lift_hill_speed; dst->guests_favourite = src->guests_favourite; dst->lifecycle_flags = src->lifecycle_flags; for (uint8_t i = 0; i < RCT2_MAX_CARS_PER_TRAIN; i++) { dst->vehicle_colours_extended[i] = src->vehicle_colours_extended[i]; } dst->total_air_time = src->total_air_time; dst->current_test_station = src->current_test_station; dst->num_circuits = src->num_circuits; dst->cable_lift_x = src->cable_lift_x; dst->cable_lift_y = src->cable_lift_y; dst->cable_lift_z = src->cable_lift_z; // pad_1FD; dst->cable_lift = src->cable_lift; // pad_208[0x58]; } void ImportResearchedRideTypes() { set_every_ride_type_not_invented(); for (int32_t rideType = 0; rideType < RIDE_TYPE_COUNT; rideType++) { int32_t quadIndex = rideType >> 5; int32_t bitIndex = rideType & 0x1F; bool invented = (_s6.researched_ride_types[quadIndex] & ((uint32_t)1 << bitIndex)); if (invented) ride_type_set_invented(rideType); } } void ImportResearchedRideEntries() { set_every_ride_entry_not_invented(); for (int32_t rideEntryIndex = 0; rideEntryIndex < MAX_RIDE_OBJECTS; rideEntryIndex++) { int32_t quadIndex = rideEntryIndex >> 5; int32_t bitIndex = rideEntryIndex & 0x1F; bool invented = (_s6.researched_ride_entries[quadIndex] & ((uint32_t)1 << bitIndex)); if (invented) ride_entry_set_invented(rideEntryIndex); } } void ImportResearchedSceneryItems() { set_all_scenery_items_not_invented(); for (uint16_t sceneryEntryIndex = 0; sceneryEntryIndex < RCT2_MAX_RESEARCHED_SCENERY_ITEMS; sceneryEntryIndex++) { int32_t quadIndex = sceneryEntryIndex >> 5; int32_t bitIndex = sceneryEntryIndex & 0x1F; bool invented = (_s6.researched_scenery_items[quadIndex] & ((uint32_t)1 << bitIndex)); if (invented) scenery_set_invented(sceneryEntryIndex); } } void ImportResearchList() { std::memcpy(gResearchItems, _s6.research_items, sizeof(_s6.research_items)); } void Initialise() { OpenRCT2::GetContext()->GetGameState()->InitAll(_s6.map_size); } /** * Imports guest entry points. * Includes fixes for incorrectly set guest entry points in some scenarios. */ void ImportPeepSpawns() { // Many WW and TT have scenario_filename fields containing an incorrect filename. Check for both this filename // and the corrected filename. // In this park, peep_spawns[0] is incorrect, and peep_spawns[1] is correct. if (String::Equals(_s6.scenario_filename, "WW South America - Rio Carnival.SC6") || String::Equals(_s6.scenario_filename, "South America - Rio Carnival.SC6")) { _s6.peep_spawns[0] = { 2160, 3167, 6, 1 }; _s6.peep_spawns[1].x = PEEP_SPAWN_UNDEFINED; } // In this park, peep_spawns[0] is correct. Just clear the other. else if ( String::Equals(_s6.scenario_filename, "Great Wall of China Tourism Enhancement.SC6") || String::Equals(_s6.scenario_filename, "Asia - Great Wall of China Tourism Enhancement.SC6")) { _s6.peep_spawns[1].x = PEEP_SPAWN_UNDEFINED; } // Amity Airfield has peeps entering from the corner of the tile, instead of the middle. else if (String::Equals(_s6.scenario_filename, "Amity Airfield.SC6")) { _s6.peep_spawns[0].y = 1296; } gPeepSpawns.clear(); for (size_t i = 0; i < RCT12_MAX_PEEP_SPAWNS; i++) { if (_s6.peep_spawns[i].x != PEEP_SPAWN_UNDEFINED) { PeepSpawn spawn = { _s6.peep_spawns[i].x, _s6.peep_spawns[i].y, _s6.peep_spawns[i].z * 16, _s6.peep_spawns[i].direction }; gPeepSpawns.push_back(spawn); } } } void ImportNumRiders(Ride* dst, const uint8_t rideIndex) { // The number of riders might have overflown or underflown. Re-calculate the value. uint16_t numRiders = 0; for (const rct_sprite& sprite : _s6.sprites) { if (sprite.generic.sprite_identifier == SPRITE_IDENTIFIER_PEEP) { if (sprite.peep.current_ride == rideIndex && (sprite.peep.state == PEEP_STATE_ON_RIDE || sprite.peep.state == PEEP_STATE_ENTERING_RIDE)) { numRiders++; } } } dst->num_riders = numRiders; } void ImportTileElements() { for (uint32_t index = 0; index < RCT2_MAX_TILE_ELEMENTS; index++) { auto src = &_s6.tile_elements[index]; auto dst = &gTileElements[index]; if (src->base_height == 0xFF) { std::memcpy(dst, src, sizeof(*src)); } else { auto tileElementType = (RCT12TileElementType)src->GetType(); // Todo: replace with setting invisibility bit if (tileElementType == RCT12TileElementType::Corrupt || tileElementType == RCT12TileElementType::EightCarsCorrupt14 || tileElementType == RCT12TileElementType::EightCarsCorrupt15) std::memcpy(dst, src, sizeof(*src)); else ImportTileElement(dst, src); } } } void ImportTileElement(TileElement* dst, const RCT12TileElement* src) { // Todo: allow for changing defition of OpenRCT2 tile element types - replace with a map uint8_t tileElementType = src->GetType(); dst->ClearAs(tileElementType); dst->SetDirection(src->GetDirection()); dst->flags = src->flags; dst->base_height = src->base_height; dst->clearance_height = src->clearance_height; switch (tileElementType) { case TILE_ELEMENT_TYPE_SURFACE: { auto dst2 = dst->AsSurface(); auto src2 = src->AsSurface(); dst2->SetSlope(src2->GetSlope()); dst2->SetSurfaceStyle(src2->GetSurfaceStyle()); dst2->SetEdgeStyle(src2->GetEdgeStyle()); dst2->SetGrassLength(src2->GetGrassLength()); dst2->SetOwnership(src2->GetOwnership()); dst2->SetParkFences(src2->GetParkFences()); dst2->SetWaterHeight(src2->GetWaterHeight()); dst2->SetHasTrackThatNeedsWater(src2->HasTrackThatNeedsWater()); break; } case TILE_ELEMENT_TYPE_PATH: { auto dst2 = dst->AsPath(); auto src2 = src->AsPath(); dst2->SetEntryIndex(src2->GetEntryIndex()); dst2->SetQueueBannerDirection(src2->GetQueueBannerDirection()); dst2->SetSloped(src2->IsSloped()); dst2->SetSlopeDirection(src2->GetSlopeDirection()); dst2->SetRideIndex(src2->GetRideIndex()); dst2->SetStationIndex(src2->GetStationIndex()); dst2->SetWide(src2->IsWide()); dst2->SetIsQueue(src2->IsQueue()); dst2->SetHasQueueBanner(src2->HasQueueBanner()); dst2->SetEdges(src2->GetEdges()); dst2->SetCorners(src2->GetCorners()); dst2->SetAddition(src2->GetAddition()); dst2->SetAdditionIsGhost(src2->AdditionIsGhost()); dst2->SetAdditionStatus(src2->GetAdditionStatus()); break; } case TILE_ELEMENT_TYPE_TRACK: { auto dst2 = dst->AsTrack(); auto src2 = src->AsTrack(); dst2->SetTrackType(src2->GetTrackType()); dst2->SetSequenceIndex(src2->GetSequenceIndex()); dst2->SetRideIndex(src2->GetRideIndex()); dst2->SetColourScheme(src2->GetColourScheme()); dst2->SetStationIndex(src2->GetStationIndex()); dst2->SetHasChain(src2->HasChain()); dst2->SetHasCableLift(src2->HasCableLift()); dst2->SetInverted(src2->IsInverted()); dst2->SetBrakeBoosterSpeed(src2->GetBrakeBoosterSpeed()); dst2->SetHasGreenLight(src2->HasGreenLight()); dst2->SetSeatRotation(src2->GetSeatRotation()); dst2->SetMazeEntry(src2->GetMazeEntry()); dst2->SetPhotoTimeout(src2->GetPhotoTimeout()); // Skipping IsHighlighted() break; } case TILE_ELEMENT_TYPE_SMALL_SCENERY: { auto dst2 = dst->AsSmallScenery(); auto src2 = src->AsSmallScenery(); dst2->SetEntryIndex(src2->GetEntryIndex()); dst2->SetAge(src2->GetAge()); dst2->SetSceneryQuadrant(src2->GetSceneryQuadrant()); dst2->SetPrimaryColour(src2->GetPrimaryColour()); dst2->SetSecondaryColour(src2->GetSecondaryColour()); if (src2->NeedsSupports()) dst2->SetNeedsSupports(); break; } case TILE_ELEMENT_TYPE_ENTRANCE: { auto dst2 = dst->AsEntrance(); auto src2 = src->AsEntrance(); dst2->SetEntranceType(src2->GetEntranceType()); dst2->SetRideIndex(src2->GetRideIndex()); dst2->SetStationIndex(src2->GetStationIndex()); dst2->SetSequenceIndex(src2->GetSequenceIndex()); dst2->SetPathType(src2->GetPathType()); break; } case TILE_ELEMENT_TYPE_WALL: { auto dst2 = dst->AsWall(); auto src2 = src->AsWall(); dst2->SetEntryIndex(src2->GetEntryIndex()); dst2->SetSlope(src2->GetSlope()); dst2->SetPrimaryColour(src2->GetPrimaryColour()); dst2->SetSecondaryColour(src2->GetSecondaryColour()); dst2->SetTertiaryColour(src2->GetTertiaryColour()); dst2->SetAnimationFrame(src2->GetAnimationFrame()); dst2->SetBannerIndex(src2->GetBannerIndex()); dst2->SetAcrossTrack(src2->IsAcrossTrack()); dst2->SetAnimationIsBackwards(src2->AnimationIsBackwards()); break; } case TILE_ELEMENT_TYPE_LARGE_SCENERY: { auto dst2 = dst->AsLargeScenery(); auto src2 = src->AsLargeScenery(); dst2->SetEntryIndex(src2->GetEntryIndex()); dst2->SetSequenceIndex(src2->GetSequenceIndex()); dst2->SetPrimaryColour(src2->GetPrimaryColour()); dst2->SetSecondaryColour(src2->GetSecondaryColour()); dst2->SetBannerIndex(src2->GetBannerIndex()); break; } case TILE_ELEMENT_TYPE_BANNER: { auto dst2 = dst->AsBanner(); auto src2 = src->AsBanner(); dst2->SetIndex(src2->GetIndex()); dst2->SetPosition(src2->GetPosition()); dst2->SetAllowedEdges(src2->GetAllowedEdges()); break; } default: assert(false); } } }; std::unique_ptr ParkImporter::CreateS6(IObjectRepository& objectRepository) { return std::make_unique(objectRepository); } void load_from_sv6(const char* path) { auto context = OpenRCT2::GetContext(); auto s6Importer = std::make_unique(context->GetObjectRepository()); try { auto& objectMgr = context->GetObjectManager(); auto result = s6Importer->LoadSavedGame(path); objectMgr.LoadObjects(result.RequiredObjects.data(), result.RequiredObjects.size()); s6Importer->Import(); game_fix_save_vars(); sprite_position_tween_reset(); gScreenAge = 0; gLastAutoSaveUpdate = AUTOSAVE_PAUSE; } catch (const ObjectLoadException&) { gErrorType = ERROR_TYPE_FILE_LOAD; gErrorStringId = STR_FILE_CONTAINS_INVALID_DATA; } catch (const IOException&) { gErrorType = ERROR_TYPE_FILE_LOAD; gErrorStringId = STR_GAME_SAVE_FAILED; } catch (const std::exception&) { gErrorType = ERROR_TYPE_FILE_LOAD; gErrorStringId = STR_FILE_CONTAINS_INVALID_DATA; } } /** * * rct2: 0x00676053 * scenario (ebx) */ void load_from_sc6(const char* path) { auto context = OpenRCT2::GetContext(); auto& objManager = context->GetObjectManager(); auto s6Importer = std::make_unique(context->GetObjectRepository()); try { auto result = s6Importer->LoadScenario(path); objManager.LoadObjects(result.RequiredObjects.data(), result.RequiredObjects.size()); s6Importer->Import(); game_fix_save_vars(); sprite_position_tween_reset(); return; } catch (const ObjectLoadException&) { gErrorType = ERROR_TYPE_FILE_LOAD; gErrorStringId = STR_GAME_SAVE_FAILED; } catch (const IOException&) { gErrorType = ERROR_TYPE_FILE_LOAD; gErrorStringId = STR_GAME_SAVE_FAILED; } catch (const std::exception&) { gErrorType = ERROR_TYPE_FILE_LOAD; gErrorStringId = STR_FILE_CONTAINS_INVALID_DATA; } gScreenAge = 0; gLastAutoSaveUpdate = AUTOSAVE_PAUSE; }