/***************************************************************************** * Copyright (c) 2014-2019 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static constexpr const rct_string_id WINDOW_TITLE = STR_NONE; constexpr size_t AVAILABILITY_STRING_SIZE = 256; static constexpr const int32_t WH = 382; static constexpr const int32_t WW = 601; static uint8_t _windowNewRideCurrentTab; static RideSelection _windowNewRideHighlightedItem[6]; static RideSelection _windowNewRideListItems[384]; #pragma region Ride type view order // clang-format off /** * The order of ride types shown in the new ride window so that the order stays consistent across games and rides of the same * type are kept together. */ static constexpr const char RideTypeViewOrder[] = { // Transport rides RIDE_TYPE_MINIATURE_RAILWAY, RIDE_TYPE_MONORAIL, RIDE_TYPE_SUSPENDED_MONORAIL, RIDE_TYPE_CHAIRLIFT, RIDE_TYPE_LIFT, // Roller Coasters RIDE_TYPE_SIDE_FRICTION_ROLLER_COASTER, RIDE_TYPE_VIRGINIA_REEL, RIDE_TYPE_REVERSER_ROLLER_COASTER, RIDE_TYPE_WOODEN_ROLLER_COASTER, RIDE_TYPE_WOODEN_WILD_MOUSE, RIDE_TYPE_STEEL_WILD_MOUSE, RIDE_TYPE_INVERTED_HAIRPIN_COASTER, RIDE_TYPE_JUNIOR_ROLLER_COASTER, RIDE_TYPE_MINI_ROLLER_COASTER, RIDE_TYPE_SPIRAL_ROLLER_COASTER, RIDE_TYPE_MINE_TRAIN_COASTER, RIDE_TYPE_LOOPING_ROLLER_COASTER, RIDE_TYPE_STAND_UP_ROLLER_COASTER, RIDE_TYPE_CORKSCREW_ROLLER_COASTER, RIDE_TYPE_LIM_LAUNCHED_ROLLER_COASTER, RIDE_TYPE_TWISTER_ROLLER_COASTER, RIDE_TYPE_GIGA_COASTER, RIDE_TYPE_SUSPENDED_SWINGING_COASTER, RIDE_TYPE_COMPACT_INVERTED_COASTER, RIDE_TYPE_INVERTED_ROLLER_COASTER, RIDE_TYPE_INVERTED_IMPULSE_COASTER, RIDE_TYPE_MINI_SUSPENDED_COASTER, RIDE_TYPE_STEEPLECHASE, RIDE_TYPE_BOBSLEIGH_COASTER, RIDE_TYPE_MINE_RIDE, RIDE_TYPE_HEARTLINE_TWISTER_COASTER, RIDE_TYPE_LAY_DOWN_ROLLER_COASTER, RIDE_TYPE_FLYING_ROLLER_COASTER, RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER, RIDE_TYPE_REVERSE_FREEFALL_COASTER, RIDE_TYPE_VERTICAL_DROP_ROLLER_COASTER, RIDE_TYPE_AIR_POWERED_VERTICAL_COASTER, // Gentle rides RIDE_TYPE_MONORAIL_CYCLES, RIDE_TYPE_CROOKED_HOUSE, RIDE_TYPE_HAUNTED_HOUSE, RIDE_TYPE_FERRIS_WHEEL, RIDE_TYPE_MAZE, RIDE_TYPE_MERRY_GO_ROUND, RIDE_TYPE_MINI_GOLF, RIDE_TYPE_OBSERVATION_TOWER, RIDE_TYPE_CAR_RIDE, RIDE_TYPE_MINI_HELICOPTERS, RIDE_TYPE_SPIRAL_SLIDE, RIDE_TYPE_DODGEMS, RIDE_TYPE_SPACE_RINGS, RIDE_TYPE_CIRCUS, RIDE_TYPE_GHOST_TRAIN, RIDE_TYPE_FLYING_SAUCERS, // Thrill rides RIDE_TYPE_TWIST, RIDE_TYPE_MAGIC_CARPET, RIDE_TYPE_LAUNCHED_FREEFALL, RIDE_TYPE_SWINGING_SHIP, RIDE_TYPE_GO_KARTS, RIDE_TYPE_SWINGING_INVERTER_SHIP, RIDE_TYPE_MOTION_SIMULATOR, RIDE_TYPE_3D_CINEMA, RIDE_TYPE_TOP_SPIN, RIDE_TYPE_ROTO_DROP, RIDE_TYPE_ENTERPRISE, // Water rides RIDE_TYPE_DINGHY_SLIDE, RIDE_TYPE_LOG_FLUME, RIDE_TYPE_RIVER_RAPIDS, RIDE_TYPE_SPLASH_BOATS, RIDE_TYPE_SUBMARINE_RIDE, RIDE_TYPE_BOAT_HIRE, RIDE_TYPE_RIVER_RAFTS, RIDE_TYPE_WATER_COASTER, // Shops / stalls RIDE_TYPE_FOOD_STALL, RIDE_TYPE_1D, RIDE_TYPE_DRINK_STALL, RIDE_TYPE_1F, RIDE_TYPE_SHOP, RIDE_TYPE_22, RIDE_TYPE_INFORMATION_KIOSK, RIDE_TYPE_FIRST_AID, RIDE_TYPE_CASH_MACHINE, RIDE_TYPE_TOILETS }; #pragma endregion enum { WINDOW_NEW_RIDE_PAGE_TRANSPORT, WINDOW_NEW_RIDE_PAGE_GENTLE, WINDOW_NEW_RIDE_PAGE_ROLLER_COASTER, WINDOW_NEW_RIDE_PAGE_THRILL, WINDOW_NEW_RIDE_PAGE_WATER, WINDOW_NEW_RIDE_PAGE_SHOP, WINDOW_NEW_RIDE_PAGE_RESEARCH, WINDOW_NEW_RIDE_PAGE_COUNT }; #pragma region Widgets enum { WIDX_BACKGROUND, WIDX_TITLE, WIDX_CLOSE, WIDX_PAGE_BACKGROUND, WIDX_TAB_1, WIDX_TAB_2, WIDX_TAB_3, WIDX_TAB_4, WIDX_TAB_5, WIDX_TAB_6, WIDX_TAB_7, WIDX_RIDE_LIST, WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP, WIDX_LAST_DEVELOPMENT_GROUP, WIDX_LAST_DEVELOPMENT_BUTTON, WIDX_RESEARCH_FUNDING_BUTTON }; static rct_widget window_new_ride_widgets[] = { WINDOW_SHIM(WINDOW_TITLE, WW, WH), { WWT_RESIZE, 1, 0, 600, 43, WH - 1, 0xFFFFFFFF, STR_NONE }, { WWT_TAB, 1, 3, 33, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_TRANSPORT_RIDES_TIP }, { WWT_TAB, 1, 34, 64, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_GENTLE_RIDES_TIP }, { WWT_TAB, 1, 65, 95, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_ROLLER_COASTERS_TIP }, { WWT_TAB, 1, 96, 126, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_THRILL_RIDES_TIP }, { WWT_TAB, 1, 127, 157, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_WATER_RIDES_TIP }, { WWT_TAB, 1, 158, 188, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOPS_STALLS_TIP }, { WWT_TAB, 1, 189, 219, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_RESEARCH_AND_DEVELOPMENT_TIP }, { WWT_SCROLL, 1, 3, 597, 46, 317, SCROLL_VERTICAL, STR_NONE }, { WWT_GROUPBOX, 2, 3, 292, 47, 116, STR_CURRENTLY_IN_DEVELOPMENT, STR_NONE }, { WWT_GROUPBOX, 2, 3, 292, 124, 188, STR_LAST_DEVELOPMENT, STR_NONE }, { WWT_FLATBTN, 2, 265, 288, 161, 184, 0xFFFFFFFF, STR_RESEARCH_SHOW_DETAILS_TIP }, { WWT_FLATBTN, 2, 265, 288, 68, 91, SPR_FINANCE, STR_FINANCES_RESEARCH_TIP }, { WIDGETS_END }, }; #pragma endregion #pragma region Events static void window_new_ride_mouseup(rct_window *w, rct_widgetindex widgetIndex); static void window_new_ride_mousedown(rct_window *w, rct_widgetindex widgetIndex, rct_widget *widget); static void window_new_ride_update(rct_window *w); static void window_new_ride_scrollgetsize(rct_window *w, int32_t scrollIndex, int32_t *width, int32_t *height); static void window_new_ride_scrollmousedown(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords); static void window_new_ride_scrollmouseover(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords); static void window_new_ride_invalidate(rct_window *w); static void window_new_ride_paint(rct_window *w, rct_drawpixelinfo *dpi); static void window_new_ride_scrollpaint(rct_window *w, rct_drawpixelinfo *dpi, int32_t scrollIndex); static void window_new_ride_list_vehicles_for(uint8_t rideType, const rct_ride_entry* rideEntry, char* buffer, size_t bufferLen); // 0x0098E354 static rct_window_event_list window_new_ride_events = { nullptr, window_new_ride_mouseup, nullptr, window_new_ride_mousedown, nullptr, nullptr, window_new_ride_update, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, window_new_ride_scrollgetsize, window_new_ride_scrollmousedown, nullptr, window_new_ride_scrollmouseover, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, window_new_ride_invalidate, window_new_ride_paint, window_new_ride_scrollpaint }; #pragma endregion static constexpr const rct_string_id window_new_ride_titles[WINDOW_NEW_RIDE_PAGE_COUNT] = { STR_NEW_TRANSPORT_RIDES, STR_NEW_GENTLE_RIDES, STR_NEW_ROLLER_COASTERS, STR_NEW_THRILL_RIDES, STR_NEW_WATER_RIDES, STR_NEW_SHOPS_STALLS, STR_RESEARCH_AND_DEVELOPMENT, }; static constexpr const int32_t window_new_ride_tab_animation_loops[] = { 20, 32, 10, 72, 24, 28, 16 }; static constexpr const int32_t window_new_ride_tab_animation_divisor[] = { 4, 8, 2, 4, 4, 4, 2 }; // clang-format on static void window_new_ride_set_page(rct_window* w, int32_t page); static void window_new_ride_refresh_widget_sizing(rct_window* w); static RideSelection window_new_ride_scroll_get_ride_list_item_at(rct_window* w, const ScreenCoordsXY& screenCoords); static void window_new_ride_paint_ride_information( rct_window* w, rct_drawpixelinfo* dpi, RideSelection item, const ScreenCoordsXY& screenPos, int32_t width); static void window_new_ride_select(rct_window* w); static RideSelection* window_new_ride_iterate_over_ride_group( uint8_t rideType, uint8_t rideGroupIndex, RideSelection* nextListItem); static RideSelection _lastTrackDesignCountRideType; static int32_t _lastTrackDesignCount; /** * * rct2: 0x006ACA58 */ void window_new_ride_init_vars() { // If we are in the track designer, default to the Roller Coaster tab if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER) { _windowNewRideCurrentTab = WINDOW_NEW_RIDE_PAGE_ROLLER_COASTER; } else { _windowNewRideCurrentTab = WINDOW_NEW_RIDE_PAGE_TRANSPORT; } for (int16_t i = 0; i < 6; i++) { /* Reset what is highlighted in each tab. Each 16bit number represents the item in its respective tab. */ _windowNewRideHighlightedItem[i] = { 255, 255 }; } } /** * rct2: 0x006B6F3E * * Note: When the user has selection by track type enabled, the categories are determined by the track type, not those in the * rct_ride_entry. */ static void window_new_ride_populate_list() { uint8_t currentCategory = _windowNewRideCurrentTab; RideSelection* nextListItem = _windowNewRideListItems; // For each ride type in the view order list for (int32_t i = 0; i < static_cast(std::size(RideTypeViewOrder)); i++) { uint8_t rideType = RideTypeViewOrder[i]; if (rideType == RIDE_TYPE_NULL) continue; if (RideTypeDescriptors[rideType].Category != currentCategory) continue; if (ride_type_is_invented(rideType) || gCheatsIgnoreResearchStatus) { if (!RideTypeDescriptors[rideType].HasFlag(RIDE_TYPE_FLAG_HAS_RIDE_GROUPS)) { nextListItem = window_new_ride_iterate_over_ride_group(rideType, 0, nextListItem); } else { for (uint8_t j = 0; j < MAX_RIDE_GROUPS_PER_RIDE_TYPE; j++) { nextListItem = window_new_ride_iterate_over_ride_group(rideType, j, nextListItem); } } } } nextListItem->Type = RIDE_TYPE_NULL; nextListItem->EntryIndex = RIDE_ENTRY_INDEX_NULL; } static RideSelection* window_new_ride_iterate_over_ride_group( uint8_t rideType, uint8_t rideGroupIndex, RideSelection* nextListItem) { bool buttonForRideTypeCreated = false; bool allowDrawingOverLastButton = false; uint8_t highestVehiclePriority = 0; // For each ride entry for this ride type auto& objManager = OpenRCT2::GetContext()->GetObjectManager(); auto& rideEntries = objManager.GetAllRideEntries(rideType); for (auto rideEntryIndex : rideEntries) { // Skip if vehicle type is not invented yet if (!ride_entry_is_invented(rideEntryIndex) && !gCheatsIgnoreResearchStatus) continue; // Ride entries rct_ride_entry* rideEntry = get_ride_entry(rideEntryIndex); if (RideTypeDescriptors[rideType].HasFlag(RIDE_TYPE_FLAG_HAS_RIDE_GROUPS)) { const RideGroup* rideEntryRideGroup = RideGroupManager::GetRideGroup(rideType, rideEntry); const RideGroup* rideGroup = RideGroupManager::RideGroupFind(rideType, rideGroupIndex); if (!rideEntryRideGroup->Equals(rideGroup)) continue; } // Skip if the vehicle isn't the preferred vehicle for this generic track type if (!RideTypeDescriptors[rideType].HasFlag(RIDE_TYPE_FLAG_LIST_VEHICLES_SEPARATELY) && highestVehiclePriority > rideEntry->BuildMenuPriority) { continue; } highestVehiclePriority = rideEntry->BuildMenuPriority; // Determines how and where to draw a button for this ride type/vehicle. if (RideTypeDescriptors[rideType].HasFlag(RIDE_TYPE_FLAG_LIST_VEHICLES_SEPARATELY)) { // Separate, draw apart allowDrawingOverLastButton = false; nextListItem->Type = rideType; nextListItem->EntryIndex = rideEntryIndex; nextListItem++; } else if (!buttonForRideTypeCreated) { // Non-separate, draw-apart buttonForRideTypeCreated = true; allowDrawingOverLastButton = true; nextListItem->Type = rideType; nextListItem->EntryIndex = rideEntryIndex; nextListItem++; } else if (allowDrawingOverLastButton) { // Non-separate, draw over previous if (rideType == rideEntry->ride_type[0]) { nextListItem--; nextListItem->Type = rideType; nextListItem->EntryIndex = rideEntryIndex; nextListItem++; } } } return nextListItem; } /** * * rct2: 0x006B7220 */ static void window_new_ride_scroll_to_focused_ride(rct_window* w) { int32_t scrollWidth = 0; int32_t scrollHeight = 0; window_get_scroll_size(w, 0, &scrollWidth, &scrollHeight); // Find row index of the focused ride type rct_widget* listWidget = &window_new_ride_widgets[WIDX_RIDE_LIST]; assert(_windowNewRideCurrentTab < std::size(_windowNewRideHighlightedItem)); auto focusRideType = _windowNewRideHighlightedItem[_windowNewRideCurrentTab]; int32_t count = 0, row = 0; RideSelection* listItem = _windowNewRideListItems; while (listItem->Type != RIDE_TYPE_NULL || listItem->EntryIndex != RIDE_ENTRY_INDEX_NULL) { if (listItem->Type == focusRideType.Type) { row = count / 5; break; } count++; listItem++; }; // Update the Y scroll position int32_t listWidgetHeight = listWidget->bottom - listWidget->top - 1; scrollHeight = std::max(0, scrollHeight - listWidgetHeight); w->scrolls[0].v_top = std::min(row * 116, scrollHeight); widget_scroll_update_thumbs(w, WIDX_RIDE_LIST); } /** * * rct2: 0x006B3CFF */ rct_window* window_new_ride_open() { rct_window* w; w = window_bring_to_front_by_class(WC_CONSTRUCT_RIDE); if (w != nullptr) return w; // Not sure what these windows are window_close_by_class(WC_TRACK_DESIGN_LIST); window_close_by_class(WC_TRACK_DESIGN_PLACE); w = window_create_auto_pos(WW, WH, &window_new_ride_events, WC_CONSTRUCT_RIDE, WF_10); w->widgets = window_new_ride_widgets; w->enabled_widgets = (1 << WIDX_CLOSE) | (1 << WIDX_TAB_1) | (1 << WIDX_TAB_2) | (1 << WIDX_TAB_3) | (1 << WIDX_TAB_4) | (1 << WIDX_TAB_5) | (1 << WIDX_TAB_6) | (1 << WIDX_TAB_7) | (1 << WIDX_LAST_DEVELOPMENT_BUTTON) | (1 << WIDX_RESEARCH_FUNDING_BUTTON); window_new_ride_populate_list(); window_init_scroll_widgets(w); w->frame_no = 0; w->new_ride.SelectedRide = { RIDE_TYPE_NULL, RIDE_ENTRY_INDEX_NULL }; _lastTrackDesignCountRideType.Type = RIDE_TYPE_NULL; _lastTrackDesignCountRideType.EntryIndex = RIDE_ENTRY_INDEX_NULL; w->new_ride.HighlightedRide = _windowNewRideHighlightedItem[_windowNewRideCurrentTab]; if (w->new_ride.HighlightedRide.Type == RIDE_TYPE_NULL) w->new_ride.HighlightedRide = _windowNewRideListItems[0]; w->width = 1; window_new_ride_refresh_widget_sizing(w); if (_windowNewRideCurrentTab != WINDOW_NEW_RIDE_PAGE_RESEARCH) { window_new_ride_scroll_to_focused_ride(w); } return w; } rct_window* window_new_ride_open_research() { rct_window* w; w = window_new_ride_open(); window_new_ride_set_page(w, WINDOW_NEW_RIDE_PAGE_RESEARCH); return w; } /** * * rct2: 0x006B3EBA */ void window_new_ride_focus(RideSelection rideItem) { rct_window* w; rct_ride_entry* rideEntry; bool entryFound = false; // Find the first non-null ride type index. w = window_find_by_class(WC_CONSTRUCT_RIDE); if (w == nullptr) return; rideEntry = get_ride_entry(rideItem.EntryIndex); uint8_t rideTypeIndex = ride_entry_get_first_non_null_ride_type(rideEntry); window_new_ride_set_page(w, RideTypeDescriptors[rideTypeIndex].Category); for (RideSelection* listItem = _windowNewRideListItems; listItem->Type != RIDE_TYPE_NULL; listItem++) { if (listItem->Type == rideItem.Type && listItem->EntryIndex == rideItem.EntryIndex) { _windowNewRideHighlightedItem[0] = rideItem; w->new_ride.HighlightedRide = rideItem; window_new_ride_scroll_to_focused_ride(w); entryFound = true; break; } } // If this entry was not found it was most likely hidden due to it not being the preferential type. // In this case, select the first entry that belongs to the same ride group. if (!entryFound) { const RideGroup* rideGroup = RideGroupManager::GetRideGroup(rideTypeIndex, rideEntry); for (RideSelection* listItem = _windowNewRideListItems; listItem->Type != RIDE_TYPE_NULL; listItem++) { if (listItem->Type == rideItem.Type) { const RideGroup* irg = RideGroupManager::GetRideGroup(rideTypeIndex, rideEntry); if (!RideTypeDescriptors[rideTypeIndex].HasFlag(RIDE_TYPE_FLAG_HAS_RIDE_GROUPS) || rideGroup->Equals(irg)) { _windowNewRideHighlightedItem[0] = rideItem; w->new_ride.HighlightedRide = rideItem; window_new_ride_scroll_to_focused_ride(w); break; } } } } } static void window_new_ride_set_page(rct_window* w, int32_t page) { _windowNewRideCurrentTab = page; w->frame_no = 0; w->new_ride.HighlightedRide = { RIDE_TYPE_NULL, RIDE_ENTRY_INDEX_NULL }; w->new_ride.selected_ride_countdown = std::numeric_limits::max(); window_new_ride_populate_list(); if (page < WINDOW_NEW_RIDE_PAGE_RESEARCH) { w->new_ride.HighlightedRide = _windowNewRideHighlightedItem[page]; if (w->new_ride.HighlightedRide.Type == RIDE_TYPE_NULL) w->new_ride.HighlightedRide = _windowNewRideListItems[0]; } window_new_ride_refresh_widget_sizing(w); w->Invalidate(); if (page < WINDOW_NEW_RIDE_PAGE_RESEARCH) { window_new_ride_scroll_to_focused_ride(w); } } /** * * rct2: 0x006B3DF1 */ static void window_new_ride_refresh_widget_sizing(rct_window* w) { int32_t width, height; // Show or hide unrelated widgets if (_windowNewRideCurrentTab != WINDOW_NEW_RIDE_PAGE_RESEARCH) { window_new_ride_widgets[WIDX_RIDE_LIST].type = WWT_SCROLL; window_new_ride_widgets[WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP].type = WWT_EMPTY; window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_GROUP].type = WWT_EMPTY; window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WWT_EMPTY; window_new_ride_widgets[WIDX_RESEARCH_FUNDING_BUTTON].type = WWT_EMPTY; width = 601; height = WH; } else { window_new_ride_widgets[WIDX_RIDE_LIST].type = WWT_EMPTY; window_new_ride_widgets[WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP].type = WWT_GROUPBOX; window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_GROUP].type = WWT_GROUPBOX; window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WWT_FLATBTN; if (!(gParkFlags & PARK_FLAGS_NO_MONEY)) window_new_ride_widgets[WIDX_RESEARCH_FUNDING_BUTTON].type = WWT_FLATBTN; width = 300; height = 196; } // Handle new window size if (w->width != width || w->height != height) { w->Invalidate(); // Resize widgets to new window size window_new_ride_widgets[WIDX_BACKGROUND].right = width - 1; window_new_ride_widgets[WIDX_BACKGROUND].bottom = height - 1; window_new_ride_widgets[WIDX_PAGE_BACKGROUND].right = width - 1; window_new_ride_widgets[WIDX_PAGE_BACKGROUND].bottom = height - 1; window_new_ride_widgets[WIDX_TITLE].right = width - 2; window_new_ride_widgets[WIDX_CLOSE].left = width - 13; window_new_ride_widgets[WIDX_CLOSE].right = width - 3; w->width = width; w->height = height; w->Invalidate(); } window_init_scroll_widgets(w); } static void window_new_ride_set_pressed_tab(rct_window* w) { int32_t i; for (i = 0; i < WINDOW_NEW_RIDE_PAGE_COUNT; i++) w->pressed_widgets &= ~(1 << (WIDX_TAB_1 + i)); w->pressed_widgets |= 1LL << (WIDX_TAB_1 + _windowNewRideCurrentTab); } static constexpr const int32_t ThrillRidesTabAnimationSequence[] = { 5, 6, 5, 4, 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 0, 0, 0 }; static void window_new_ride_draw_tab_image(rct_drawpixelinfo* dpi, rct_window* w, int32_t page, int32_t spriteIndex) { rct_widgetindex widgetIndex = WIDX_TAB_1 + page; if (w->widgets[widgetIndex].type != WWT_EMPTY && !(w->disabled_widgets & (1LL << widgetIndex))) { int32_t frame = 0; if (_windowNewRideCurrentTab == page) frame = w->frame_no / window_new_ride_tab_animation_divisor[page]; spriteIndex += page == WINDOW_NEW_RIDE_PAGE_THRILL ? ThrillRidesTabAnimationSequence[frame] : frame; spriteIndex |= w->colours[1] << 19; gfx_draw_sprite( dpi, spriteIndex, w->windowPos.x + w->widgets[widgetIndex].left, w->windowPos.y + w->widgets[widgetIndex].top, 0); } } static void window_new_ride_draw_tab_images(rct_drawpixelinfo* dpi, rct_window* w) { window_new_ride_draw_tab_image(dpi, w, WINDOW_NEW_RIDE_PAGE_TRANSPORT, IMAGE_TYPE_REMAP | SPR_TAB_RIDES_TRANSPORT_0); window_new_ride_draw_tab_image(dpi, w, WINDOW_NEW_RIDE_PAGE_GENTLE, SPR_TAB_RIDES_GENTLE_0); window_new_ride_draw_tab_image( dpi, w, WINDOW_NEW_RIDE_PAGE_ROLLER_COASTER, IMAGE_TYPE_REMAP | SPR_TAB_RIDES_ROLLER_COASTERS_0); window_new_ride_draw_tab_image(dpi, w, WINDOW_NEW_RIDE_PAGE_THRILL, SPR_TAB_RIDES_THRILL_0); window_new_ride_draw_tab_image(dpi, w, WINDOW_NEW_RIDE_PAGE_WATER, SPR_TAB_RIDES_WATER_0); window_new_ride_draw_tab_image(dpi, w, WINDOW_NEW_RIDE_PAGE_SHOP, SPR_TAB_RIDES_SHOP_0); window_new_ride_draw_tab_image(dpi, w, WINDOW_NEW_RIDE_PAGE_RESEARCH, SPR_TAB_FINANCES_RESEARCH_0); } /** * * rct2: 0x006B6B38 */ static void window_new_ride_mouseup(rct_window* w, rct_widgetindex widgetIndex) { switch (widgetIndex) { case WIDX_CLOSE: window_close(w); break; case WIDX_LAST_DEVELOPMENT_BUTTON: news_item_open_subject(NEWS_ITEM_RESEARCH, gResearchLastItem->rawValue); break; case WIDX_RESEARCH_FUNDING_BUTTON: context_open_window_view(WV_FINANCES_RESEARCH); break; } } /** * * rct2: 0x006B6B4F */ static void window_new_ride_mousedown(rct_window* w, rct_widgetindex widgetIndex, rct_widget* widget) { if (widgetIndex >= WIDX_TAB_1 && widgetIndex <= WIDX_TAB_7) window_new_ride_set_page(w, widgetIndex - WIDX_TAB_1); } /** * * rct2: 0x006B6CE7 */ static void window_new_ride_update(rct_window* w) { w->frame_no++; if (w->frame_no >= window_new_ride_tab_animation_loops[_windowNewRideCurrentTab]) w->frame_no = 0; widget_invalidate(w, WIDX_TAB_1 + _windowNewRideCurrentTab); if (w->new_ride.SelectedRide.Type != RIDE_TYPE_NULL && w->new_ride.selected_ride_countdown-- == 0) window_new_ride_select(w); window_new_ride_populate_list(); // widget_invalidate(w, WIDX_RIDE_LIST); } /** * * rct2: 0x006B6BC9 */ static void window_new_ride_scrollgetsize(rct_window* w, int32_t scrollIndex, int32_t* width, int32_t* height) { RideSelection* listItem = _windowNewRideListItems; int32_t count = 0; while (listItem->Type != RIDE_TYPE_NULL || listItem->EntryIndex != RIDE_ENTRY_INDEX_NULL) { count++; listItem++; } *height = ((count + 4) / 5) * 116; } /** * * rct2: 0x006B6C89 */ static void window_new_ride_scrollmousedown(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords) { RideSelection item; item = window_new_ride_scroll_get_ride_list_item_at(w, screenCoords); if (item.Type == RIDE_TYPE_NULL && item.EntryIndex == RIDE_ENTRY_INDEX_NULL) return; _windowNewRideHighlightedItem[_windowNewRideCurrentTab] = item; w->new_ride.SelectedRide = item; audio_play_sound(SoundId::Click1, 0, w->windowPos.x + (w->width / 2)); w->new_ride.selected_ride_countdown = 8; w->Invalidate(); } /** * * rct2: 0x006B6C51 */ static void window_new_ride_scrollmouseover(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords) { RideSelection item; if (w->new_ride.SelectedRide.Type != RIDE_TYPE_NULL) return; item = window_new_ride_scroll_get_ride_list_item_at(w, screenCoords); if (w->new_ride.HighlightedRide == item) return; w->new_ride.HighlightedRide = item; _windowNewRideHighlightedItem[_windowNewRideCurrentTab] = item; w->Invalidate(); } /** * * rct2: 0x006B6819 */ static void window_new_ride_invalidate(rct_window* w) { window_new_ride_set_pressed_tab(w); window_new_ride_widgets[WIDX_TITLE].text = window_new_ride_titles[_windowNewRideCurrentTab]; window_new_ride_widgets[WIDX_TAB_7].type = WWT_TAB; if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER) window_new_ride_widgets[WIDX_TAB_7].type = WWT_EMPTY; if (_windowNewRideCurrentTab == WINDOW_NEW_RIDE_PAGE_RESEARCH) { window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WWT_EMPTY; if (gResearchLastItem.has_value()) { uint8_t type = gResearchLastItem->type; window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WWT_FLATBTN; window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].image = (type == RESEARCH_ENTRY_TYPE_RIDE) ? SPR_NEW_RIDE : SPR_NEW_SCENERY; } } } /** * * rct2: 0x006B689B */ static void window_new_ride_paint(rct_window* w, rct_drawpixelinfo* dpi) { window_draw_widgets(w, dpi); window_new_ride_draw_tab_images(dpi, w); if (_windowNewRideCurrentTab != WINDOW_NEW_RIDE_PAGE_RESEARCH) { RideSelection item; item = w->new_ride.HighlightedRide; if (item.Type != RIDE_TYPE_NULL || item.EntryIndex != RIDE_ENTRY_INDEX_NULL) window_new_ride_paint_ride_information( w, dpi, item, w->windowPos + ScreenCoordsXY{ 3, w->height - 64 }, w->width - 6); } else { window_research_development_page_paint(w, dpi, WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP); } } /** * * rct2: 0x006B6ABF */ static void window_new_ride_scrollpaint(rct_window* w, rct_drawpixelinfo* dpi, int32_t scrollIndex) { if (_windowNewRideCurrentTab == WINDOW_NEW_RIDE_PAGE_RESEARCH) return; gfx_clear(dpi, ColourMapA[w->colours[1]].mid_light); int32_t x = 1; int32_t y = 1; RideSelection* listItem = _windowNewRideListItems; while (listItem->Type != RIDE_TYPE_NULL || listItem->EntryIndex != RIDE_ENTRY_INDEX_NULL) { rct_ride_entry* rideEntry; // Draw flat button rectangle int32_t flags = 0; if (w->new_ride.SelectedRide == *listItem) flags |= INSET_RECT_FLAG_BORDER_INSET; if (w->new_ride.HighlightedRide == *listItem || flags != 0) gfx_fill_rect_inset(dpi, x, y, x + 115, y + 115, w->colours[1], INSET_RECT_FLAG_FILL_MID_LIGHT | flags); // Draw ride image with feathered border rideEntry = get_ride_entry(listItem->EntryIndex); int32_t imageId = rideEntry->images_offset; for (size_t i = 0; i < MAX_RIDE_TYPES_PER_RIDE_ENTRY; i++) { if (rideEntry->ride_type[i] == listItem->Type) break; else imageId++; } gfx_draw_sprite_raw_masked(dpi, x + 2, y + 2, SPR_NEW_RIDE_MASK, imageId); // Next position x += 116; if (x >= 116 * 5 + 1) { x = 1; y += 116; } // Next item listItem++; } } /** * * rct2: 0x006B6D3C */ static RideSelection window_new_ride_scroll_get_ride_list_item_at(rct_window* w, const ScreenCoordsXY& screenCoords) { RideSelection result; result.Type = RIDE_TYPE_NULL; result.EntryIndex = RIDE_ENTRY_INDEX_NULL; if (screenCoords.x <= 0 || screenCoords.y <= 0) return result; int32_t column = screenCoords.x / 116; int32_t row = screenCoords.y / 116; if (column >= 5) return result; int32_t index = column + (row * 5); RideSelection* listItem = _windowNewRideListItems; while (listItem->Type != RIDE_TYPE_NULL || listItem->EntryIndex != RIDE_ENTRY_INDEX_NULL) { if (index-- == 0) return *listItem; listItem++; } return result; } static int32_t get_num_track_designs(RideSelection item) { std::string entryName; rct_ride_entry* rideEntry = nullptr; if (item.Type < 0x80) { rideEntry = get_ride_entry(item.EntryIndex); if (RideTypeDescriptors[item.Type].HasFlag(RIDE_TYPE_FLAG_LIST_VEHICLES_SEPARATELY)) { entryName = get_ride_entry_name(item.EntryIndex); } } auto repo = OpenRCT2::GetContext()->GetTrackDesignRepository(); if (rideEntry != nullptr && RideTypeDescriptors[item.Type].HasFlag(RIDE_TYPE_FLAG_HAS_RIDE_GROUPS)) { auto rideGroup = RideGroupManager::GetRideGroup(item.Type, rideEntry); if (rideGroup != nullptr) { return static_cast(repo->GetCountForRideGroup(item.Type, rideGroup)); } } return static_cast(repo->GetCountForObjectEntry(item.Type, entryName)); } /** * * rct2: 0x006B701C */ static void window_new_ride_paint_ride_information( rct_window* w, rct_drawpixelinfo* dpi, RideSelection item, const ScreenCoordsXY& screenPos, int32_t width) { rct_ride_entry* rideEntry = get_ride_entry(item.EntryIndex); RideNaming rideNaming; // Ride name and description rideNaming = get_ride_naming(item.Type, rideEntry); auto ft = Formatter::Common(); ft.Add(rideNaming.Name); ft.Add(rideNaming.Description); gfx_draw_string_left_wrapped(dpi, gCommonFormatArgs, screenPos, width, STR_NEW_RIDE_NAME_AND_DESCRIPTION, COLOUR_BLACK); char availabilityString[AVAILABILITY_STRING_SIZE]; window_new_ride_list_vehicles_for(item.Type, rideEntry, availabilityString, sizeof(availabilityString)); if (availabilityString[0] != 0) { const char* drawString = availabilityString; gfx_draw_string_left_clipped( dpi, STR_AVAILABLE_VEHICLES, &drawString, COLOUR_BLACK, screenPos + ScreenCoordsXY{ 0, 39 }, WW - 2); } if (item.Type != _lastTrackDesignCountRideType.Type || item.EntryIndex != _lastTrackDesignCountRideType.EntryIndex) { _lastTrackDesignCountRideType = item; _lastTrackDesignCount = get_num_track_designs(item); } rct_string_id designCountStringId; switch (_lastTrackDesignCount) { case 0: designCountStringId = STR_CUSTOM_DESIGNED_LAYOUT; break; case 1: designCountStringId = STR_1_DESIGN_AVAILABLE; break; default: designCountStringId = STR_X_DESIGNS_AVAILABLE; break; } gfx_draw_string_left(dpi, designCountStringId, &_lastTrackDesignCount, COLOUR_BLACK, screenPos + ScreenCoordsXY{ 0, 51 }); // Price if (!(gParkFlags & PARK_FLAGS_NO_MONEY)) { // Get price of ride int32_t unk2 = RideTypeDescriptors[item.Type].StartTrackPiece; money32 price = RideTypeDescriptors[item.Type].BuildCosts.TrackPrice; if (ride_type_has_flag(item.Type, RIDE_TYPE_FLAG_FLAT_RIDE)) { price *= FlatRideTrackPricing[unk2]; } else { price *= TrackPricing[unk2]; } price = (price >> 17) * 10 * RideTypeDescriptors[item.Type].BuildCosts.PriceEstimateMultiplier; // rct_string_id stringId = STR_NEW_RIDE_COST; if (!ride_type_has_flag(item.Type, RIDE_TYPE_FLAG_HAS_NO_TRACK)) stringId = STR_NEW_RIDE_COST_FROM; gfx_draw_string_right(dpi, stringId, &price, COLOUR_BLACK, screenPos + ScreenCoordsXY{ width, 51 }); } } /** * * rct2: 0x006B6B78 */ static void window_new_ride_select(rct_window* w) { RideSelection item = w->new_ride.SelectedRide; if (item.Type == RIDE_TYPE_NULL) return; window_close(w); window_close_construction_windows(); if (_lastTrackDesignCount > 0) { auto intent = Intent(WC_TRACK_DESIGN_LIST); intent.putExtra(INTENT_EXTRA_RIDE_TYPE, item.Type); intent.putExtra(INTENT_EXTRA_RIDE_ENTRY_INDEX, item.EntryIndex); context_open_intent(&intent); return; } ride_construct_new(item); } static void window_new_ride_list_vehicles_for(uint8_t rideType, const rct_ride_entry* rideEntry, char* buffer, size_t bufferLen) { std::fill_n(buffer, bufferLen, 0); if (RideTypeDescriptors[rideType].HasFlag(RIDE_TYPE_FLAG_LIST_VEHICLES_SEPARATELY)) { return; } auto& objManager = OpenRCT2::GetContext()->GetObjectManager(); auto& rideEntries = objManager.GetAllRideEntries(rideType); auto isFirst = true; for (auto rideEntryIndex : rideEntries) { auto currentRideEntry = get_ride_entry(rideEntryIndex); // Skip if vehicle type is not invented yet if (!ride_entry_is_invented(rideEntryIndex) && !gCheatsIgnoreResearchStatus) continue; // Skip if vehicle does not belong to the same ride group if (RideTypeDescriptors[rideType].HasFlag(RIDE_TYPE_FLAG_HAS_RIDE_GROUPS)) { auto rideGroup = RideGroupManager::GetRideGroup(rideType, rideEntry); auto currentRideGroup = RideGroupManager::GetRideGroup(rideType, currentRideEntry); if (!rideGroup->Equals(currentRideGroup)) continue; } // Append comma if not the first iteration if (!isFirst) { safe_strcat(buffer, ", ", bufferLen); } // Append vehicle name auto vehicleName = language_get_string(currentRideEntry->naming.Name); safe_strcat(buffer, vehicleName, bufferLen); isFirst = false; } }