OpenRCT2/src/openrct2-ui/windows/RefurbishRidePrompt.cpp

127 lines
3.9 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2024 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 <openrct2-ui/interface/Widget.h>
#include <openrct2-ui/windows/Window.h>
#include <openrct2/Context.h>
#include <openrct2/Game.h>
#include <openrct2/GameState.h>
#include <openrct2/actions/RideDemolishAction.h>
#include <openrct2/drawing/Drawing.h>
#include <openrct2/localisation/Localisation.h>
#include <openrct2/windows/Intent.h>
#include <openrct2/world/Park.h>
namespace OpenRCT2::Ui::Windows
{
static constexpr int32_t WW = 200;
static constexpr int32_t WH = 100;
// clang-format off
enum WindowRideRefurbishWidgetIdx
{
WIDX_BACKGROUND,
WIDX_TITLE,
WIDX_CLOSE,
WIDX_REFURBISH,
WIDX_CANCEL
};
static Widget window_ride_refurbish_widgets[] =
{
WINDOW_SHIM_WHITE(STR_REFURBISH_RIDE, WW, WH),
MakeWidget({ 10, WH - 22 }, { 85, 14 }, WindowWidgetType::Button, WindowColour::Primary, STR_REFURBISH),
MakeWidget({ WW - 95, WH - 22 }, { 85, 14 }, WindowWidgetType::Button, WindowColour::Primary, STR_SAVE_PROMPT_CANCEL),
kWidgetsEnd,
};
// clang-format on
class RefurbishRidePromptWindow final : public Window
{
money64 _demolishRideCost;
public:
void SetRide(const Ride& currentRide)
{
rideId = currentRide.id;
_demolishRideCost = -RideGetRefundPrice(currentRide);
}
void OnOpen() override
{
widgets = window_ride_refurbish_widgets;
WindowInitScrollWidgets(*this);
}
void OnMouseUp(WidgetIndex widgetIndex) override
{
switch (widgetIndex)
{
case WIDX_REFURBISH:
{
auto gameAction = RideDemolishAction(rideId, RIDE_MODIFY_RENEW);
GameActions::Execute(&gameAction);
break;
}
case WIDX_CANCEL:
case WIDX_CLOSE:
Close();
break;
}
}
void OnDraw(DrawPixelInfo& dpi) override
{
WindowDrawWidgets(*this, dpi);
auto currentRide = GetRide(rideId);
if (currentRide != nullptr)
{
auto stringId = (GetGameState().Park.Flags & PARK_FLAGS_NO_MONEY) ? STR_REFURBISH_RIDE_ID_NO_MONEY
: STR_REFURBISH_RIDE_ID_MONEY;
auto ft = Formatter();
currentRide->FormatNameTo(ft);
ft.Add<money64>(_demolishRideCost / 2);
ScreenCoordsXY stringCoords(windowPos.x + WW / 2, windowPos.y + (WH / 2) - 3);
DrawTextWrapped(dpi, stringCoords, WW - 4, stringId, ft, { TextAlignment::CENTRE });
}
}
void OnResize() override
{
ResizeFrame();
}
};
WindowBase* RideRefurbishPromptOpen(const Ride& ride)
{
WindowBase* w;
RefurbishRidePromptWindow* newWindow;
w = WindowFindByClass(WindowClass::DemolishRidePrompt);
if (w != nullptr)
{
auto windowPos = w->windowPos;
WindowClose(*w);
newWindow = WindowCreate<RefurbishRidePromptWindow>(
WindowClass::DemolishRidePrompt, windowPos, WW, WH, WF_TRANSPARENT);
}
else
{
newWindow = WindowCreate<RefurbishRidePromptWindow>(
WindowClass::DemolishRidePrompt, WW, WH, WF_CENTRE_SCREEN | WF_TRANSPARENT);
}
newWindow->SetRide(ride);
return newWindow;
}
} // namespace OpenRCT2::Ui::Windows