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

493 lines
16 KiB
C++
Raw Normal View History

/*****************************************************************************
2020-07-21 15:04:34 +02:00
* Copyright (c) 2014-2020 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.
*****************************************************************************/
2018-06-22 23:21:44 +02:00
#include "../interface/Theme.h"
2017-08-02 00:20:32 +02:00
2018-06-22 23:21:44 +02:00
#include <openrct2-ui/interface/Widget.h>
#include <openrct2-ui/windows/Window.h>
#include <openrct2/Context.h>
#include <openrct2/Editor.h>
#include <openrct2/EditorObjectSelectionSession.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/Game.h>
2017-12-12 14:52:57 +01:00
#include <openrct2/Input.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/OpenRCT2.h>
#include <openrct2/audio/audio.h>
2018-01-06 18:32:25 +01:00
#include <openrct2/localisation/Localisation.h>
2018-03-19 23:28:40 +01:00
#include <openrct2/management/Research.h>
#include <openrct2/scenario/Scenario.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/sprites.h>
#include <openrct2/windows/Intent.h>
2018-03-19 23:28:40 +01:00
#include <openrct2/world/Park.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/world/Scenery.h>
#include <string>
// clang-format off
2015-02-09 19:32:58 +01:00
enum {
WIDX_PREVIOUS_IMAGE, // 1
WIDX_PREVIOUS_STEP_BUTTON, // 2
WIDX_NEXT_IMAGE, // 4
WIDX_NEXT_STEP_BUTTON, // 8
};
static rct_widget window_editor_bottom_toolbar_widgets[] = {
MakeWidget({ 0, 0}, {200, 34}, WindowWidgetType::ImgBtn, WindowColour::Primary),
MakeWidget({ 2, 2}, {196, 30}, WindowWidgetType::FlatBtn, WindowColour::Primary),
MakeWidget({440, 0}, {200, 34}, WindowWidgetType::ImgBtn, WindowColour::Primary),
MakeWidget({442, 2}, {196, 30}, WindowWidgetType::FlatBtn, WindowColour::Primary),
2021-09-26 11:11:42 +02:00
WIDGETS_END,
};
static void WindowEditorBottomToolbarMouseup(rct_window *w, rct_widgetindex widgetIndex);
static void WindowEditorBottomToolbarInvalidate(rct_window *w);
static void WindowEditorBottomToolbarPaint(rct_window *w, rct_drawpixelinfo *dpi);
static void WindowEditorBottomToolbarJumpBackToObjectSelection();
static void WindowEditorBottomToolbarJumpBackToLandscapeEditor();
static void WindowEditorBottomToolbarJumpBackToInventionListSetUp();
static void WindowEditorBottomToolbarJumpBackToOptionsSelection();
static void WindowEditorBottomToolbarJumpForwardFromObjectSelection();
static void WindowEditorBottomToolbarJumpForwardToInventionListSetUp();
static void WindowEditorBottomToolbarJumpForwardToOptionsSelection();
static void WindowEditorBottomToolbarJumpForwardToObjectiveSelection();
static void WindowEditorBottomToolbarJumpForwardToSaveScenario();
static rct_window_event_list window_editor_bottom_toolbar_events([](auto& events)
{
events.mouse_up = &WindowEditorBottomToolbarMouseup;
events.invalidate = &WindowEditorBottomToolbarInvalidate;
events.paint = &WindowEditorBottomToolbarPaint;
});
static EMPTY_ARGS_VOID_POINTER *previous_button_mouseup_events[] = {
2017-08-15 10:07:44 +02:00
nullptr,
WindowEditorBottomToolbarJumpBackToObjectSelection,
WindowEditorBottomToolbarJumpBackToLandscapeEditor,
WindowEditorBottomToolbarJumpBackToInventionListSetUp,
WindowEditorBottomToolbarJumpBackToOptionsSelection,
2017-08-15 10:07:44 +02:00
nullptr,
WindowEditorBottomToolbarJumpBackToObjectSelection,
nullptr,
};
static EMPTY_ARGS_VOID_POINTER *next_button_mouseup_events[] = {
WindowEditorBottomToolbarJumpForwardFromObjectSelection,
WindowEditorBottomToolbarJumpForwardToInventionListSetUp,
WindowEditorBottomToolbarJumpForwardToOptionsSelection,
WindowEditorBottomToolbarJumpForwardToObjectiveSelection,
WindowEditorBottomToolbarJumpForwardToSaveScenario,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
};
static constexpr const rct_string_id EditorStepNames[] = {
STR_EDITOR_STEP_OBJECT_SELECTION,
STR_EDITOR_STEP_LANDSCAPE_EDITOR,
STR_EDITOR_STEP_INVENTIONS_LIST_SET_UP,
STR_EDITOR_STEP_OPTIONS_SELECTION,
STR_EDITOR_STEP_OBJECTIVE_SELECTION,
STR_EDITOR_STEP_SAVE_SCENARIO,
STR_EDITOR_STEP_ROLLERCOASTER_DESIGNER,
STR_EDITOR_STEP_TRACK_DESIGNS_MANAGER,
};
// clang-format on
/**
2018-06-22 23:21:44 +02:00
* Creates the main editor top toolbar window.
* rct2: 0x0066F052 (part of 0x0066EF38)
*/
rct_window* WindowEditorBottomToolbarOpen()
{
rct_window* window = WindowCreate(
ScreenCoordsXY(0, context_get_height() - 32), context_get_width(), 32, &window_editor_bottom_toolbar_events,
WC_BOTTOM_TOOLBAR, WF_STICK_TO_FRONT | WF_TRANSPARENT | WF_NO_BACKGROUND);
window->widgets = window_editor_bottom_toolbar_widgets;
WindowInitScrollWidgets(window);
set_all_scenery_items_invented();
return window;
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F619
*/
void WindowEditorBottomToolbarJumpBackToObjectSelection()
2018-06-22 23:21:44 +02:00
{
window_close_all();
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::ObjectSelection;
gfx_invalidate_screen();
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F62C
*/
void WindowEditorBottomToolbarJumpBackToLandscapeEditor()
2018-06-22 23:21:44 +02:00
{
window_close_all();
set_all_scenery_items_invented();
scenery_set_default_placement_configuration();
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::LandscapeEditor;
2017-10-06 23:03:48 +02:00
context_open_window(WC_MAP);
gfx_invalidate_screen();
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F64E
*/
static void WindowEditorBottomToolbarJumpBackToInventionListSetUp()
2018-06-22 23:21:44 +02:00
{
window_close_all();
2017-08-12 23:06:12 +02:00
context_open_window(WC_EDITOR_INVENTION_LIST);
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::InventionsListSetUp;
gfx_invalidate_screen();
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F666
*/
void WindowEditorBottomToolbarJumpBackToOptionsSelection()
2018-06-22 23:21:44 +02:00
{
window_close_all();
2017-08-12 23:06:12 +02:00
context_open_window(WC_EDITOR_SCENARIO_OPTIONS);
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::OptionsSelection;
gfx_invalidate_screen();
}
/**
*
* rct2: 0x006AB1CE
*/
static bool WindowEditorBottomToolbarCheckObjectSelection()
2015-07-05 17:47:22 +02:00
{
2018-06-22 23:21:44 +02:00
rct_window* w;
auto [missingObjectType, errorString] = Editor::CheckObjectSelection();
if (missingObjectType == ObjectType::None)
2018-06-22 23:21:44 +02:00
{
window_close_by_class(WC_EDITOR_OBJECT_SELECTION);
return true;
}
context_show_error(STR_INVALID_SELECTION_OF_OBJECTS, errorString, {});
w = window_find_by_class(WC_EDITOR_OBJECT_SELECTION);
2018-06-22 23:21:44 +02:00
if (w != nullptr)
{
// Click tab with missing object
window_event_mouse_up_call(w, WC_EDITOR_OBJECT_SELECTION__WIDX_TAB_1 + EnumValue(missingObjectType));
}
return false;
2015-07-05 17:47:22 +02:00
}
/**
*
* rct2: 0x0066F6B0
*/
void WindowEditorBottomToolbarJumpForwardFromObjectSelection()
{
if (!WindowEditorBottomToolbarCheckObjectSelection())
return;
finish_object_selection();
2018-06-22 23:21:44 +02:00
if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER)
{
2017-10-07 01:28:00 +02:00
context_open_window(WC_CONSTRUCT_RIDE);
2018-06-22 23:21:44 +02:00
}
else
{
2017-10-06 23:03:48 +02:00
context_open_window(WC_MAP);
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F758
*/
void WindowEditorBottomToolbarJumpForwardToInventionListSetUp()
{
auto [checksPassed, errorString] = Editor::CheckPark();
if (checksPassed)
{
window_close_all();
2017-08-12 23:06:12 +02:00
context_open_window(WC_EDITOR_INVENTION_LIST);
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::InventionsListSetUp;
}
else
{
context_show_error(STR_CANT_ADVANCE_TO_NEXT_EDITOR_STAGE, errorString, {});
}
gfx_invalidate_screen();
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066f790
*/
void WindowEditorBottomToolbarJumpForwardToOptionsSelection()
{
window_close_all();
2017-08-12 23:06:12 +02:00
context_open_window(WC_EDITOR_SCENARIO_OPTIONS);
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::OptionsSelection;
gfx_invalidate_screen();
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066f7a8
*/
void WindowEditorBottomToolbarJumpForwardToObjectiveSelection()
2018-06-22 23:21:44 +02:00
{
window_close_all();
context_open_window(WC_EDITOR_OBJECTIVE_OPTIONS);
2021-04-05 19:01:43 +02:00
gEditorStep = EditorStep::ObjectiveSelection;
gfx_invalidate_screen();
}
/**
*
* rct2: 0x0066F7C0
*/
void WindowEditorBottomToolbarJumpForwardToSaveScenario()
{
2018-06-22 23:21:44 +02:00
if (!scenario_prepare_for_save())
{
context_show_error(STR_UNABLE_TO_SAVE_SCENARIO_FILE, gGameCommandErrorText, {});
gfx_invalidate_screen();
return;
}
window_close_all();
2017-09-12 00:04:03 +02:00
auto intent = Intent(WC_LOADSAVE);
2017-09-12 21:21:39 +02:00
intent.putExtra(INTENT_EXTRA_LOADSAVE_TYPE, LOADSAVETYPE_SAVE | LOADSAVETYPE_SCENARIO);
2021-04-05 19:01:43 +02:00
intent.putExtra(INTENT_EXTRA_PATH, gScenarioName);
2017-09-12 00:04:03 +02:00
context_open_intent(&intent);
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F5AE
*/
static void WindowEditorBottomToolbarMouseup([[maybe_unused]] rct_window* w, rct_widgetindex widgetIndex)
{
2018-06-22 23:21:44 +02:00
if (widgetIndex == WIDX_PREVIOUS_STEP_BUTTON)
{
if ((gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER)
|| (GetNumFreeEntities() == MAX_ENTITIES && !(gParkFlags & PARK_FLAGS_SPRITES_INITIALISED)))
2018-06-22 23:21:44 +02:00
{
2021-04-05 19:01:43 +02:00
previous_button_mouseup_events[EnumValue(gEditorStep)]();
}
2018-06-22 23:21:44 +02:00
}
else if (widgetIndex == WIDX_NEXT_STEP_BUTTON)
{
2021-04-05 19:01:43 +02:00
next_button_mouseup_events[EnumValue(gEditorStep)]();
}
}
static void HidePreviousStepButton()
2018-06-22 23:21:44 +02:00
{
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_STEP_BUTTON].type = WindowWidgetType::Empty;
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].type = WindowWidgetType::Empty;
}
static void HideNextStepButton()
2018-06-22 23:21:44 +02:00
{
window_editor_bottom_toolbar_widgets[WIDX_NEXT_STEP_BUTTON].type = WindowWidgetType::Empty;
window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].type = WindowWidgetType::Empty;
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F1C9
*/
void WindowEditorBottomToolbarInvalidate(rct_window* w)
{
ColourSchemeUpdateByClass(
2018-06-22 23:21:44 +02:00
w, (gScreenFlags & SCREEN_FLAGS_SCENARIO_EDITOR) ? WC_EDITOR_SCENARIO_BOTTOM_TOOLBAR : WC_EDITOR_TRACK_BOTTOM_TOOLBAR);
uint16_t screenWidth = context_get_width();
window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].left = screenWidth - 200;
window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].right = screenWidth - 1;
window_editor_bottom_toolbar_widgets[WIDX_NEXT_STEP_BUTTON].left = screenWidth - 198;
window_editor_bottom_toolbar_widgets[WIDX_NEXT_STEP_BUTTON].right = screenWidth - 3;
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_STEP_BUTTON].type = WindowWidgetType::FlatBtn;
window_editor_bottom_toolbar_widgets[WIDX_NEXT_STEP_BUTTON].type = WindowWidgetType::FlatBtn;
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].type = WindowWidgetType::ImgBtn;
window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].type = WindowWidgetType::ImgBtn;
2018-06-22 23:21:44 +02:00
if (gScreenFlags & SCREEN_FLAGS_TRACK_MANAGER)
{
HidePreviousStepButton();
HideNextStepButton();
2018-06-22 23:21:44 +02:00
}
else
{
2021-04-05 19:01:43 +02:00
if (gEditorStep == EditorStep::ObjectSelection)
2018-06-22 23:21:44 +02:00
{
HidePreviousStepButton();
2018-06-22 23:21:44 +02:00
}
2021-04-05 19:01:43 +02:00
else if (gEditorStep == EditorStep::RollercoasterDesigner)
2018-06-22 23:21:44 +02:00
{
HideNextStepButton();
2018-06-22 23:21:44 +02:00
}
else if (!(gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER))
{
if (GetNumFreeEntities() != MAX_ENTITIES || gParkFlags & PARK_FLAGS_SPRITES_INITIALISED)
2018-06-22 23:21:44 +02:00
{
HidePreviousStepButton();
}
}
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066F25C
*/
void WindowEditorBottomToolbarPaint(rct_window* w, rct_drawpixelinfo* dpi)
{
bool drawPreviousButton = false;
bool drawNextButton = false;
2021-04-05 19:01:43 +02:00
if (gEditorStep == EditorStep::ObjectSelection)
2018-06-22 23:21:44 +02:00
{
drawNextButton = true;
}
2018-06-22 23:21:44 +02:00
else if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER)
{
drawPreviousButton = true;
}
else if (GetNumFreeEntities() != MAX_ENTITIES)
2018-06-22 23:21:44 +02:00
{
drawNextButton = true;
}
2018-06-22 23:21:44 +02:00
else if (gParkFlags & PARK_FLAGS_SPRITES_INITIALISED)
{
drawNextButton = true;
}
2018-06-22 23:21:44 +02:00
else
{
drawPreviousButton = true;
}
2018-06-22 23:21:44 +02:00
if (!(gScreenFlags & SCREEN_FLAGS_TRACK_MANAGER))
{
auto previousWidget = window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE];
auto nextWidget = window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE];
2018-06-22 23:21:44 +02:00
if (drawPreviousButton)
{
auto leftTop = w->windowPos + ScreenCoordsXY{ previousWidget.left, previousWidget.top };
auto rightBottom = w->windowPos + ScreenCoordsXY{ previousWidget.right, previousWidget.bottom };
gfx_filter_rect(dpi, { leftTop, rightBottom }, FilterPaletteID::Palette51);
}
2021-04-05 19:01:43 +02:00
if ((drawPreviousButton || drawNextButton) && gEditorStep != EditorStep::RollercoasterDesigner)
2018-06-22 23:21:44 +02:00
{
auto leftTop = w->windowPos + ScreenCoordsXY{ nextWidget.left, nextWidget.top };
auto rightBottom = w->windowPos + ScreenCoordsXY{ nextWidget.right, nextWidget.bottom };
gfx_filter_rect(dpi, { leftTop, rightBottom }, FilterPaletteID::Palette51);
}
}
WindowDrawWidgets(w, dpi);
2018-06-22 23:21:44 +02:00
if (!(gScreenFlags & SCREEN_FLAGS_TRACK_MANAGER))
{
const auto topLeft = w->windowPos
+ ScreenCoordsXY{ window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].left + 1,
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].top + 1 };
const auto bottomRight = w->windowPos
+ ScreenCoordsXY{ window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].right - 1,
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].bottom - 1 };
2018-06-22 23:21:44 +02:00
if (drawPreviousButton)
{
gfx_fill_rect_inset(dpi, { topLeft, bottomRight }, w->colours[1], INSET_RECT_F_30);
}
2021-04-05 19:01:43 +02:00
if ((drawPreviousButton || drawNextButton) && gEditorStep != EditorStep::RollercoasterDesigner)
2018-06-22 23:21:44 +02:00
{
gfx_fill_rect_inset(dpi, { topLeft, bottomRight }, w->colours[1], INSET_RECT_F_30);
}
2018-06-22 23:21:44 +02:00
int16_t stateX = (window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].right
+ window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].left)
/ 2
2020-03-01 20:32:35 +01:00
+ w->windowPos.x;
int16_t stateY = w->height - 0x0C + w->windowPos.y;
DrawTextBasic(
2021-04-05 19:01:43 +02:00
dpi, { stateX, stateY }, EditorStepNames[EnumValue(gEditorStep)], {},
{ static_cast<colour_t>(NOT_TRANSLUCENT(w->colours[2]) | COLOUR_FLAG_OUTLINE), TextAlignment::CENTRE });
2018-06-22 23:21:44 +02:00
if (drawPreviousButton)
{
gfx_draw_sprite(
dpi, ImageId(SPR_PREVIOUS),
w->windowPos
+ ScreenCoordsXY{ window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].left + 6,
window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].top + 6 });
colour_t textColour = NOT_TRANSLUCENT(w->colours[1]);
2018-06-22 23:21:44 +02:00
if (gHoverWidget.window_classification == WC_BOTTOM_TOOLBAR
&& gHoverWidget.widget_index == WIDX_PREVIOUS_STEP_BUTTON)
{
textColour = COLOUR_WHITE;
}
2018-06-22 23:21:44 +02:00
int16_t textX = (window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].left + 30
+ window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].right)
/ 2
2020-03-01 20:32:35 +01:00
+ w->windowPos.x;
int16_t textY = window_editor_bottom_toolbar_widgets[WIDX_PREVIOUS_IMAGE].top + 6 + w->windowPos.y;
2021-04-05 19:01:43 +02:00
rct_string_id stringId = EditorStepNames[EnumValue(gEditorStep) - 1];
if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER)
stringId = STR_EDITOR_STEP_OBJECT_SELECTION;
DrawTextBasic(dpi, { textX, textY }, STR_BACK_TO_PREVIOUS_STEP, {}, { textColour, TextAlignment::CENTRE });
DrawTextBasic(dpi, { textX, textY + 10 }, stringId, {}, { textColour, TextAlignment::CENTRE });
}
2021-04-05 19:01:43 +02:00
if ((drawPreviousButton || drawNextButton) && gEditorStep != EditorStep::RollercoasterDesigner)
2018-06-22 23:21:44 +02:00
{
gfx_draw_sprite(
dpi, ImageId(SPR_NEXT),
w->windowPos
+ ScreenCoordsXY{ window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].right - 29,
window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].top + 6 });
colour_t textColour = NOT_TRANSLUCENT(w->colours[1]);
2018-06-22 23:21:44 +02:00
if (gHoverWidget.window_classification == WC_BOTTOM_TOOLBAR && gHoverWidget.widget_index == WIDX_NEXT_STEP_BUTTON)
{
textColour = COLOUR_WHITE;
}
2018-06-22 23:21:44 +02:00
int16_t textX = (window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].left
+ window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].right - 30)
/ 2
2020-03-01 20:32:35 +01:00
+ w->windowPos.x;
int16_t textY = window_editor_bottom_toolbar_widgets[WIDX_NEXT_IMAGE].top + 6 + w->windowPos.y;
2021-04-05 19:01:43 +02:00
rct_string_id stringId = EditorStepNames[EnumValue(gEditorStep) + 1];
if (gScreenFlags & SCREEN_FLAGS_TRACK_DESIGNER)
stringId = STR_EDITOR_STEP_ROLLERCOASTER_DESIGNER;
DrawTextBasic(dpi, { textX, textY }, STR_FORWARD_TO_NEXT_STEP, {}, { textColour, TextAlignment::CENTRE });
DrawTextBasic(dpi, { textX, textY + 10 }, stringId, {}, { textColour, TextAlignment::CENTRE });
}
}
2015-09-07 00:46:54 +02:00
}