OpenRCT2/src/openrct2/windows/demolish_ride_prompt.c

142 lines
3.6 KiB
C
Raw Normal View History

#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers
2014-11-02 09:39:01 +01:00
/*****************************************************************************
* 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
2014-11-02 09:39:01 +01:00
#include "../game.h"
#include "../interface/widget.h"
#include "../interface/window.h"
#include "../localisation/localisation.h"
#include "../peep/peep.h"
#include "../peep/staff.h"
#include "../sprites.h"
#include "../world/sprite.h"
#include "../interface/themes.h"
2014-11-02 09:39:01 +01:00
#define WW 200
#define WH 100
enum WINDOW_RIDE_DEMOLISH_WIDGET_IDX {
WIDX_BACKGROUND,
WIDX_TITLE,
WIDX_CLOSE,
WIDX_DEMOLISH,
WIDX_CANCEL
};
// 0x009AEBA0
static rct_widget window_ride_demolish_widgets[] = {
{ WWT_FRAME, 0, 0, WW - 1, 0, WH - 1, STR_NONE, STR_NONE },
{ WWT_CAPTION, 0, 1, WW - 2, 1, 14, STR_DEMOLISH_RIDE, STR_WINDOW_TITLE_TIP },
{ WWT_CLOSEBOX, 0, WW - 13, WW - 3, 2, 13, STR_CLOSE_X, STR_CLOSE_WINDOW_TIP },
{ WWT_DROPDOWN_BUTTON, 0, 10, 94, WH - 20, WH - 9, STR_DEMOLISH, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 0, WW - 95, WW - 11, WH - 20, WH - 9, STR_SAVE_PROMPT_CANCEL, STR_NONE },
{ WIDGETS_END }
2014-11-02 09:39:01 +01:00
};
2017-01-04 22:17:08 +01:00
static void window_ride_demolish_mouseup(rct_window *w, sint32 widgetIndex);
static void window_ride_demolish_invalidate(rct_window *w);
static void window_ride_demolish_paint(rct_window *w, rct_drawpixelinfo *dpi);
2014-11-02 09:39:01 +01:00
//0x0098E2E4
static rct_window_event_list window_ride_demolish_events = {
NULL,
2014-11-02 09:39:01 +01:00
window_ride_demolish_mouseup,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
window_ride_demolish_invalidate,
2014-11-02 09:39:01 +01:00
window_ride_demolish_paint,
NULL
2014-11-02 09:39:01 +01:00
};
/** Based off of rct2: 0x006B486A */
2017-01-04 22:17:08 +01:00
void window_ride_demolish_prompt_open(sint32 rideIndex)
{
2014-11-02 09:39:01 +01:00
rct_window *w;
w = window_bring_to_front_by_number(WC_DEMOLISH_RIDE_PROMPT, rideIndex);
if (w != NULL)
return;
w = window_create_centred(WW, WH, &window_ride_demolish_events, WC_DEMOLISH_RIDE_PROMPT, WF_TRANSPARENT);
2014-11-02 09:39:01 +01:00
w->widgets = window_ride_demolish_widgets;
w->enabled_widgets = (1 << WIDX_CLOSE) | (1 << WIDX_CANCEL) | (1 << WIDX_DEMOLISH);
window_init_scroll_widgets(w);
w->number = rideIndex;
}
/**
*
* rct2: 0x006B4933
*/
2017-01-04 22:17:08 +01:00
static void window_ride_demolish_mouseup(rct_window *w, sint32 widgetIndex)
{
switch (widgetIndex) {
2014-11-02 09:39:01 +01:00
case WIDX_DEMOLISH:
gGameCommandErrorTitle = STR_CANT_DEMOLISH_RIDE;
game_do_command(0, 1, 0, w->number, GAME_COMMAND_DEMOLISH_RIDE, 0, 0);
2014-11-02 09:39:01 +01:00
break;
case WIDX_CANCEL:
case WIDX_CLOSE:
window_close(w);
break;
2014-11-02 09:39:01 +01:00
}
}
static void window_ride_demolish_invalidate(rct_window *w)
{
colour_scheme_update(w);
}
2014-11-02 09:39:01 +01:00
/**
*
* rct2: 0x006B48E5
*/
static void window_ride_demolish_paint(rct_window *w, rct_drawpixelinfo *dpi)
{
2014-11-02 09:39:01 +01:00
window_draw_widgets(w, dpi);
rct_ride* ride = get_ride(w->number);
2014-11-02 09:39:01 +01:00
set_format_arg(0, rct_string_id, ride->name);
2016-05-15 23:03:53 +02:00
set_format_arg(2, uint32, ride->name_arguments);
2014-11-02 09:39:01 +01:00
2017-01-04 22:17:08 +01:00
sint32 x = w->x + WW / 2;
sint32 y = w->y + (WH / 2) - 3;
2014-11-02 09:39:01 +01:00
2016-11-13 18:20:30 +01:00
gfx_draw_string_centred_wrapped(dpi, gCommonFormatArgs, x, y, WW - 4, STR_DEMOLISH_RIDE_ID, COLOUR_BLACK);
2014-11-02 09:39:01 +01:00
}