mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-06 06:32:56 +01:00
104 lines
3.4 KiB
C++
104 lines
3.4 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2025 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/Windows.h>
|
|
#include <openrct2/Game.h>
|
|
#include <openrct2/actions/StaffFireAction.h>
|
|
#include <openrct2/drawing/Drawing.h>
|
|
#include <openrct2/entity/EntityRegistry.h>
|
|
#include <openrct2/entity/Staff.h>
|
|
#include <openrct2/interface/Colour.h>
|
|
#include <openrct2/localisation/Formatter.h>
|
|
#include <openrct2/ui/WindowManager.h>
|
|
|
|
namespace OpenRCT2::Ui::Windows
|
|
{
|
|
static constexpr StringId WINDOW_TITLE = STR_SACK_STAFF;
|
|
static constexpr int32_t WW = 200;
|
|
static constexpr int32_t WH = 100;
|
|
|
|
enum WindowStaffFireWidgetIdx
|
|
{
|
|
WIDX_BACKGROUND,
|
|
WIDX_TITLE,
|
|
WIDX_CLOSE,
|
|
WIDX_YES,
|
|
WIDX_CANCEL
|
|
};
|
|
|
|
// clang-format off
|
|
// 0x9AFB4C
|
|
static constexpr Widget _staffFireWidgets[] = {
|
|
WINDOW_SHIM(WINDOW_TITLE, WW, WH),
|
|
MakeWidget({ 10, WH - 20}, {85, 14}, WindowWidgetType::Button, WindowColour::Primary, STR_YES ),
|
|
MakeWidget({WW - 95, WH - 20}, {85, 14}, WindowWidgetType::Button, WindowColour::Primary, STR_SAVE_PROMPT_CANCEL),
|
|
};
|
|
// clang-format on
|
|
|
|
class StaffFirePromptWindow final : public Window
|
|
{
|
|
public:
|
|
void SetWindowNumber(rct_windownumber windownumber)
|
|
{
|
|
number = windownumber;
|
|
}
|
|
|
|
void OnOpen() override
|
|
{
|
|
SetWidgets(_staffFireWidgets);
|
|
WindowInitScrollWidgets(*this);
|
|
}
|
|
|
|
void OnMouseUp(WidgetIndex widgetIndex) override
|
|
{
|
|
switch (widgetIndex)
|
|
{
|
|
case WIDX_YES:
|
|
{
|
|
auto staffFireAction = StaffFireAction(EntityId::FromUnderlying(number));
|
|
GameActions::Execute(&staffFireAction);
|
|
break;
|
|
}
|
|
case WIDX_CLOSE:
|
|
case WIDX_CANCEL:
|
|
Close();
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OnDraw(DrawPixelInfo& dpi) override
|
|
{
|
|
DrawWidgets(dpi);
|
|
|
|
Peep* peep = GetEntity<Staff>(EntityId::FromUnderlying(number));
|
|
// The staff member may have been fired in the meantime.
|
|
if (peep == nullptr)
|
|
{
|
|
return;
|
|
}
|
|
auto ft = Formatter();
|
|
peep->FormatNameTo(ft);
|
|
|
|
ScreenCoordsXY textCoords(windowPos + ScreenCoordsXY{ WW / 2, (WH / 2) - 3 });
|
|
DrawTextWrapped(dpi, textCoords, WW - 4, STR_FIRE_STAFF_ID, ft, { TextAlignment::CENTRE });
|
|
}
|
|
};
|
|
|
|
WindowBase* StaffFirePromptOpen(Peep* peep)
|
|
{
|
|
// Check if the confirm window already exists
|
|
auto* windowMgr = GetWindowManager();
|
|
auto* window = windowMgr->FocusOrCreate<StaffFirePromptWindow>(
|
|
WindowClass::FirePrompt, WW, WH, WF_CENTRE_SCREEN | WF_TRANSPARENT);
|
|
window->SetWindowNumber(peep->Id.ToUnderlying());
|
|
return window;
|
|
}
|
|
} // namespace OpenRCT2::Ui::Windows
|