/***************************************************************************** * 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 "../interface/Theme.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static constexpr const StringId WINDOW_TITLE = STR_SELECT_SCENARIO; static constexpr const int32_t WW = 734; static constexpr const int32_t WH = 384; static constexpr const int32_t SidebarWidth = 180; #define INITIAL_NUM_UNLOCKED_SCENARIOS 5 constexpr const uint8_t NumTabs = 8; // clang-format off enum class ListItemType : uint8_t { Heading, Scenario, }; struct ScenarioListItem { ListItemType type; union { struct { StringId string_id; } heading; struct { const scenario_index_entry * scenario; bool is_locked; } scenario; }; }; static std::vector _listItems; enum { WIDX_BACKGROUND, WIDX_TITLEBAR, WIDX_CLOSE, WIDX_TABCONTENT, WIDX_TAB1, WIDX_TAB2, WIDX_TAB3, WIDX_TAB4, WIDX_TAB5, WIDX_TAB6, WIDX_TAB7, WIDX_TAB8, WIDX_SCENARIOLIST }; static rct_widget window_scenarioselect_widgets[] = { WINDOW_SHIM(WINDOW_TITLE, WW, WH), MakeWidget ({ 0, 50}, { WW, 284}, WindowWidgetType::ImgBtn, WindowColour::Secondary), // tab content panel MakeRemapWidget({ 3, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 1 MakeRemapWidget({ 94, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 2 MakeRemapWidget({185, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 3 MakeRemapWidget({276, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 4 MakeRemapWidget({367, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 5 MakeRemapWidget({458, 17}, {136, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 6 MakeRemapWidget({594, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 7 MakeRemapWidget({685, 17}, { 91, 34}, WindowWidgetType::Tab, WindowColour::Secondary, SPR_TAB_LARGE), // tab 8 MakeWidget ({ 3, 54}, { WW - SidebarWidth, 276 }, WindowWidgetType::Scroll, WindowColour::Secondary, SCROLL_VERTICAL), // level list WIDGETS_END, }; static constexpr const StringId ScenarioOriginStringIds[] = { STR_SCENARIO_CATEGORY_RCT1, STR_SCENARIO_CATEGORY_RCT1_AA, STR_SCENARIO_CATEGORY_RCT1_LL, STR_SCENARIO_CATEGORY_RCT2, STR_SCENARIO_CATEGORY_RCT2_WW, STR_SCENARIO_CATEGORY_RCT2_TT, STR_SCENARIO_CATEGORY_REAL_PARKS, STR_SCENARIO_CATEGORY_OTHER_PARKS, }; static void WindowScenarioselectInitTabs(rct_window *w); static void WindowScenarioselectClose(rct_window *w); static void WindowScenarioselectMouseup(rct_window *w, WidgetIndex widgetIndex); static void WindowScenarioselectMousedown(rct_window *w, WidgetIndex widgetIndex, rct_widget* widget); static void WindowScenarioselectScrollgetsize(rct_window *w, int32_t scrollIndex, int32_t *width, int32_t *height); static void WindowScenarioselectScrollmousedown(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords); static void WindowScenarioselectScrollmouseover(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords); static void WindowScenarioselectInvalidate(rct_window *w); static void WindowScenarioselectPaint(rct_window *w, rct_drawpixelinfo *dpi); static void WindowScenarioselectScrollpaint(rct_window *w, rct_drawpixelinfo *dpi, int32_t scrollIndex); static bool ScenarioSelectUseSmallFont() { return ThemeGetFlags() & UITHEME_FLAG_USE_ALTERNATIVE_SCENARIO_SELECT_FONT; } static WindowEventList window_scenarioselect_events([](auto& events) { events.close = &WindowScenarioselectClose; events.mouse_up = &WindowScenarioselectMouseup; events.mouse_down = &WindowScenarioselectMousedown; events.get_scroll_size = &WindowScenarioselectScrollgetsize; events.scroll_mousedown = &WindowScenarioselectScrollmousedown; events.scroll_mouseover = &WindowScenarioselectScrollmouseover; events.invalidate = &WindowScenarioselectInvalidate; events.paint = &WindowScenarioselectPaint; events.scroll_paint = &WindowScenarioselectScrollpaint; }); // clang-format on static void DrawCategoryHeading( rct_window* w, rct_drawpixelinfo* dpi, int32_t left, int32_t right, int32_t y, StringId stringId); static void InitialiseListItems(rct_window* w); static bool IsScenarioVisible(rct_window* w, const scenario_index_entry* scenario); static bool IsLockingEnabled(rct_window* w); static std::function _callback; static bool _showLockedInformation = false; static bool _titleEditor = false; static bool _disableLocking{}; static int32_t ScenarioSelectGetWindowWidth() { // Shrink the window if we're showing scenarios by difficulty level. if (gConfigGeneral.scenario_select_mode == SCENARIO_SELECT_MODE_DIFFICULTY && !_titleEditor) return 610; return WW; } rct_window* WindowScenarioselectOpen(scenarioselect_callback callback, bool titleEditor) { if (_titleEditor != titleEditor) { _titleEditor = titleEditor; window_close_by_class(WindowClass::ScenarioSelect); } auto window = window_bring_to_front_by_class(WindowClass::ScenarioSelect); if (window != nullptr) return window; return WindowScenarioselectOpen( [callback](std::string_view scenario) { callback(std::string(scenario).c_str()); }, titleEditor, titleEditor); } /** * * rct2: 0x006781B5 */ rct_window* WindowScenarioselectOpen(std::function callback, bool titleEditor, bool disableLocking) { rct_window* window; int32_t windowWidth; int32_t windowHeight = WH; _callback = callback; _disableLocking = disableLocking; // Load scenario list scenario_repository_scan(); windowWidth = ScenarioSelectGetWindowWidth(); window = WindowCreateCentred( windowWidth, windowHeight, &window_scenarioselect_events, WindowClass::ScenarioSelect, WF_10 | (titleEditor ? WF_STICK_TO_FRONT : 0)); window->widgets = window_scenarioselect_widgets; WindowScenarioselectInitTabs(window); InitialiseListItems(window); WindowInitScrollWidgets(*window); window->highlighted_scenario = nullptr; return window; } /** * * rct2: 0x00677C8A */ static void WindowScenarioselectInitTabs(rct_window* w) { int32_t showPages = 0; size_t numScenarios = scenario_repository_get_count(); for (size_t i = 0; i < numScenarios; i++) { const scenario_index_entry* scenario = scenario_repository_get_by_index(i); if (gConfigGeneral.scenario_select_mode == SCENARIO_SELECT_MODE_ORIGIN || _titleEditor) { if (_titleEditor && scenario->source_game == ScenarioSource::Other) continue; showPages |= 1 << static_cast(scenario->source_game); } else { int32_t category = scenario->category; if (category > SCENARIO_CATEGORY_OTHER) { category = SCENARIO_CATEGORY_OTHER; } showPages |= 1 << category; } } if (showPages & (1 << gConfigInterface.scenarioselect_last_tab)) { w->selected_tab = gConfigInterface.scenarioselect_last_tab; } else { int32_t firstPage = bitscanforward(showPages); if (firstPage != -1) { w->selected_tab = firstPage; } } int32_t x = 3; for (int32_t i = 0; i < NumTabs; i++) { auto& widget = w->widgets[i + WIDX_TAB1]; if (!(showPages & (1 << i))) { widget.type = WindowWidgetType::Empty; continue; } widget.type = WindowWidgetType::Tab; widget.left = x; widget.right = x + 90; x += 91; } } static void WindowScenarioselectClose(rct_window* w) { _listItems.clear(); _listItems.shrink_to_fit(); } static void WindowScenarioselectMouseup(rct_window* w, WidgetIndex widgetIndex) { if (widgetIndex == WIDX_CLOSE) { window_close(*w); } } static void WindowScenarioselectMousedown(rct_window* w, WidgetIndex widgetIndex, rct_widget* widget) { if (widgetIndex >= WIDX_TAB1 && widgetIndex <= WIDX_TAB8) { w->selected_tab = widgetIndex - 4; w->highlighted_scenario = nullptr; gConfigInterface.scenarioselect_last_tab = w->selected_tab; config_save_default(); InitialiseListItems(w); w->Invalidate(); window_event_resize_call(w); window_event_invalidate_call(w); WindowInitScrollWidgets(*w); w->Invalidate(); } } static int32_t GetScenarioListItemSize() { if (!LocalisationService_UseTrueTypeFont()) return 24; // Scenario title int32_t lineHeight = font_get_line_height(FontSpriteBase::MEDIUM); // 'Completed by' line lineHeight += font_get_line_height(FontSpriteBase::SMALL); return lineHeight; } static void WindowScenarioselectScrollgetsize(rct_window* w, int32_t scrollIndex, int32_t* width, int32_t* height) { const int32_t scenarioItemHeight = GetScenarioListItemSize(); int32_t y = 0; for (const auto& listItem : _listItems) { switch (listItem.type) { case ListItemType::Heading: y += 18; break; case ListItemType::Scenario: y += scenarioItemHeight; break; } } *height = y; } /** * * rct2: 0x6780FE */ static void WindowScenarioselectScrollmousedown(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords) { const int32_t scenarioItemHeight = GetScenarioListItemSize(); auto mutableScreenCoords = screenCoords; for (const auto& listItem : _listItems) { switch (listItem.type) { case ListItemType::Heading: mutableScreenCoords.y -= 18; break; case ListItemType::Scenario: mutableScreenCoords.y -= scenarioItemHeight; if (mutableScreenCoords.y < 0 && !listItem.scenario.is_locked) { OpenRCT2::Audio::Play(OpenRCT2::Audio::SoundId::Click1, 0, w->windowPos.x + (w->width / 2)); gFirstTimeSaving = true; _callback(listItem.scenario.scenario->path); if (_titleEditor) { window_close(*w); } } break; } if (mutableScreenCoords.y < 0) { break; } } } /** * * rct2: 0x678162 */ static void WindowScenarioselectScrollmouseover(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords) { const int32_t scenarioItemHeight = GetScenarioListItemSize(); bool originalShowLockedInformation = _showLockedInformation; _showLockedInformation = false; const scenario_index_entry* selected = nullptr; auto mutableScreenCoords = screenCoords; for (const auto& listItem : _listItems) { switch (listItem.type) { case ListItemType::Heading: mutableScreenCoords.y -= 18; break; case ListItemType::Scenario: mutableScreenCoords.y -= scenarioItemHeight; if (mutableScreenCoords.y < 0) { if (listItem.scenario.is_locked) { _showLockedInformation = true; } else { selected = listItem.scenario.scenario; } } break; } if (mutableScreenCoords.y < 0) { break; } } if (w->highlighted_scenario != selected) { w->highlighted_scenario = selected; w->Invalidate(); } else if (_showLockedInformation != originalShowLockedInformation) { w->Invalidate(); } } static void WindowScenarioselectInvalidate(rct_window* w) { w->pressed_widgets &= ~( (1ULL << WIDX_CLOSE) | (1ULL << WIDX_TAB1) | (1ULL << WIDX_TAB2) | (1ULL << WIDX_TAB3) | (1ULL << WIDX_TAB4) | (1ULL << WIDX_TAB5) | (1ULL << WIDX_TAB6) | (1ULL << WIDX_TAB7) | (1ULL << WIDX_TAB8)); w->pressed_widgets |= 1LL << (w->selected_tab + WIDX_TAB1); int32_t windowWidth = w->width; window_scenarioselect_widgets[WIDX_BACKGROUND].right = windowWidth - 1; window_scenarioselect_widgets[WIDX_TITLEBAR].right = windowWidth - 2; window_scenarioselect_widgets[WIDX_CLOSE].left = windowWidth - 13; window_scenarioselect_widgets[WIDX_CLOSE].right = windowWidth - 3; window_scenarioselect_widgets[WIDX_TABCONTENT].right = windowWidth - 1; window_scenarioselect_widgets[WIDX_SCENARIOLIST].right = windowWidth - 179; int32_t windowHeight = w->height; window_scenarioselect_widgets[WIDX_BACKGROUND].bottom = windowHeight - 1; window_scenarioselect_widgets[WIDX_TABCONTENT].bottom = windowHeight - 1; const int32_t bottomMargin = gConfigGeneral.debugging_tools ? 17 : 5; window_scenarioselect_widgets[WIDX_SCENARIOLIST].bottom = windowHeight - bottomMargin; } static void WindowScenarioselectPaint(rct_window* w, rct_drawpixelinfo* dpi) { int32_t format; const scenario_index_entry* scenario; WindowDrawWidgets(*w, dpi); format = ScenarioSelectUseSmallFont() ? STR_SMALL_WINDOW_COLOUR_2_STRINGID : STR_WINDOW_COLOUR_2_STRINGID; FontSpriteBase fontSpriteBase = ScenarioSelectUseSmallFont() ? FontSpriteBase::SMALL : FontSpriteBase::MEDIUM; // Text for each tab for (uint32_t i = 0; i < std::size(ScenarioOriginStringIds); i++) { rct_widget* widget = &window_scenarioselect_widgets[WIDX_TAB1 + i]; if (widget->type == WindowWidgetType::Empty) continue; auto ft = Formatter(); if (gConfigGeneral.scenario_select_mode == SCENARIO_SELECT_MODE_ORIGIN || _titleEditor) { ft.Add(ScenarioOriginStringIds[i]); } else { // old-style ft.Add(ScenarioCategoryStringIds[i]); } ScreenCoordsXY stringCoords(widget->midX() + w->windowPos.x, widget->midY() + w->windowPos.y - 3); DrawTextWrapped(dpi, stringCoords, 87, format, ft, { COLOUR_AQUAMARINE, fontSpriteBase, TextAlignment::CENTRE }); } // Return if no scenario highlighted scenario = w->highlighted_scenario; if (scenario == nullptr) { if (_showLockedInformation) { // Show locked information auto screenPos = w->windowPos + ScreenCoordsXY{ window_scenarioselect_widgets[WIDX_SCENARIOLIST].right + 4, window_scenarioselect_widgets[WIDX_TABCONTENT].top + 5 }; DrawTextEllipsised( dpi, screenPos + ScreenCoordsXY{ 85, 0 }, 170, STR_SCENARIO_LOCKED, {}, { TextAlignment::CENTRE }); DrawTextWrapped(dpi, screenPos + ScreenCoordsXY{ 0, 15 }, 170, STR_SCENARIO_LOCKED_DESC); } return; } // Scenario path if (gConfigGeneral.debugging_tools) { utf8 path[MAX_PATH]; shorten_path(path, sizeof(path), scenario->path, w->width - 6, FontSpriteBase::MEDIUM); const utf8* pathPtr = path; auto ft = Formatter(); ft.Add(pathPtr); DrawTextBasic(dpi, w->windowPos + ScreenCoordsXY{ 3, w->height - 3 - 11 }, STR_STRING, ft, { w->colours[1] }); } // Scenario name auto screenPos = w->windowPos + ScreenCoordsXY{ window_scenarioselect_widgets[WIDX_SCENARIOLIST].right + 4, window_scenarioselect_widgets[WIDX_TABCONTENT].top + 5 }; auto ft = Formatter(); ft.Add(STR_STRING); ft.Add(scenario->name); DrawTextEllipsised( dpi, screenPos + ScreenCoordsXY{ 85, 0 }, 170, STR_WINDOW_COLOUR_2_STRINGID, ft, { TextAlignment::CENTRE }); screenPos.y += 15; // Scenario details ft = Formatter(); ft.Add(STR_STRING); ft.Add(scenario->details); screenPos.y += DrawTextWrapped(dpi, screenPos, 170, STR_BLACK_STRING, ft) + 5; // Scenario objective ft = Formatter(); ft.Add(ObjectiveNames[scenario->objective_type]); if (scenario->objective_type == OBJECTIVE_BUILD_THE_BEST) { StringId rideTypeString = STR_NONE; auto rideTypeId = scenario->objective_arg_3; if (rideTypeId != RIDE_TYPE_NULL && rideTypeId < RIDE_TYPE_COUNT) { rideTypeString = GetRideTypeDescriptor(rideTypeId).Naming.Name; } ft.Add(rideTypeString); } else { ft.Add(scenario->objective_arg_3); ft.Add(date_get_total_months(MONTH_OCTOBER, scenario->objective_arg_1)); if (scenario->objective_type == OBJECTIVE_FINISH_5_ROLLERCOASTERS) ft.Add(scenario->objective_arg_2); else ft.Add(scenario->objective_arg_2); } screenPos.y += DrawTextWrapped(dpi, screenPos, 170, STR_OBJECTIVE, ft) + 5; // Scenario score if (scenario->highscore != nullptr) { // TODO: Should probably be translatable const utf8* completedByName = "???"; if (!str_is_null_or_empty(scenario->highscore->name)) { completedByName = scenario->highscore->name; } ft = Formatter(); ft.Add(STR_STRING); ft.Add(completedByName); ft.Add(scenario->highscore->company_value); screenPos.y += DrawTextWrapped(dpi, screenPos, 170, STR_COMPLETED_BY_WITH_COMPANY_VALUE, ft); } } static void WindowScenarioselectScrollpaint(rct_window* w, rct_drawpixelinfo* dpi, int32_t scrollIndex) { uint8_t paletteIndex = ColourMapA[w->colours[1]].mid_light; gfx_clear(dpi, paletteIndex); StringId highlighted_format = ScenarioSelectUseSmallFont() ? STR_WHITE_STRING : STR_WINDOW_COLOUR_2_STRINGID; StringId unhighlighted_format = ScenarioSelectUseSmallFont() ? STR_WHITE_STRING : STR_BLACK_STRING; const auto& listWidget = w->widgets[WIDX_SCENARIOLIST]; int32_t listWidth = listWidget.width() - 12; const int32_t scenarioItemHeight = GetScenarioListItemSize(); // Scenario title int32_t scenarioTitleHeight = font_get_line_height(FontSpriteBase::MEDIUM); int32_t y = 0; for (const auto& listItem : _listItems) { if (y > dpi->y + dpi->height) { continue; } switch (listItem.type) { case ListItemType::Heading: { const int32_t horizontalRuleMargin = 4; DrawCategoryHeading( w, dpi, horizontalRuleMargin, listWidth - horizontalRuleMargin, y + 2, listItem.heading.string_id); y += 18; break; } case ListItemType::Scenario: { // Draw hover highlight const scenario_index_entry* scenario = listItem.scenario.scenario; bool isHighlighted = w->highlighted_scenario == scenario; if (isHighlighted) { gfx_filter_rect(dpi, { 0, y, w->width, y + scenarioItemHeight - 1 }, FilterPaletteID::PaletteDarken1); } bool isCompleted = scenario->highscore != nullptr; bool isDisabled = listItem.scenario.is_locked; // Draw scenario name char buffer[64]; safe_strcpy(buffer, scenario->name, sizeof(buffer)); StringId format = isDisabled ? static_cast(STR_STRINGID) : (isHighlighted ? highlighted_format : unhighlighted_format); auto ft = Formatter(); ft.Add(STR_STRING); ft.Add(buffer); colour_t colour = isDisabled ? w->colours[1] | COLOUR_FLAG_INSET : COLOUR_BLACK; FontSpriteBase fontSpriteBase = isDisabled ? FontSpriteBase::MEDIUM_DARK : FontSpriteBase::MEDIUM; const auto scrollCentre = window_scenarioselect_widgets[WIDX_SCENARIOLIST].width() / 2; DrawTextBasic(dpi, { scrollCentre, y + 1 }, format, ft, { colour, fontSpriteBase, TextAlignment::CENTRE }); // Check if scenario is completed if (isCompleted) { // Draw completion tick gfx_draw_sprite( dpi, ImageId(SPR_MENU_CHECKMARK), { window_scenarioselect_widgets[WIDX_SCENARIOLIST].width() - 45, y + 1 }); // Draw completion score const utf8* completedByName = "???"; if (!str_is_null_or_empty(scenario->highscore->name)) { completedByName = scenario->highscore->name; } safe_strcpy(buffer, completedByName, 64); ft = Formatter(); ft.Add(STR_COMPLETED_BY); ft.Add(STR_STRING); ft.Add(buffer); DrawTextBasic( dpi, { scrollCentre, y + scenarioTitleHeight + 1 }, format, ft, { FontSpriteBase::SMALL, TextAlignment::CENTRE }); } y += scenarioItemHeight; break; } } } } static void DrawCategoryHeading( rct_window* w, rct_drawpixelinfo* dpi, int32_t left, int32_t right, int32_t y, StringId stringId) { colour_t baseColour = w->colours[1]; colour_t lightColour = ColourMapA[baseColour].lighter; colour_t darkColour = ColourMapA[baseColour].mid_dark; // Draw string int32_t centreX = (left + right) / 2; DrawTextBasic(dpi, { centreX, y }, stringId, {}, { baseColour, TextAlignment::CENTRE }); // Get string dimensions utf8* buffer = gCommonStringFormatBuffer; format_string(buffer, 256, stringId, nullptr); int32_t categoryStringHalfWidth = (gfx_get_string_width(buffer, FontSpriteBase::MEDIUM) / 2) + 4; int32_t strLeft = centreX - categoryStringHalfWidth; int32_t strRight = centreX + categoryStringHalfWidth; // Draw light horizontal rule int32_t lineY = y + 4; auto lightLineLeftTop1 = ScreenCoordsXY{ left, lineY }; auto lightLineRightBottom1 = ScreenCoordsXY{ strLeft, lineY }; gfx_draw_line(dpi, { lightLineLeftTop1, lightLineRightBottom1 }, lightColour); auto lightLineLeftTop2 = ScreenCoordsXY{ strRight, lineY }; auto lightLineRightBottom2 = ScreenCoordsXY{ right, lineY }; gfx_draw_line(dpi, { lightLineLeftTop2, lightLineRightBottom2 }, lightColour); // Draw dark horizontal rule lineY++; auto darkLineLeftTop1 = ScreenCoordsXY{ left, lineY }; auto darkLineRightBottom1 = ScreenCoordsXY{ strLeft, lineY }; gfx_draw_line(dpi, { darkLineLeftTop1, darkLineRightBottom1 }, darkColour); auto darkLineLeftTop2 = ScreenCoordsXY{ strRight, lineY }; auto darkLineRightBottom2 = ScreenCoordsXY{ right, lineY }; gfx_draw_line(dpi, { darkLineLeftTop2, darkLineRightBottom2 }, darkColour); } static void InitialiseListItems(rct_window* w) { size_t numScenarios = scenario_repository_get_count(); _listItems.clear(); // Mega park unlock const uint32_t rct1RequiredCompletedScenarios = (1 << SC_MEGA_PARK) - 1; uint32_t rct1CompletedScenarios = 0; size_t megaParkListItemIndex = SIZE_MAX; int32_t numUnlocks = INITIAL_NUM_UNLOCKED_SCENARIOS; uint8_t currentHeading = UINT8_MAX; for (size_t i = 0; i < numScenarios; i++) { const scenario_index_entry* scenario = scenario_repository_get_by_index(i); if (!IsScenarioVisible(w, scenario)) continue; if (_titleEditor && scenario->source_game == ScenarioSource::Other) continue; // Category heading StringId headingStringId = STR_NONE; if (gConfigGeneral.scenario_select_mode == SCENARIO_SELECT_MODE_ORIGIN || _titleEditor) { if (w->selected_tab != static_cast(ScenarioSource::Real) && currentHeading != scenario->category) { currentHeading = scenario->category; headingStringId = ScenarioCategoryStringIds[currentHeading]; } } else { if (w->selected_tab <= SCENARIO_CATEGORY_EXPERT) { if (currentHeading != static_cast(scenario->source_game)) { currentHeading = static_cast(scenario->source_game); headingStringId = ScenarioOriginStringIds[currentHeading]; } } else if (w->selected_tab == SCENARIO_CATEGORY_OTHER) { int32_t category = scenario->category; if (category <= SCENARIO_CATEGORY_REAL) { category = SCENARIO_CATEGORY_OTHER; } if (currentHeading != category) { currentHeading = category; headingStringId = ScenarioCategoryStringIds[category]; } } } if (headingStringId != STR_NONE) { ScenarioListItem headerItem; headerItem.type = ListItemType::Heading; headerItem.heading.string_id = headingStringId; _listItems.push_back(std::move(headerItem)); } // Scenario ScenarioListItem scenarioItem; scenarioItem.type = ListItemType::Scenario; scenarioItem.scenario.scenario = scenario; if (IsLockingEnabled(w)) { scenarioItem.scenario.is_locked = numUnlocks <= 0; if (scenario->highscore == nullptr) { numUnlocks--; } else { // Mark RCT1 scenario as completed if (scenario->sc_id < SC_MEGA_PARK) { rct1CompletedScenarios |= 1 << scenario->sc_id; } } // If scenario is Mega Park, keep a reference to it if (scenario->sc_id == SC_MEGA_PARK) { megaParkListItemIndex = _listItems.size() - 1; } } else { scenarioItem.scenario.is_locked = false; } _listItems.push_back(std::move(scenarioItem)); } // Mega park handling if (megaParkListItemIndex != SIZE_MAX) { bool megaParkLocked = (rct1CompletedScenarios & rct1RequiredCompletedScenarios) != rct1RequiredCompletedScenarios; _listItems[megaParkListItemIndex].scenario.is_locked = megaParkLocked; if (megaParkLocked && gConfigGeneral.scenario_hide_mega_park) { // Remove mega park _listItems.pop_back(); // Remove empty headings for (auto it = _listItems.begin(); it != _listItems.end();) { const auto& listItem = *it; if (listItem.type == ListItemType::Heading) { auto nextIt = std::next(it); if (nextIt == _listItems.end() || nextIt->type == ListItemType::Heading) { it = _listItems.erase(it); continue; } } ++it; } } } } static bool IsScenarioVisible(rct_window* w, const scenario_index_entry* scenario) { if (gConfigGeneral.scenario_select_mode == SCENARIO_SELECT_MODE_ORIGIN || _titleEditor) { if (static_cast(scenario->source_game) != w->selected_tab) { return false; } } else { int32_t category = scenario->category; if (category > SCENARIO_CATEGORY_OTHER) { category = SCENARIO_CATEGORY_OTHER; } if (category != w->selected_tab) { return false; } } return true; } static bool IsLockingEnabled(rct_window* w) { if (gConfigGeneral.scenario_select_mode != SCENARIO_SELECT_MODE_ORIGIN) return false; if (!gConfigGeneral.scenario_unlocking_enabled) return false; if (w->selected_tab >= 6) return false; if (_titleEditor) return false; return true; }