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

67 lines
1.8 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2023 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/Intro.h>
#include <openrct2/config/Config.h>
#include <openrct2/localisation/Localisation.h>
#include <openrct2/sprites.h>
// clang-format off
enum WindowTitleExitWidgetIdx {
WIDX_EXIT,
};
static Widget window_title_exit_widgets[] = {
MakeWidget({0, 0}, {40, 64}, WindowWidgetType::ImgBtn, WindowColour::Tertiary, ImageId(SPR_MENU_EXIT), STR_EXIT),
WIDGETS_END,
};
// clang-format on
class TitleExitWindow final : public Window
{
void OnOpen() override
{
widgets = window_title_exit_widgets;
InitScrollWidgets();
}
void OnMouseUp(WidgetIndex widgetIndex) override
{
if (gIntroState != IntroState::None)
return;
switch (widgetIndex)
{
case WIDX_EXIT:
ContextQuit();
// game_do_command(0, 1, 0, 0, 5, 3, 0);
break;
};
}
void OnDraw(rct_drawpixelinfo& dpi) override
{
DrawWidgets(dpi);
}
};
/**
* Creates the window containing the exit button on the title screen.
* rct2: 0x0066B624 (part of 0x0066B3E8)
*/
rct_window* WindowTitleExitOpen()
{
return WindowCreate<TitleExitWindow>(
WindowClass::TitleExit, ScreenCoordsXY(ContextGetWidth() - 40, ContextGetHeight() - 64), 40, 64,
WF_STICK_TO_BACK | WF_TRANSPARENT);
}