OpenRCT2/src/openrct2/windows/TitleExit.cpp

124 lines
2.7 KiB
C++
Raw Normal View History

#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
/*****************************************************************************
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
*
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* A full copy of the GNU General Public License can be found in licence.txt
*****************************************************************************/
#pragma endregion
2017-02-18 16:45:10 +01:00
#include "../config/Config.h"
#include "../Context.h"
2017-08-02 00:20:32 +02:00
extern "C"
{
2014-10-06 18:36:58 +02:00
#include "../sprites.h"
2017-08-02 00:20:32 +02:00
#include "../localisation/localisation.h"
#include "../interface/widget.h"
#include "../intro.h"
2017-08-02 00:20:32 +02:00
}
enum WINDOW_TITLE_EXIT_WIDGET_IDX {
WIDX_EXIT,
};
static rct_widget window_title_exit_widgets[] = {
{ WWT_IMGBTN, 2, 0, 39, 0, 63, SPR_MENU_EXIT, STR_EXIT },
{ WIDGETS_END },
};
static void window_title_exit_paint(rct_window *w, rct_drawpixelinfo *dpi);
2017-05-01 15:41:45 +02:00
static void window_title_exit_mouseup(rct_window *w, rct_widgetindex widgetIndex);
static rct_window_event_list window_title_exit_events = {
NULL,
window_title_exit_mouseup,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
window_title_exit_paint,
NULL
};
/**
* Creates the window containing the exit button on the title screen.
* rct2: 0x0066B624 (part of 0x0066B3E8)
*/
2017-08-02 00:20:32 +02:00
static void _window_title_exit_open()
{
rct_window* window;
window = window_create(
context_get_width() - 40, context_get_height() - 64,
40, 64,
&window_title_exit_events,
WC_TITLE_EXIT,
WF_STICK_TO_BACK | WF_TRANSPARENT
);
window->widgets = window_title_exit_widgets;
window->enabled_widgets |= (1ULL << WIDX_EXIT);
window_init_scroll_widgets(window);
}
/**
*
* rct2: 0x0066B83C
*/
2017-05-01 15:41:45 +02:00
static void window_title_exit_mouseup(rct_window *w, rct_widgetindex widgetIndex)
{
if (gIntroState != INTRO_STATE_NONE)
return;
switch (widgetIndex) {
case WIDX_EXIT:
2017-07-28 19:43:48 +02:00
context_quit();
//game_do_command(0, 1, 0, 0, 5, 3, 0);
break;
};
}
/**
2015-10-20 20:16:30 +02:00
*
* rct2: 0x0066B836
*/
static void window_title_exit_paint(rct_window *w, rct_drawpixelinfo *dpi)
{
window_draw_widgets(w, dpi);
}
2017-08-02 00:20:32 +02:00
extern "C"
{
void window_title_exit_open()
{
_window_title_exit_open();
}
}