mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-20 05:23:04 +01:00
1025 lines
34 KiB
C++
1025 lines
34 KiB
C++
/*****************************************************************************
|
|
* 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 <algorithm>
|
|
#include <iterator>
|
|
#include <limits>
|
|
#include <openrct2-ui/interface/Widget.h>
|
|
#include <openrct2-ui/windows/Window.h>
|
|
#include <openrct2/Context.h>
|
|
#include <openrct2/Game.h>
|
|
#include <openrct2/OpenRCT2.h>
|
|
#include <openrct2/audio/audio.h>
|
|
#include <openrct2/config/Config.h>
|
|
#include <openrct2/core/String.hpp>
|
|
#include <openrct2/localisation/Formatter.h>
|
|
#include <openrct2/localisation/Localisation.h>
|
|
#include <openrct2/localisation/LocalisationService.h>
|
|
#include <openrct2/management/NewsItem.h>
|
|
#include <openrct2/management/Research.h>
|
|
#include <openrct2/network/network.h>
|
|
#include <openrct2/object/ObjectLimits.h>
|
|
#include <openrct2/object/ObjectManager.h>
|
|
#include <openrct2/object/RideObject.h>
|
|
#include <openrct2/rct1/RCT1.h>
|
|
#include <openrct2/ride/RideData.h>
|
|
#include <openrct2/ride/TrackData.h>
|
|
#include <openrct2/ride/TrackDesignRepository.h>
|
|
#include <openrct2/sprites.h>
|
|
#include <openrct2/util/Util.h>
|
|
#include <openrct2/windows/Intent.h>
|
|
#include <openrct2/world/Park.h>
|
|
|
|
using namespace OpenRCT2::TrackMetaData;
|
|
|
|
static constexpr const rct_string_id WINDOW_TITLE = STR_NONE;
|
|
static constexpr const int32_t WH = 382;
|
|
static constexpr const int32_t WW = 601;
|
|
static constexpr const int32_t NEW_RIDE_LIST_ITEMS_MAX = 384;
|
|
static constexpr const int32_t RideTabCount = 6;
|
|
|
|
static uint8_t _windowNewRideCurrentTab;
|
|
static uint_fast16_t _windowNewRideTabScroll[RideTabCount];
|
|
static RideSelection _windowNewRideListItems[NEW_RIDE_LIST_ITEMS_MAX];
|
|
static u8string _vehicleAvailability = {};
|
|
static int32_t _windowNewRideGroupByTrackTypeWidth = 172;
|
|
|
|
#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_SPINNING_WILD_MOUSE,
|
|
RIDE_TYPE_INVERTED_HAIRPIN_COASTER,
|
|
RIDE_TYPE_JUNIOR_ROLLER_COASTER,
|
|
RIDE_TYPE_CLASSIC_MINI_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_HYPERCOASTER,
|
|
RIDE_TYPE_LIM_LAUNCHED_ROLLER_COASTER,
|
|
RIDE_TYPE_TWISTER_ROLLER_COASTER,
|
|
RIDE_TYPE_HYPER_TWISTER,
|
|
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,
|
|
RIDE_TYPE_HYBRID_COASTER,
|
|
RIDE_TYPE_SINGLE_RAIL_ROLLER_COASTER,
|
|
RIDE_TYPE_ALPINE_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_MONSTER_TRUCKS,
|
|
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,
|
|
|
|
WIDX_GROUP_BY_TRACK_TYPE,
|
|
};
|
|
|
|
static rct_widget window_new_ride_widgets[] = {
|
|
WINDOW_SHIM(WINDOW_TITLE, WW, WH),
|
|
MakeWidget({ 0, 43}, {601, 339}, WindowWidgetType::Resize, WindowColour::Secondary ),
|
|
MakeTab ({ 3, 17}, STR_TRANSPORT_RIDES_TIP ),
|
|
MakeTab ({ 34, 17}, STR_GENTLE_RIDES_TIP ),
|
|
MakeTab ({ 65, 17}, STR_ROLLER_COASTERS_TIP ),
|
|
MakeTab ({ 96, 17}, STR_THRILL_RIDES_TIP ),
|
|
MakeTab ({127, 17}, STR_WATER_RIDES_TIP ),
|
|
MakeTab ({158, 17}, STR_SHOPS_STALLS_TIP ),
|
|
MakeTab ({189, 17}, STR_RESEARCH_AND_DEVELOPMENT_TIP),
|
|
MakeWidget({ 3, 62}, {595, 256}, WindowWidgetType::Scroll, WindowColour::Secondary, SCROLL_VERTICAL ),
|
|
MakeWidget({ 3, 47}, {290, 70}, WindowWidgetType::Groupbox, WindowColour::Tertiary, STR_CURRENTLY_IN_DEVELOPMENT ),
|
|
MakeWidget({ 3, 124}, {290, 65}, WindowWidgetType::Groupbox, WindowColour::Tertiary, STR_LAST_DEVELOPMENT ),
|
|
MakeWidget({265, 161}, { 24, 24}, WindowWidgetType::FlatBtn, WindowColour::Tertiary, 0xFFFFFFFF, STR_RESEARCH_SHOW_DETAILS_TIP ),
|
|
MakeWidget({265, 68}, { 24, 24}, WindowWidgetType::FlatBtn, WindowColour::Tertiary, SPR_FINANCE, STR_FINANCES_RESEARCH_TIP ),
|
|
MakeWidget({ WW - 8 - _windowNewRideGroupByTrackTypeWidth, 47}, {_windowNewRideGroupByTrackTypeWidth, 14}, WindowWidgetType::Checkbox, WindowColour::Secondary, STR_GROUP_BY_TRACK_TYPE, STR_GROUP_BY_TRACK_TYPE_TIP ),
|
|
WIDGETS_END,
|
|
};
|
|
|
|
#pragma endregion
|
|
|
|
#pragma region Events
|
|
|
|
static void WindowNewRideMouseup(rct_window *w, rct_widgetindex widgetIndex);
|
|
static void WindowNewRideMousedown(rct_window *w, rct_widgetindex widgetIndex, rct_widget *widget);
|
|
static void WindowNewRideUpdate(rct_window *w);
|
|
static void WindowNewRideScrollgetsize(rct_window *w, int32_t scrollIndex, int32_t *width, int32_t *height);
|
|
static void WindowNewRideScrollMousedown(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords);
|
|
static void WindowNewRideScrollmouseover(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords);
|
|
static void WindowNewRideInvalidate(rct_window *w);
|
|
static void WindowNewRidePaint(rct_window *w, rct_drawpixelinfo *dpi);
|
|
static void WindowNewRideScrollpaint(rct_window *w, rct_drawpixelinfo *dpi, int32_t scrollIndex);
|
|
static void WindowNewRideUpdateVehicleAvailability(ObjectEntryIndex rideType);
|
|
|
|
// 0x0098E354
|
|
static rct_window_event_list window_new_ride_events([](auto& events)
|
|
{
|
|
events.mouse_up = &WindowNewRideMouseup;
|
|
events.mouse_down = &WindowNewRideMousedown;
|
|
events.update = &WindowNewRideUpdate;
|
|
events.get_scroll_size = &WindowNewRideScrollgetsize;
|
|
events.scroll_mousedown = &WindowNewRideScrollMousedown;
|
|
events.scroll_mouseover = &WindowNewRideScrollmouseover;
|
|
events.invalidate = &WindowNewRideInvalidate;
|
|
events.paint = &WindowNewRidePaint;
|
|
events.scroll_paint = &WindowNewRideScrollpaint;
|
|
});
|
|
|
|
#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,
|
|
};
|
|
// clang-format on
|
|
|
|
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,
|
|
};
|
|
|
|
static void WindowNewRideSetPage(rct_window* w, int32_t page);
|
|
static void WindowNewRideRefreshWidgetSizing(rct_window* w);
|
|
static RideSelection WindowNewRideScrollGetRideListItemAt(rct_window* w, const ScreenCoordsXY& screenCoords);
|
|
static void WindowNewRidePaintRideInformation(
|
|
rct_window* w, rct_drawpixelinfo* dpi, RideSelection item, const ScreenCoordsXY& screenPos, int32_t width);
|
|
static void WindowNewRideSelect(rct_window* w);
|
|
static RideSelection* WindowNewRideIterateOverRideType(uint8_t rideType, RideSelection* nextListItem, RideSelection* listEnd);
|
|
|
|
static RideSelection _lastTrackDesignCountRideType;
|
|
static int32_t _lastTrackDesignCount;
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006ACA58
|
|
*/
|
|
void WindowNewRideInitVars()
|
|
{
|
|
// 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;
|
|
}
|
|
|
|
std::fill_n(_windowNewRideTabScroll, RideTabCount, 0);
|
|
}
|
|
|
|
/**
|
|
* 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 WindowNewRidePopulateList()
|
|
{
|
|
uint8_t currentCategory = _windowNewRideCurrentTab;
|
|
RideSelection* nextListItem = _windowNewRideListItems;
|
|
RideSelection* listEnd = _windowNewRideListItems + NEW_RIDE_LIST_ITEMS_MAX;
|
|
|
|
// For each ride type in the view order list
|
|
for (int32_t i = 0; i < static_cast<int32_t>(std::size(RideTypeViewOrder)); i++)
|
|
{
|
|
uint8_t rideType = RideTypeViewOrder[i];
|
|
if (rideType == RIDE_TYPE_NULL)
|
|
continue;
|
|
|
|
if (GetRideTypeDescriptor(rideType).Category != currentCategory)
|
|
continue;
|
|
|
|
nextListItem = WindowNewRideIterateOverRideType(rideType, nextListItem, listEnd);
|
|
}
|
|
|
|
nextListItem->Type = RIDE_TYPE_NULL;
|
|
nextListItem->EntryIndex = OBJECT_ENTRY_INDEX_NULL;
|
|
}
|
|
|
|
static RideSelection* WindowNewRideIterateOverRideType(uint8_t rideType, RideSelection* nextListItem, RideSelection* listEnd)
|
|
{
|
|
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);
|
|
|
|
// Skip if the vehicle isn't the preferred vehicle for this generic track type
|
|
if (!gConfigInterface.list_ride_vehicles_separately
|
|
&& !GetRideTypeDescriptor(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 (gConfigInterface.list_ride_vehicles_separately
|
|
|| GetRideTypeDescriptor(rideType).HasFlag(RIDE_TYPE_FLAG_LIST_VEHICLES_SEPARATELY))
|
|
{
|
|
// Separate, draw apart
|
|
allowDrawingOverLastButton = false;
|
|
|
|
if (nextListItem >= listEnd)
|
|
continue;
|
|
|
|
nextListItem->Type = rideType;
|
|
nextListItem->EntryIndex = rideEntryIndex;
|
|
nextListItem++;
|
|
}
|
|
else if (!buttonForRideTypeCreated)
|
|
{
|
|
// Non-separate, draw-apart
|
|
buttonForRideTypeCreated = true;
|
|
allowDrawingOverLastButton = true;
|
|
|
|
if (nextListItem >= listEnd)
|
|
continue;
|
|
|
|
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 WindowNewRideRestoreScrollPositionForCurrentTab(rct_window* w)
|
|
{
|
|
assert(_windowNewRideCurrentTab < std::size(_windowNewRideTabScroll));
|
|
auto& currentTabScroll = _windowNewRideTabScroll[_windowNewRideCurrentTab];
|
|
|
|
// Get maximum scroll height
|
|
int32_t scrollWidth = 0;
|
|
int32_t scrollHeight = 0;
|
|
window_get_scroll_size(w, 0, &scrollWidth, &scrollHeight);
|
|
const rct_widget& listWidget = window_new_ride_widgets[WIDX_RIDE_LIST];
|
|
const int32_t listWidgetHeight = listWidget.bottom - listWidget.top - 1;
|
|
|
|
// Ensure the current tab scroll is within range
|
|
currentTabScroll = std::min<uint16_t>(currentTabScroll, std::max(0, scrollHeight - listWidgetHeight));
|
|
|
|
w->scrolls[0].v_top = currentTabScroll;
|
|
WidgetScrollUpdateThumbs(w, WIDX_RIDE_LIST);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B3CFF
|
|
*/
|
|
rct_window* WindowNewRideOpen()
|
|
{
|
|
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 = WindowCreateAutoPos(WW, WH, &window_new_ride_events, WC_CONSTRUCT_RIDE, WF_10);
|
|
w->widgets = window_new_ride_widgets;
|
|
WindowNewRidePopulateList();
|
|
WindowInitScrollWidgets(w);
|
|
|
|
w->frame_no = 0;
|
|
w->new_ride.SelectedRide = { RIDE_TYPE_NULL, OBJECT_ENTRY_INDEX_NULL };
|
|
_lastTrackDesignCountRideType.Type = RIDE_TYPE_NULL;
|
|
_lastTrackDesignCountRideType.EntryIndex = OBJECT_ENTRY_INDEX_NULL;
|
|
|
|
w->width = 1;
|
|
WindowNewRideRefreshWidgetSizing(w);
|
|
|
|
if (_windowNewRideCurrentTab < WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
WindowNewRideSetPage(w, _windowNewRideCurrentTab);
|
|
WindowNewRideRestoreScrollPositionForCurrentTab(w);
|
|
}
|
|
|
|
return w;
|
|
}
|
|
|
|
rct_window* WindowNewRideOpenResearch()
|
|
{
|
|
rct_window* w;
|
|
|
|
w = WindowNewRideOpen();
|
|
WindowNewRideSetPage(w, WINDOW_NEW_RIDE_PAGE_RESEARCH);
|
|
return w;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B3EBA
|
|
*/
|
|
void WindowNewRideFocus(RideSelection rideItem)
|
|
{
|
|
rct_window* w = window_find_by_class(WC_CONSTRUCT_RIDE);
|
|
if (w == nullptr)
|
|
return;
|
|
|
|
rct_ride_entry* rideEntry = get_ride_entry(rideItem.EntryIndex);
|
|
uint8_t rideTypeIndex = ride_entry_get_first_non_null_ride_type(rideEntry);
|
|
|
|
WindowNewRideSetPage(w, GetRideTypeDescriptor(rideTypeIndex).Category);
|
|
}
|
|
|
|
static void WindowNewRideSetPage(rct_window* w, int32_t page)
|
|
{
|
|
_windowNewRideCurrentTab = page;
|
|
w->frame_no = 0;
|
|
w->new_ride.HighlightedRide = { RIDE_TYPE_NULL, OBJECT_ENTRY_INDEX_NULL };
|
|
w->new_ride.selected_ride_countdown = std::numeric_limits<uint16_t>::max();
|
|
WindowNewRidePopulateList();
|
|
WindowNewRideRefreshWidgetSizing(w);
|
|
w->Invalidate();
|
|
|
|
if (page < WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
WindowNewRideRestoreScrollPositionForCurrentTab(w);
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B3DF1
|
|
*/
|
|
static void WindowNewRideRefreshWidgetSizing(rct_window* w)
|
|
{
|
|
int32_t width, height;
|
|
|
|
if (_windowNewRideCurrentTab < WINDOW_NEW_RIDE_PAGE_SHOP)
|
|
{
|
|
w->disabled_widgets &= ~(1 << WIDX_GROUP_BY_TRACK_TYPE);
|
|
}
|
|
else
|
|
{
|
|
w->disabled_widgets |= 1LL << WIDX_GROUP_BY_TRACK_TYPE;
|
|
}
|
|
|
|
// Show or hide unrelated widgets
|
|
|
|
if (_windowNewRideCurrentTab < WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
window_new_ride_widgets[WIDX_GROUP_BY_TRACK_TYPE].type = WindowWidgetType::Checkbox;
|
|
}
|
|
else
|
|
{
|
|
window_new_ride_widgets[WIDX_GROUP_BY_TRACK_TYPE].type = WindowWidgetType::Empty;
|
|
}
|
|
|
|
if (_windowNewRideCurrentTab != WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
window_new_ride_widgets[WIDX_RIDE_LIST].type = WindowWidgetType::Scroll;
|
|
window_new_ride_widgets[WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP].type = WindowWidgetType::Empty;
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_GROUP].type = WindowWidgetType::Empty;
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WindowWidgetType::Empty;
|
|
window_new_ride_widgets[WIDX_RESEARCH_FUNDING_BUTTON].type = WindowWidgetType::Empty;
|
|
|
|
width = WW;
|
|
height = WH;
|
|
}
|
|
else
|
|
{
|
|
window_new_ride_widgets[WIDX_RIDE_LIST].type = WindowWidgetType::Empty;
|
|
window_new_ride_widgets[WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP].type = WindowWidgetType::Groupbox;
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_GROUP].type = WindowWidgetType::Groupbox;
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WindowWidgetType::FlatBtn;
|
|
if (!(gParkFlags & PARK_FLAGS_NO_MONEY))
|
|
window_new_ride_widgets[WIDX_RESEARCH_FUNDING_BUTTON].type = WindowWidgetType::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;
|
|
window_new_ride_widgets[WIDX_GROUP_BY_TRACK_TYPE].left = width - 8 - _windowNewRideGroupByTrackTypeWidth;
|
|
window_new_ride_widgets[WIDX_GROUP_BY_TRACK_TYPE].right = width - 8;
|
|
|
|
w->width = width;
|
|
w->height = height;
|
|
w->Invalidate();
|
|
}
|
|
|
|
WindowInitScrollWidgets(w);
|
|
}
|
|
|
|
static void WindowNewRideSetPressedTab(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 WindowNewRideDrawTabImage(rct_drawpixelinfo* dpi, rct_window* w, int32_t page, int32_t spriteIndex)
|
|
{
|
|
rct_widgetindex widgetIndex = WIDX_TAB_1 + page;
|
|
|
|
if (w->widgets[widgetIndex].type != WindowWidgetType::Empty && !WidgetIsDisabled(w, 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;
|
|
|
|
gfx_draw_sprite(
|
|
dpi, ImageId(spriteIndex, w->colours[1]),
|
|
w->windowPos + ScreenCoordsXY{ w->widgets[widgetIndex].left, w->widgets[widgetIndex].top });
|
|
}
|
|
}
|
|
|
|
static void WindowNewRideDrawTabImages(rct_drawpixelinfo* dpi, rct_window* w)
|
|
{
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_TRANSPORT, SPR_TAB_RIDES_TRANSPORT_0);
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_GENTLE, SPR_TAB_RIDES_GENTLE_0);
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_ROLLER_COASTER, SPR_TAB_RIDES_ROLLER_COASTERS_0);
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_THRILL, SPR_TAB_RIDES_THRILL_0);
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_WATER, SPR_TAB_RIDES_WATER_0);
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_SHOP, SPR_TAB_RIDES_SHOP_0);
|
|
WindowNewRideDrawTabImage(dpi, w, WINDOW_NEW_RIDE_PAGE_RESEARCH, SPR_TAB_FINANCES_RESEARCH_0);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6B38
|
|
*/
|
|
static void WindowNewRideMouseup(rct_window* w, rct_widgetindex widgetIndex)
|
|
{
|
|
switch (widgetIndex)
|
|
{
|
|
case WIDX_CLOSE:
|
|
window_close(w);
|
|
break;
|
|
case WIDX_LAST_DEVELOPMENT_BUTTON:
|
|
News::OpenSubject(News::ItemType::Research, gResearchLastItem->rawValue);
|
|
break;
|
|
case WIDX_RESEARCH_FUNDING_BUTTON:
|
|
context_open_window_view(WV_FINANCES_RESEARCH);
|
|
break;
|
|
case WIDX_GROUP_BY_TRACK_TYPE:
|
|
gConfigInterface.list_ride_vehicles_separately = !gConfigInterface.list_ride_vehicles_separately;
|
|
config_save_default();
|
|
WindowNewRideSetPage(w, _windowNewRideCurrentTab);
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6B4F
|
|
*/
|
|
static void WindowNewRideMousedown(rct_window* w, rct_widgetindex widgetIndex, rct_widget* widget)
|
|
{
|
|
if (widgetIndex >= WIDX_TAB_1 && widgetIndex <= WIDX_TAB_7)
|
|
WindowNewRideSetPage(w, widgetIndex - WIDX_TAB_1);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6CE7
|
|
*/
|
|
static void WindowNewRideUpdate(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)
|
|
WindowNewRideSelect(w);
|
|
|
|
WindowNewRidePopulateList();
|
|
|
|
if (_windowNewRideCurrentTab < WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
_windowNewRideTabScroll[_windowNewRideCurrentTab] = w->scrolls[0].v_top;
|
|
|
|
// Remove highlight when mouse leaves rides list
|
|
if (!WidgetIsHighlighted(w, WIDX_RIDE_LIST))
|
|
{
|
|
w->new_ride.HighlightedRide = { RIDE_TYPE_NULL, OBJECT_ENTRY_INDEX_NULL };
|
|
widget_invalidate(w, WIDX_RIDE_LIST);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6BC9
|
|
*/
|
|
static void WindowNewRideScrollgetsize(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 != OBJECT_ENTRY_INDEX_NULL)
|
|
{
|
|
count++;
|
|
listItem++;
|
|
}
|
|
*height = ((count + 4) / 5) * 116;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6C89
|
|
*/
|
|
static void WindowNewRideScrollMousedown(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords)
|
|
{
|
|
RideSelection item;
|
|
|
|
item = WindowNewRideScrollGetRideListItemAt(w, screenCoords);
|
|
if (item.Type == RIDE_TYPE_NULL && item.EntryIndex == OBJECT_ENTRY_INDEX_NULL)
|
|
return;
|
|
|
|
w->new_ride.SelectedRide = item;
|
|
|
|
OpenRCT2::Audio::Play(OpenRCT2::Audio::SoundId::Click1, 0, w->windowPos.x + (w->width / 2));
|
|
w->new_ride.selected_ride_countdown = 8;
|
|
w->Invalidate();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6C51
|
|
*/
|
|
static void WindowNewRideScrollmouseover(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords)
|
|
{
|
|
RideSelection item = WindowNewRideScrollGetRideListItemAt(w, screenCoords);
|
|
if (w->new_ride.HighlightedRide == item)
|
|
return;
|
|
|
|
w->new_ride.HighlightedRide = item;
|
|
w->Invalidate();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6819
|
|
*/
|
|
static void WindowNewRideInvalidate(rct_window* w)
|
|
{
|
|
WindowNewRideSetPressedTab(w);
|
|
|
|
if (!gConfigInterface.list_ride_vehicles_separately)
|
|
w->pressed_widgets |= (1LL << WIDX_GROUP_BY_TRACK_TYPE);
|
|
else
|
|
w->pressed_widgets &= ~(1LL << WIDX_GROUP_BY_TRACK_TYPE);
|
|
|
|
window_new_ride_widgets[WIDX_TITLE].text = window_new_ride_titles[_windowNewRideCurrentTab];
|
|
window_new_ride_widgets[WIDX_TAB_7].type = WindowWidgetType::Tab;
|
|
if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER)
|
|
window_new_ride_widgets[WIDX_TAB_7].type = WindowWidgetType::Empty;
|
|
|
|
if (_windowNewRideCurrentTab == WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WindowWidgetType::Empty;
|
|
if (gResearchLastItem.has_value())
|
|
{
|
|
auto type = gResearchLastItem->type;
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].type = WindowWidgetType::FlatBtn;
|
|
window_new_ride_widgets[WIDX_LAST_DEVELOPMENT_BUTTON].image = (type == Research::EntryType::Ride) ? SPR_NEW_RIDE
|
|
: SPR_NEW_SCENERY;
|
|
}
|
|
}
|
|
|
|
const auto& ls = OpenRCT2::GetContext()->GetLocalisationService();
|
|
auto string = ls.GetString(STR_GROUP_BY_TRACK_TYPE);
|
|
auto strWidth = gfx_get_string_width(string, FontSpriteBase::MEDIUM);
|
|
_windowNewRideGroupByTrackTypeWidth = strWidth + 14;
|
|
window_new_ride_widgets[WIDX_GROUP_BY_TRACK_TYPE].left = w->width - 8 - _windowNewRideGroupByTrackTypeWidth;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B689B
|
|
*/
|
|
static void WindowNewRidePaint(rct_window* w, rct_drawpixelinfo* dpi)
|
|
{
|
|
WindowDrawWidgets(w, dpi);
|
|
WindowNewRideDrawTabImages(dpi, w);
|
|
|
|
if (_windowNewRideCurrentTab != WINDOW_NEW_RIDE_PAGE_RESEARCH)
|
|
{
|
|
RideSelection item;
|
|
item = w->new_ride.HighlightedRide;
|
|
if (item.Type != RIDE_TYPE_NULL || item.EntryIndex != OBJECT_ENTRY_INDEX_NULL)
|
|
WindowNewRidePaintRideInformation(w, dpi, item, w->windowPos + ScreenCoordsXY{ 3, w->height - 64 }, w->width - 6);
|
|
}
|
|
else
|
|
{
|
|
WindowResearchDevelopmentPagePaint(w, dpi, WIDX_CURRENTLY_IN_DEVELOPMENT_GROUP);
|
|
}
|
|
}
|
|
|
|
static ImageIndex GetRideImage(RideSelection rideSelection)
|
|
{
|
|
auto& objMgr = OpenRCT2::GetContext()->GetObjectManager();
|
|
auto obj = static_cast<RideObject*>(objMgr.GetLoadedObject(ObjectType::Ride, rideSelection.EntryIndex));
|
|
return obj == nullptr ? ImageIndexUndefined : obj->GetPreviewImage(rideSelection.Type);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6ABF
|
|
*/
|
|
static void WindowNewRideScrollpaint(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);
|
|
|
|
ScreenCoordsXY coords{ 1, 1 };
|
|
RideSelection* listItem = _windowNewRideListItems;
|
|
while (listItem->Type != RIDE_TYPE_NULL || listItem->EntryIndex != OBJECT_ENTRY_INDEX_NULL)
|
|
{
|
|
// 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, { coords, coords + ScreenCoordsXY{ 115, 115 } }, w->colours[1], INSET_RECT_FLAG_FILL_MID_LIGHT | flags);
|
|
|
|
// Draw ride image with feathered border
|
|
auto mask = ImageId(SPR_NEW_RIDE_MASK);
|
|
auto rideImage = ImageId(GetRideImage(*listItem));
|
|
gfx_draw_sprite_raw_masked(dpi, coords + ScreenCoordsXY{ 2, 2 }, mask, rideImage);
|
|
|
|
// Next position
|
|
coords.x += 116;
|
|
if (coords.x >= 116 * 5 + 1)
|
|
{
|
|
coords.x = 1;
|
|
coords.y += 116;
|
|
}
|
|
|
|
// Next item
|
|
listItem++;
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6D3C
|
|
*/
|
|
static RideSelection WindowNewRideScrollGetRideListItemAt(rct_window* w, const ScreenCoordsXY& screenCoords)
|
|
{
|
|
RideSelection result;
|
|
result.Type = RIDE_TYPE_NULL;
|
|
result.EntryIndex = OBJECT_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 != OBJECT_ENTRY_INDEX_NULL)
|
|
{
|
|
if (index-- == 0)
|
|
return *listItem;
|
|
listItem++;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int32_t GetNumTrackDesigns(RideSelection item)
|
|
{
|
|
std::string entryName;
|
|
|
|
if (item.Type < 0x80)
|
|
{
|
|
if (GetRideTypeDescriptor(item.Type).HasFlag(RIDE_TYPE_FLAG_LIST_VEHICLES_SEPARATELY))
|
|
{
|
|
entryName = get_ride_entry_name(item.EntryIndex);
|
|
}
|
|
}
|
|
|
|
auto repo = OpenRCT2::GetContext()->GetTrackDesignRepository();
|
|
return static_cast<int32_t>(repo->GetCountForObjectEntry(item.Type, entryName));
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B701C
|
|
*/
|
|
static void WindowNewRidePaintRideInformation(
|
|
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;
|
|
|
|
auto ft = Formatter();
|
|
rideNaming = get_ride_naming(item.Type, rideEntry);
|
|
WindowNewRideUpdateVehicleAvailability(item.Type);
|
|
|
|
// Ride name and description
|
|
ft.Add<rct_string_id>(rideNaming.Name);
|
|
ft.Add<rct_string_id>(rideNaming.Description);
|
|
DrawTextWrapped(dpi, screenPos, width, STR_NEW_RIDE_NAME_AND_DESCRIPTION, ft);
|
|
|
|
if (!_vehicleAvailability.empty())
|
|
{
|
|
if (gConfigInterface.list_ride_vehicles_separately)
|
|
{
|
|
ft = Formatter();
|
|
ft.Add<rct_string_id>(rideEntry->naming.Name);
|
|
DrawTextEllipsised(dpi, screenPos + ScreenCoordsXY{ 0, 39 }, WW - 2, STR_NEW_RIDE_VEHICLE_NAME, ft);
|
|
}
|
|
else
|
|
{
|
|
ft = Formatter();
|
|
ft.Add<const utf8*>(_vehicleAvailability.c_str());
|
|
DrawTextEllipsised(dpi, screenPos + ScreenCoordsXY{ 0, 39 }, WW - 2, STR_AVAILABLE_VEHICLES, ft);
|
|
}
|
|
}
|
|
|
|
ft = Formatter();
|
|
if (item.Type != _lastTrackDesignCountRideType.Type || item.EntryIndex != _lastTrackDesignCountRideType.EntryIndex)
|
|
{
|
|
_lastTrackDesignCountRideType = item;
|
|
_lastTrackDesignCount = GetNumTrackDesigns(item);
|
|
}
|
|
ft.Add<int32_t>(_lastTrackDesignCount);
|
|
|
|
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;
|
|
}
|
|
|
|
DrawTextBasic(dpi, screenPos + ScreenCoordsXY{ 0, 51 }, designCountStringId, ft);
|
|
|
|
// Price
|
|
if (!(gParkFlags & PARK_FLAGS_NO_MONEY))
|
|
{
|
|
// Get price of ride
|
|
int32_t startPieceId = GetRideTypeDescriptor(item.Type).StartTrackPiece;
|
|
money64 price = GetRideTypeDescriptor(item.Type).BuildCosts.TrackPrice;
|
|
const auto& ted = GetTrackElementDescriptor(startPieceId);
|
|
price *= ted.PriceModifier;
|
|
price = (price >> 16) * GetRideTypeDescriptor(item.Type).BuildCosts.PriceEstimateMultiplier;
|
|
|
|
//
|
|
rct_string_id stringId = STR_NEW_RIDE_COST;
|
|
if (!GetRideTypeDescriptor(item.Type).HasFlag(RIDE_TYPE_FLAG_HAS_NO_TRACK))
|
|
stringId = STR_NEW_RIDE_COST_FROM;
|
|
|
|
ft = Formatter();
|
|
ft.Add<money64>(price);
|
|
DrawTextBasic(dpi, screenPos + ScreenCoordsXY{ width, 51 }, stringId, ft, { TextAlignment::RIGHT });
|
|
}
|
|
}
|
|
|
|
/**
|
|
*
|
|
* rct2: 0x006B6B78
|
|
*/
|
|
static void WindowNewRideSelect(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 WindowNewRideUpdateVehicleAvailability(ObjectEntryIndex rideType)
|
|
{
|
|
_vehicleAvailability.clear();
|
|
if (GetRideTypeDescriptor(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;
|
|
|
|
// Append comma if not the first iteration
|
|
if (!isFirst)
|
|
{
|
|
_vehicleAvailability += u8", ";
|
|
}
|
|
|
|
// Append vehicle name
|
|
auto vehicleName = language_get_string(currentRideEntry->naming.Name);
|
|
_vehicleAvailability += vehicleName;
|
|
|
|
isFirst = false;
|
|
}
|
|
}
|