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

326 lines
8.9 KiB
C++
Raw Normal View History

#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
2014-09-28 00:48:42 +02: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
2014-09-28 00:48:42 +02:00
*
* 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
2014-09-28 00:48:42 +02:00
*****************************************************************************/
#pragma endregion
2014-09-28 00:48:42 +02:00
2017-09-12 21:27:54 +02:00
#include <openrct2/Context.h>
#include <openrct2/ride/TrackDesignRepository.h>
#include <openrct2/core/Math.hpp>
#include <openrct2-ui/windows/Window.h>
2017-08-02 00:20:32 +02:00
2017-09-12 21:27:54 +02:00
#include <openrct2/interface/widget.h>
#include <openrct2/localisation/localisation.h>
2017-12-13 13:02:24 +01:00
#include <openrct2/util/Util.h>
#pragma region Widgets
enum {
WIDX_BACKGROUND,
WIDX_TITLE,
WIDX_CLOSE,
WIDX_RENAME,
WIDX_DELETE,
WIDX_PROMPT_DELETE = 3,
WIDX_PROMPT_CANCEL = 4,
};
static rct_widget window_track_manage_widgets[] = {
{ WWT_FRAME, 0, 0, 249, 0, 43, STR_NONE, STR_NONE },
{ WWT_CAPTION, 0, 1, 248, 1, 14, STR_STRING, STR_WINDOW_TITLE_TIP },
{ WWT_CLOSEBOX, 0, 237, 247, 2, 13, STR_CLOSE_X, STR_CLOSE_WINDOW_TIP },
{ WWT_DROPDOWN_BUTTON, 0, 10, 119, 24, 35, STR_TRACK_MANAGE_RENAME, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 0, 130, 239, 24, 35, STR_TRACK_MANAGE_DELETE, STR_NONE },
{ WIDGETS_END }
};
static rct_widget window_track_delete_prompt_widgets[] = {
{ WWT_FRAME, 0, 0, 249, 0, 73, STR_NONE, STR_NONE },
{ WWT_CAPTION, 0, 1, 248, 1, 14, STR_DELETE_FILE, STR_WINDOW_TITLE_TIP },
{ WWT_CLOSEBOX, 0, 237, 247, 2, 13, STR_CLOSE_X, STR_CLOSE_WINDOW_TIP },
{ WWT_DROPDOWN_BUTTON, 0, 10, 119, 54, 65, STR_TRACK_MANAGE_DELETE, STR_NONE },
{ WWT_DROPDOWN_BUTTON, 0, 130, 239, 54, 65, STR_CANCEL, STR_NONE },
{ WIDGETS_END }
};
#pragma endregion
#pragma region Events
static void window_track_manage_close(rct_window *w);
2017-05-01 15:41:45 +02:00
static void window_track_manage_mouseup(rct_window *w, rct_widgetindex widgetIndex);
static void window_track_manage_textinput(rct_window *w, rct_widgetindex widgetIndex, char *text);
static void window_track_manage_paint(rct_window *w, rct_drawpixelinfo *dpi);
2017-05-01 15:41:45 +02:00
static void window_track_delete_prompt_mouseup(rct_window *w, rct_widgetindex widgetIndex);
static void window_track_delete_prompt_paint(rct_window *w, rct_drawpixelinfo *dpi);
// 0x009940EC
static rct_window_event_list window_track_manage_events = {
window_track_manage_close,
window_track_manage_mouseup,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
window_track_manage_textinput,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
window_track_manage_paint,
2017-08-15 10:07:44 +02:00
nullptr
};
// 0x0099415C
static rct_window_event_list window_track_delete_prompt_events = {
2017-08-15 10:07:44 +02:00
nullptr,
window_track_delete_prompt_mouseup,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
window_track_delete_prompt_paint,
2017-08-15 10:07:44 +02:00
nullptr
};
#pragma endregion
2016-05-01 22:58:02 +02:00
static track_design_file_ref *_trackDesignFileReference;
static void window_track_delete_prompt_open();
2016-10-23 01:42:22 +02:00
static void window_track_design_list_reload_tracks();
2014-09-28 00:48:42 +02:00
/**
*
* rct2: 0x006D348F
*/
2017-09-20 00:13:19 +02:00
rct_window * window_track_manage_open(track_design_file_ref *tdFileRef)
2014-09-28 00:48:42 +02:00
{
window_close_by_class(WC_MANAGE_TRACK_DESIGN);
rct_window *w = window_create_centred(
250,
44,
&window_track_manage_events,
WC_MANAGE_TRACK_DESIGN,
WF_STICK_TO_FRONT | WF_TRANSPARENT
);
w->widgets = window_track_manage_widgets;
w->enabled_widgets =
(1 << WIDX_CLOSE) |
(1 << WIDX_RENAME) |
(1 << WIDX_DELETE);
window_init_scroll_widgets(w);
rct_window *trackDesignListWindow = window_find_by_class(WC_TRACK_DESIGN_LIST);
2017-08-15 10:07:44 +02:00
if (trackDesignListWindow != nullptr) {
trackDesignListWindow->track_list.track_list_being_updated = true;
}
_trackDesignFileReference = tdFileRef;
2017-09-20 00:13:19 +02:00
return w;
}
/**
*
* rct2: 0x006D364C
*/
static void window_track_manage_close(rct_window *w)
{
rct_window *trackDesignListWindow = window_find_by_class(WC_TRACK_DESIGN_LIST);
2017-08-15 10:07:44 +02:00
if (trackDesignListWindow != nullptr) {
trackDesignListWindow->track_list.track_list_being_updated = false;
}
}
/**
*
* rct2: 0x006D3523
*/
2017-05-01 15:41:45 +02:00
static void window_track_manage_mouseup(rct_window *w, rct_widgetindex widgetIndex)
{
switch (widgetIndex) {
case WIDX_CLOSE:
window_close(w);
break;
case WIDX_RENAME:
window_text_input_raw_open(
w,
widgetIndex,
STR_TRACK_DESIGN_RENAME_TITLE,
STR_TRACK_DESIGN_RENAME_DESC,
_trackDesignFileReference->name,
127
);
break;
case WIDX_DELETE:
window_track_delete_prompt_open();
break;
}
}
/**
*
* rct2: 0x006D3523
*/
2017-05-01 15:41:45 +02:00
static void window_track_manage_textinput(rct_window *w, rct_widgetindex widgetIndex, char *text)
{
if (widgetIndex != WIDX_RENAME || str_is_null_or_empty(text)) {
return;
}
if (str_is_null_or_empty(text)) {
context_show_error(STR_CANT_RENAME_TRACK_DESIGN, STR_NONE);
return;
}
if (!filename_valid_characters(text)) {
context_show_error(STR_CANT_RENAME_TRACK_DESIGN, STR_NEW_NAME_CONTAINS_INVALID_CHARACTERS);
return;
}
if (track_repository_rename(_trackDesignFileReference->path, text)) {
window_close_by_class(WC_TRACK_DELETE_PROMPT);
window_close(w);
window_track_design_list_reload_tracks();
} else {
context_show_error(STR_CANT_RENAME_TRACK_DESIGN, STR_ANOTHER_FILE_EXISTS_WITH_NAME_OR_FILE_IS_WRITE_PROTECTED);
}
}
/**
*
* rct2: 0x006D3523
*/
static void window_track_manage_paint(rct_window *w, rct_drawpixelinfo *dpi)
{
set_format_arg(0, char *, _trackDesignFileReference->name);
window_draw_widgets(w, dpi);
}
/**
*
* rct2: 0x006D35CD
*/
static void window_track_delete_prompt_open()
{
window_close_by_class(WC_TRACK_DELETE_PROMPT);
sint32 screenWidth = context_get_width();
sint32 screenHeight = context_get_height();
rct_window *w = window_create(
2017-08-02 00:20:32 +02:00
Math::Max(TOP_TOOLBAR_HEIGHT + 1, (screenWidth - 250) / 2),
(screenHeight - 44) / 2,
250,
74,
&window_track_delete_prompt_events,
WC_TRACK_DELETE_PROMPT,
WF_STICK_TO_FRONT
);
w->widgets = window_track_delete_prompt_widgets;
w->enabled_widgets =
(1 << WIDX_CLOSE) |
(1 << WIDX_RENAME) |
(1 << WIDX_DELETE);
window_init_scroll_widgets(w);
w->flags |= WF_TRANSPARENT;
}
/**
*
* rct2: 0x006D3823
*/
2017-05-01 15:41:45 +02:00
static void window_track_delete_prompt_mouseup(rct_window *w, rct_widgetindex widgetIndex)
{
switch (widgetIndex) {
case WIDX_CLOSE:
case WIDX_PROMPT_CANCEL:
window_close(w);
break;
case WIDX_PROMPT_DELETE:
window_close(w);
if (track_repository_delete(_trackDesignFileReference->path)) {
window_close_by_class(WC_MANAGE_TRACK_DESIGN);
window_track_design_list_reload_tracks();
} else {
context_show_error(STR_CANT_DELETE_TRACK_DESIGN, STR_FILE_IS_WRITE_PROTECTED_OR_LOCKED);
}
break;
}
}
/**
*
* rct2: 0x006D37EE
*/
static void window_track_delete_prompt_paint(rct_window *w, rct_drawpixelinfo *dpi)
{
window_draw_widgets(w, dpi);
gfx_draw_string_centred_wrapped(
dpi,
&_trackDesignFileReference->name,
w->x + 125,
w->y + 28,
246,
STR_ARE_YOU_SURE_YOU_WANT_TO_PERMANENTLY_DELETE_TRACK,
COLOUR_BLACK
);
2015-12-06 18:22:33 +01:00
}
2016-10-23 01:42:22 +02:00
static void window_track_design_list_reload_tracks()
{
rct_window * trackListWindow = window_find_by_class(WC_TRACK_DESIGN_LIST);
2017-08-15 10:07:44 +02:00
if (trackListWindow != nullptr) {
trackListWindow->track_list.reload_track_designs = true;
}
2016-10-23 01:42:22 +02:00
}