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

2168 lines
64 KiB
C++
Raw Normal View History

2014-06-24 23:12:26 +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.
*****************************************************************************/
2014-06-24 23:12:26 +02:00
2018-06-22 23:21:44 +02:00
#include <openrct2-ui/interface/Viewport.h>
#include <openrct2-ui/interface/Widget.h>
2017-10-06 23:21:00 +02:00
#include <openrct2-ui/windows/Window.h>
2017-10-22 01:22:08 +02:00
#include <openrct2/Context.h>
2017-11-30 18:17:06 +01:00
#include <openrct2/Game.h>
#include <openrct2/GameState.h>
2017-12-12 14:52:57 +01:00
#include <openrct2/Input.h>
#include <openrct2/actions/GuestSetFlagsAction.hpp>
#include <openrct2/actions/PeepPickupAction.hpp>
2018-06-22 23:21:44 +02:00
#include <openrct2/config/Config.h>
2018-01-06 18:32:25 +01:00
#include <openrct2/localisation/Localisation.h>
2017-10-11 21:38:26 +02:00
#include <openrct2/management/Marketing.h>
2017-10-22 01:22:08 +02:00
#include <openrct2/network/network.h>
#include <openrct2/peep/Peep.h>
2017-10-13 10:06:36 +02:00
#include <openrct2/peep/Staff.h>
2018-01-10 00:00:09 +01:00
#include <openrct2/ride/RideData.h>
#include <openrct2/ride/ShopItem.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/scenario/Scenario.h>
2017-10-06 23:21:00 +02:00
#include <openrct2/sprites.h>
2017-12-13 13:02:24 +01:00
#include <openrct2/util/Util.h>
2017-10-21 16:03:33 +02:00
#include <openrct2/windows/Intent.h>
2018-01-11 10:59:26 +01:00
#include <openrct2/world/Footpath.h>
2018-03-19 23:28:40 +01:00
#include <openrct2/world/Park.h>
2014-06-24 23:12:26 +02:00
2020-05-05 22:26:14 +02:00
static constexpr const rct_string_id WINDOW_TITLE = STR_STRINGID;
static constexpr const int32_t WH = 157;
static constexpr const int32_t WW = 192;
// clang-format off
enum WINDOW_GUEST_PAGE {
WINDOW_GUEST_OVERVIEW,
WINDOW_GUEST_STATS,
WINDOW_GUEST_RIDES,
WINDOW_GUEST_FINANCE,
WINDOW_GUEST_THOUGHTS,
WINDOW_GUEST_INVENTORY,
WINDOW_GUEST_DEBUG
2014-06-25 19:01:10 +02:00
};
enum WINDOW_GUEST_WIDGET_IDX {
WIDX_BACKGROUND,
WIDX_TITLE,
WIDX_CLOSE,
WIDX_PAGE_BACKGROUND,
WIDX_TAB_1,
WIDX_TAB_2,
WIDX_TAB_3,
WIDX_TAB_4,
WIDX_TAB_5,
WIDX_TAB_6,
WIDX_TAB_7,
WIDX_MARQUEE = 11,
WIDX_VIEWPORT,
WIDX_ACTION_LBL,
WIDX_PICKUP,
WIDX_RENAME,
WIDX_LOCATE,
WIDX_TRACK,
WIDX_RIDE_SCROLL = 11
2014-06-25 19:01:10 +02:00
};
2017-10-06 23:21:00 +02:00
validate_global_widx(WC_PEEP, WIDX_PICKUP);
static constexpr int32_t TabWidth = 30;
2019-05-04 17:01:51 +02:00
#define MAIN_GUEST_WIDGETS \
2020-05-09 16:44:21 +02:00
WINDOW_SHIM(WINDOW_TITLE, WW, WH), \
2019-05-04 17:01:51 +02:00
{ WWT_RESIZE, 1, 0, 191, 43, 156, 0xFFFFFFFF, STR_NONE }, /* Resize */ \
{ WWT_TAB, 1, 3, TabWidth + 3, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOW_GUEST_VIEW_TIP }, /* Tab 1 */ \
{ WWT_TAB, 1, 34, TabWidth + 34, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOW_GUEST_NEEDS_TIP }, /* Tab 2 */ \
{ WWT_TAB, 1, 65, TabWidth + 65, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOW_GUEST_VISITED_RIDES_TIP }, /* Tab 3 */ \
{ WWT_TAB, 1, 96, TabWidth + 96, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOW_GUEST_FINANCE_TIP }, /* Tab 4 */ \
{ WWT_TAB, 1, 127, TabWidth + 127, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOW_GUEST_THOUGHTS_TIP }, /* Tab 5 */ \
{ WWT_TAB, 1, 158, TabWidth + 158, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_SHOW_GUEST_ITEMS_TIP }, /* Tab 6 */ \
{ WWT_TAB, 1, 189, TabWidth + 189, 17, 43, IMAGE_TYPE_REMAP | SPR_TAB, STR_DEBUG_TIP } /* Tab 7 */
static rct_widget window_guest_overview_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WWT_LABEL_CENTRED, 1, 3, 166, 45, 56, 0xFFFFFFFF, STR_NONE }, // Label Thought marquee
{ WWT_VIEWPORT, 1, 3, 166, 57, 143, 0xFFFFFFFF, STR_NONE }, // Viewport
{ WWT_LABEL_CENTRED, 1, 3, 166, 144, 154, 0xFFFFFFFF, STR_NONE }, // Label Action
{ WWT_FLATBTN, 1, 167, 190, 45, 68, SPR_PICKUP_BTN, STR_PICKUP_TIP }, // Pickup Button
{ WWT_FLATBTN, 1, 167, 190, 69, 92, SPR_RENAME, STR_NAME_GUEST_TIP }, // Rename Button
{ WWT_FLATBTN, 1, 167, 190, 93, 116, SPR_LOCATE, STR_LOCATE_SUBJECT_TIP }, // Locate Button
{ WWT_FLATBTN, 1, 167, 190, 117, 140, SPR_TRACK_PEEP, STR_TOGGLE_GUEST_TRACKING_TIP }, // Track Button
{ WIDGETS_END },
2014-06-24 23:12:26 +02:00
};
static rct_widget window_guest_stats_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WIDGETS_END },
};
2014-08-25 17:47:01 +02:00
static rct_widget window_guest_rides_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WWT_SCROLL, 1, 3, 188, 57, 143, SCROLL_VERTICAL, STR_NONE },
{ WIDGETS_END },
2014-08-26 13:30:06 +02:00
};
static rct_widget window_guest_finance_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WIDGETS_END },
2014-08-26 13:30:06 +02:00
};
static rct_widget window_guest_thoughts_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WIDGETS_END },
2014-08-26 13:30:06 +02:00
};
static rct_widget window_guest_inventory_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WIDGETS_END },
};
static rct_widget window_guest_debug_widgets[] = {
2019-05-04 17:01:51 +02:00
MAIN_GUEST_WIDGETS,
{ WIDGETS_END },
2014-08-26 13:30:06 +02:00
};
// 0x981D0C
static rct_widget *window_guest_page_widgets[] = {
window_guest_overview_widgets,
window_guest_stats_widgets,
window_guest_rides_widgets,
window_guest_finance_widgets,
window_guest_thoughts_widgets,
window_guest_inventory_widgets,
window_guest_debug_widgets
2014-06-25 19:01:10 +02:00
};
static void window_guest_set_page(rct_window* w, int32_t page);
static void window_guest_disable_widgets(rct_window* w);
static void window_guest_viewport_init(rct_window* w);
2019-05-04 18:23:29 +02:00
static void window_guest_common_resize(rct_window* w);
static void window_guest_common_invalidate(rct_window* w);
static void window_guest_overview_close(rct_window *w);
static void window_guest_overview_resize(rct_window *w);
static void window_guest_overview_mouse_up(rct_window *w, rct_widgetindex widgetIndex);
static void window_guest_overview_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void window_guest_overview_invalidate(rct_window *w);
static void window_guest_overview_viewport_rotate(rct_window *w);
static void window_guest_overview_update(rct_window* w);
static void window_guest_overview_text_input(rct_window *w, rct_widgetindex widgetIndex, char *text);
static void window_guest_overview_tool_update(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords);
static void window_guest_overview_tool_down(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords);
static void window_guest_overview_tool_abort(rct_window *w, rct_widgetindex widgetIndex);
static void window_guest_mouse_up(rct_window *w, rct_widgetindex widgetIndex);
static void window_guest_stats_update(rct_window *w);
static void window_guest_stats_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void window_guest_rides_update(rct_window *w);
static void window_guest_rides_scroll_get_size(rct_window *w, int32_t scrollIndex, int32_t *width, int32_t *height);
static void window_guest_rides_scroll_mouse_down(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords);
static void window_guest_rides_scroll_mouse_over(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords);
static void window_guest_rides_invalidate(rct_window *w);
static void window_guest_rides_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void window_guest_rides_scroll_paint(rct_window *w, rct_drawpixelinfo *dpi, int32_t scrollIndex);
static void window_guest_finance_update(rct_window *w);
static void window_guest_finance_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void window_guest_thoughts_update(rct_window *w);
static void window_guest_thoughts_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void window_guest_inventory_update(rct_window *w);
static void window_guest_inventory_paint(rct_window *w, rct_drawpixelinfo *dpi);
2019-05-04 16:53:25 +02:00
static void window_guest_debug_update(rct_window *w);
static void window_guest_debug_paint(rct_window *w, rct_drawpixelinfo* dpi);
static rct_window_event_list window_guest_overview_events = {
window_guest_overview_close,
window_guest_overview_mouse_up,
window_guest_overview_resize,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
window_guest_overview_update,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
window_guest_overview_tool_update,
window_guest_overview_tool_down,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
window_guest_overview_tool_abort,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
window_guest_overview_text_input,
window_guest_overview_viewport_rotate,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
window_guest_overview_invalidate,
window_guest_overview_paint,
2017-08-15 10:07:44 +02:00
nullptr
2014-06-24 23:12:26 +02:00
};
static rct_window_event_list window_guest_stats_events = {
2017-08-15 10:07:44 +02:00
nullptr,
window_guest_mouse_up,
2019-05-04 18:23:29 +02:00
window_guest_common_resize,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
2019-05-04 16:53:25 +02:00
nullptr,
window_guest_stats_update,
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,
2019-05-04 18:23:29 +02:00
window_guest_common_invalidate,
window_guest_stats_paint,
2017-08-15 10:07:44 +02:00
nullptr
2014-08-25 13:58:59 +02:00
};
static rct_window_event_list window_guest_rides_events = {
2017-08-15 10:07:44 +02:00
nullptr,
window_guest_mouse_up,
2019-05-04 18:23:29 +02:00
window_guest_common_resize,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
2019-05-04 16:53:25 +02:00
nullptr,
window_guest_rides_update,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
window_guest_rides_scroll_get_size,
window_guest_rides_scroll_mouse_down,
2017-08-15 10:07:44 +02:00
nullptr,
window_guest_rides_scroll_mouse_over,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
nullptr,
2018-08-04 16:24:24 +02:00
nullptr,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
window_guest_rides_invalidate,
window_guest_rides_paint,
window_guest_rides_scroll_paint
2014-08-25 13:58:59 +02:00
};
static rct_window_event_list window_guest_finance_events = {
2017-08-15 10:07:44 +02:00
nullptr,
window_guest_mouse_up,
2019-05-04 18:23:29 +02:00
window_guest_common_resize,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
2019-05-04 16:53:25 +02:00
nullptr,
window_guest_finance_update,
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,
2019-05-04 18:23:29 +02:00
window_guest_common_invalidate,
window_guest_finance_paint,
2017-08-15 10:07:44 +02:00
nullptr
2014-08-25 13:58:59 +02:00
};
static rct_window_event_list window_guest_thoughts_events = {
2017-08-15 10:07:44 +02:00
nullptr,
window_guest_mouse_up,
2019-05-04 18:23:29 +02:00
window_guest_common_resize,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
2019-05-04 16:53:25 +02:00
nullptr,
window_guest_thoughts_update,
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,
2019-05-04 18:23:29 +02:00
window_guest_common_invalidate,
window_guest_thoughts_paint,
2017-08-15 10:07:44 +02:00
nullptr
2014-08-25 13:58:59 +02:00
};
static rct_window_event_list window_guest_inventory_events = {
2017-08-15 10:07:44 +02:00
nullptr,
window_guest_mouse_up,
2019-05-04 18:23:29 +02:00
window_guest_common_resize,
2017-08-15 10:07:44 +02:00
nullptr,
nullptr,
2019-05-04 16:53:25 +02:00
nullptr,
window_guest_inventory_update,
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,
2019-05-04 18:23:29 +02:00
window_guest_common_invalidate,
window_guest_inventory_paint,
2017-08-15 10:07:44 +02:00
nullptr
2014-08-25 13:58:59 +02:00
};
static rct_window_event_list window_guest_debug_events = {
2019-05-04 16:53:25 +02:00
nullptr,
window_guest_mouse_up,
2019-05-04 18:23:29 +02:00
window_guest_common_resize,
2019-05-04 16:53:25 +02:00
nullptr,
nullptr,
nullptr,
window_guest_debug_update,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
2019-05-04 18:23:29 +02:00
window_guest_common_invalidate,
2019-05-04 16:53:25 +02:00
window_guest_debug_paint,
nullptr
};
// 0x981D24
static rct_window_event_list *window_guest_page_events[] = {
&window_guest_overview_events,
&window_guest_stats_events,
&window_guest_rides_events,
&window_guest_finance_events,
&window_guest_thoughts_events,
&window_guest_inventory_events,
&window_guest_debug_events
2014-06-25 19:01:10 +02:00
};
void window_guest_set_colours();
// 0x981D3C
static constexpr const uint32_t window_guest_page_enabled_widgets[] = {
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7) |
(1 << WIDX_RENAME)|
(1 << WIDX_PICKUP)|
(1 << WIDX_LOCATE)|
(1 << WIDX_TRACK),
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7),
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7) |
(1 << WIDX_RIDE_SCROLL),
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7),
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7),
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7),
(1 << WIDX_CLOSE) |
(1 << WIDX_TAB_1) |
(1 << WIDX_TAB_2) |
(1 << WIDX_TAB_3) |
(1 << WIDX_TAB_4) |
(1 << WIDX_TAB_5) |
(1 << WIDX_TAB_6) |
(1 << WIDX_TAB_7)
2014-06-25 19:01:10 +02:00
};
2019-05-04 18:23:29 +02:00
static constexpr const rct_size16 window_guest_page_sizes[][2] = {
{ 192, 159, 500, 450 }, // WINDOW_GUEST_OVERVIEW
{ 192, 180, 192, 180 }, // WINDOW_GUEST_STATS
{ 192, 180, 500, 400 }, // WINDOW_GUEST_RIDES
{ 210, 148, 210, 148 }, // WINDOW_GUEST_FINANCE
{ 192, 159, 500, 450 }, // WINDOW_GUEST_THOUGHTS
{ 192, 159, 500, 450 }, // WINDOW_GUEST_INVENTORY
{ 192, 159, 192, 171 } // WINDOW_GUEST_DEBUG
2019-05-04 18:23:29 +02:00
};
// clang-format on
2014-06-25 19:01:10 +02:00
2014-06-24 23:12:26 +02:00
/**
*
* rct2: 0x006989E9
2014-06-24 23:12:26 +02:00
*
*/
2019-02-28 20:28:58 +01:00
rct_window* window_guest_open(Peep* peep)
2018-06-22 23:21:44 +02:00
{
if (peep->AssignedPeepType == PEEP_TYPE_STAFF)
2018-06-22 23:21:44 +02:00
{
2017-10-06 23:21:00 +02:00
return window_staff_open(peep);
}
rct_window* window;
window = window_bring_to_front_by_number(WC_PEEP, peep->sprite_index);
2018-06-22 23:21:44 +02:00
if (window == nullptr)
{
int32_t windowWidth = 192;
if (gConfigGeneral.debugging_tools)
windowWidth += TabWidth;
window = window_create_auto_pos(windowWidth, 157, &window_guest_overview_events, WC_PEEP, WF_RESIZABLE);
window->widgets = window_guest_overview_widgets;
window->enabled_widgets = window_guest_page_enabled_widgets[0];
window->number = peep->sprite_index;
window->page = 0;
window->viewport_focus_coordinates.y = 0;
window->frame_no = 0;
window->list_information_type = 0;
window->picked_peep_frame = 0;
window->highlighted_item = 0;
window_guest_disable_widgets(window);
window->min_width = windowWidth;
window->min_height = 157;
window->max_width = 500;
window->max_height = 450;
window->no_list_items = 0;
window->selected_list_item = -1;
window->viewport_focus_coordinates.y = -1;
}
window->page = 0;
window->Invalidate();
window->widgets = window_guest_page_widgets[WINDOW_GUEST_OVERVIEW];
window->enabled_widgets = window_guest_page_enabled_widgets[WINDOW_GUEST_OVERVIEW];
window->hold_down_widgets = 0;
window->event_handlers = window_guest_page_events[WINDOW_GUEST_OVERVIEW];
window->pressed_widgets = 0;
window_guest_disable_widgets(window);
window_init_scroll_widgets(window);
window_guest_viewport_init(window);
2017-10-06 23:21:00 +02:00
return window;
}
2019-05-04 18:23:29 +02:00
static void window_guest_common_resize(rct_window* w)
{
// Get page specific min and max size
int32_t minWidth = window_guest_page_sizes[w->page][0].width;
int32_t minHeight = window_guest_page_sizes[w->page][0].height;
int32_t maxWidth = window_guest_page_sizes[w->page][1].width;
int32_t maxHeight = window_guest_page_sizes[w->page][1].height;
// Ensure min size is large enough for all tabs to fit
for (int32_t i = WIDX_TAB_1; i <= WIDX_TAB_7; i++)
{
if (!(w->disabled_widgets & (1ULL << i)))
{
minWidth = std::max(minWidth, w->widgets[i].right + 3);
}
}
maxWidth = std::max(minWidth, maxWidth);
window_set_resize(w, minWidth, minHeight, maxWidth, maxHeight);
}
2019-05-04 16:40:45 +02:00
static void window_guest_common_invalidate(rct_window* w)
{
if (window_guest_page_widgets[w->page] != w->widgets)
{
w->widgets = window_guest_page_widgets[w->page];
window_init_scroll_widgets(w);
}
w->pressed_widgets |= 1ULL << (w->page + WIDX_TAB_1);
auto peep = GET_PEEP(w->number);
2019-07-21 21:44:19 +02:00
peep->FormatNameTo(gCommonFormatArgs);
2019-05-04 16:40:45 +02:00
w->widgets[WIDX_BACKGROUND].right = w->width - 1;
w->widgets[WIDX_BACKGROUND].bottom = w->height - 1;
w->widgets[WIDX_PAGE_BACKGROUND].right = w->width - 1;
w->widgets[WIDX_PAGE_BACKGROUND].bottom = w->height - 1;
w->widgets[WIDX_TITLE].right = w->width - 2;
w->widgets[WIDX_CLOSE].left = w->width - 13;
w->widgets[WIDX_CLOSE].right = w->width - 3;
2019-05-04 16:40:45 +02:00
window_align_tabs(w, WIDX_TAB_1, WIDX_TAB_7);
}
/**
2014-08-23 11:39:15 +02:00
* Disables the finance tab when no money.
* Disables peep pickup when in certain no pickup states.
* rct2: 0x006987A6
2014-08-23 11:39:15 +02:00
*/
2018-06-22 23:21:44 +02:00
void window_guest_disable_widgets(rct_window* w)
{
Peep* peep = GetEntity<Peep>(w->number);
uint64_t disabled_widgets = 0;
2018-06-22 23:21:44 +02:00
if (peep_can_be_picked_up(peep))
{
if (w->disabled_widgets & (1 << WIDX_PICKUP))
w->Invalidate();
}
2018-06-22 23:21:44 +02:00
else
{
disabled_widgets = (1 << WIDX_PICKUP);
if (!(w->disabled_widgets & (1 << WIDX_PICKUP)))
w->Invalidate();
}
2018-06-22 23:21:44 +02:00
if (gParkFlags & PARK_FLAGS_NO_MONEY)
{
disabled_widgets |= (1 << WIDX_TAB_4); // Disable finance tab if no money
}
if (!gConfigGeneral.debugging_tools)
{
disabled_widgets |= (1 << WIDX_TAB_7); // Disable debug tab when debug tools not turned on
}
w->disabled_widgets = disabled_widgets;
2014-08-23 11:39:15 +02:00
}
/**
*
* rct2: 0x00696A75
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_close(rct_window* w)
{
2018-06-22 23:21:44 +02:00
if (input_test_flag(INPUT_FLAG_TOOL_ACTIVE))
{
if (w->classification == gCurrentToolWidget.window_classification && w->number == gCurrentToolWidget.window_number)
tool_cancel();
}
}
/**
*
* rct2: 0x00696FBE
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_resize(rct_window* w)
{
window_guest_disable_widgets(w);
window_event_invalidate_call(w);
widget_invalidate(w, WIDX_MARQUEE);
2019-05-04 18:23:29 +02:00
window_guest_common_resize(w);
2019-05-04 18:23:29 +02:00
auto viewport = w->viewport;
if (viewport != nullptr)
2018-06-22 23:21:44 +02:00
{
2019-05-04 18:23:29 +02:00
auto reqViewportWidth = w->width - 30;
auto reqViewportHeight = w->height - 72;
if (viewport->width != reqViewportWidth || viewport->height != reqViewportHeight)
2018-06-22 23:21:44 +02:00
{
2019-05-04 18:23:29 +02:00
viewport->width = reqViewportWidth;
viewport->height = reqViewportHeight;
viewport->view_width = viewport->width / viewport->zoom;
viewport->view_height = viewport->height / viewport->zoom;
}
}
window_guest_viewport_init(w);
}
/**
*
* rct2: 0x00696A06
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_mouse_up(rct_window* w, rct_widgetindex widgetIndex)
{
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
2018-06-22 23:21:44 +02:00
switch (widgetIndex)
{
case WIDX_CLOSE:
window_close(w);
break;
case WIDX_TAB_1:
case WIDX_TAB_2:
case WIDX_TAB_3:
case WIDX_TAB_4:
case WIDX_TAB_5:
case WIDX_TAB_6:
case WIDX_TAB_7:
2018-06-22 23:21:44 +02:00
window_guest_set_page(w, widgetIndex - WIDX_TAB_1);
break;
case WIDX_PICKUP:
{
2018-06-22 23:21:44 +02:00
if (!peep_can_be_picked_up(peep))
{
return;
}
w->picked_peep_old_x = peep->x;
CoordsXYZ nullLoc{};
nullLoc.setNull();
PeepPickupAction pickupAction{ PeepPickupType::Pickup, w->number, nullLoc, network_get_current_player_id() };
pickupAction.SetCallback([peepnum = w->number](const GameAction* ga, const GameActionResult* result) {
if (result->Error != GA_ERROR::OK)
return;
rct_window* wind = window_find_by_number(WC_PEEP, peepnum);
if (wind)
{
tool_set(wind, WC_PEEP__WIDX_PICKUP, TOOL_PICKER);
}
});
GameActions::Execute(&pickupAction);
}
break;
2018-06-22 23:21:44 +02:00
case WIDX_RENAME:
2019-07-21 21:44:19 +02:00
{
auto peepName = peep->GetName();
window_text_input_raw_open(w, widgetIndex, STR_GUEST_RENAME_TITLE, STR_GUEST_RENAME_PROMPT, peepName.c_str(), 32);
2018-06-22 23:21:44 +02:00
break;
2019-07-21 21:44:19 +02:00
}
2018-06-22 23:21:44 +02:00
case WIDX_LOCATE:
w->ScrollToViewport();
2018-06-22 23:21:44 +02:00
break;
case WIDX_TRACK:
{
2020-05-31 22:45:52 +02:00
uint32_t flags = peep->PeepFlags ^ PEEP_FLAGS_TRACKING;
auto guestSetFlagsAction = GuestSetFlagsAction(w->number, flags);
GameActions::Execute(&guestSetFlagsAction);
}
break;
}
}
2014-08-21 17:45:01 +02:00
/**
*
* rct2: 0x696AA0
*/
2018-06-22 23:21:44 +02:00
void window_guest_set_page(rct_window* w, int32_t page)
{
if (input_test_flag(INPUT_FLAG_TOOL_ACTIVE))
{
2018-06-22 23:21:44 +02:00
if (w->number == gCurrentToolWidget.window_number && w->classification == gCurrentToolWidget.window_classification)
tool_cancel();
}
int32_t listen = 0;
2018-06-22 23:21:44 +02:00
if (page == WINDOW_GUEST_OVERVIEW && w->page == WINDOW_GUEST_OVERVIEW && w->viewport)
{
if (!(w->viewport->flags & VIEWPORT_FLAG_SOUND_ON))
listen = 1;
}
w->page = page;
w->frame_no = 0;
w->no_list_items = 0;
w->selected_list_item = -1;
rct_viewport* viewport = w->viewport;
2017-10-03 00:00:32 +02:00
w->viewport = nullptr;
2018-06-22 23:21:44 +02:00
if (viewport)
{
viewport->width = 0;
}
w->enabled_widgets = window_guest_page_enabled_widgets[page];
w->hold_down_widgets = 0;
w->event_handlers = window_guest_page_events[page];
w->pressed_widgets = 0;
w->widgets = window_guest_page_widgets[page];
window_guest_disable_widgets(w);
w->Invalidate();
window_event_resize_call(w);
window_event_invalidate_call(w);
window_init_scroll_widgets(w);
w->Invalidate();
2018-06-22 23:21:44 +02:00
if (listen && w->viewport)
w->viewport->flags |= VIEWPORT_FLAG_SOUND_ON;
2014-08-21 17:45:01 +02:00
}
2014-08-23 11:39:15 +02:00
2018-06-22 23:21:44 +02:00
void window_guest_overview_viewport_rotate(rct_window* w)
{
window_guest_viewport_init(w);
2014-08-27 13:48:29 +02:00
}
/**
*
* rct2: 0x0069883C
*/
2018-06-22 23:21:44 +02:00
void window_guest_viewport_init(rct_window* w)
{
if (w->page != WINDOW_GUEST_OVERVIEW)
return;
auto peep = GET_PEEP(w->number);
if (peep != nullptr)
2018-06-22 23:21:44 +02:00
{
auto focus = viewport_update_smart_guest_follow(w, peep);
bool reCreateViewport = false;
uint16_t origViewportFlags{};
if (w->viewport != nullptr)
2018-06-22 23:21:44 +02:00
{
// Check all combos, for now skipping y and rot
if (focus.coordinate.x == w->viewport_focus_coordinates.x
&& (focus.coordinate.y & VIEWPORT_FOCUS_Y_MASK) == w->viewport_focus_coordinates.y
&& focus.coordinate.z == w->viewport_focus_coordinates.z
&& focus.coordinate.rotation == w->viewport_focus_coordinates.rotation)
return;
origViewportFlags = w->viewport->flags;
reCreateViewport = true;
w->viewport->width = 0;
w->viewport = nullptr;
}
window_event_invalidate_call(w);
w->viewport_focus_coordinates.x = focus.coordinate.x;
w->viewport_focus_coordinates.y = focus.coordinate.y;
w->viewport_focus_coordinates.z = focus.coordinate.z;
w->viewport_focus_coordinates.rotation = focus.coordinate.rotation;
if (peep->State != PEEP_STATE_PICKED && w->viewport == nullptr)
2018-06-22 23:21:44 +02:00
{
auto view_widget = &w->widgets[WIDX_VIEWPORT];
2020-03-01 20:32:35 +01:00
auto screenPos = ScreenCoordsXY{ view_widget->left + 1 + w->windowPos.x, view_widget->top + 1 + w->windowPos.y };
int32_t width = view_widget->right - view_widget->left - 1;
int32_t height = view_widget->bottom - view_widget->top - 1;
2018-06-22 23:21:44 +02:00
viewport_create(
w, screenPos, width, height, 0,
{ focus.coordinate.x, focus.coordinate.y & VIEWPORT_FOCUS_Y_MASK, focus.coordinate.z },
focus.sprite.type & VIEWPORT_FOCUS_TYPE_MASK, focus.sprite.sprite_id);
if (w->viewport != nullptr && reCreateViewport)
{
w->viewport->flags = origViewportFlags;
}
w->flags |= WF_NO_SCROLLING;
w->Invalidate();
}
w->Invalidate();
}
2014-08-23 13:06:25 +02:00
}
/**
*
* rct2: 0x6983dd
* used by window_staff as well
*/
2018-06-22 23:21:44 +02:00
static void window_guest_overview_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_1))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_1];
int32_t width = widget->right - widget->left - 1;
int32_t height = widget->bottom - widget->top - 1;
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + 1 + w->windowPos.x;
int32_t y = widget->top + 1 + w->windowPos.y;
2018-06-22 23:21:44 +02:00
if (w->page == WINDOW_GUEST_OVERVIEW)
height++;
rct_drawpixelinfo clip_dpi;
2018-06-22 23:21:44 +02:00
if (!clip_drawpixelinfo(&clip_dpi, dpi, x, y, width, height))
{
return;
}
x = 14;
y = 20;
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
if (peep->AssignedPeepType == PEEP_TYPE_STAFF && peep->StaffType == STAFF_TYPE_ENTERTAINER)
y++;
int32_t animationFrame = g_peep_animation_entries[peep->SpriteType].sprite_animation->base_image + 1;
2020-03-01 21:51:29 +01:00
int32_t animationFrameOffset = 0;
2018-06-22 23:21:44 +02:00
if (w->page == WINDOW_GUEST_OVERVIEW)
{
2020-03-01 21:51:29 +01:00
animationFrameOffset = w->var_496;
animationFrameOffset &= 0xFFFC;
}
2020-03-01 21:51:29 +01:00
animationFrame += animationFrameOffset;
int32_t sprite_id = animationFrame | SPRITE_ID_PALETTE_COLOUR_2(peep->TshirtColour, peep->TrousersColour);
gfx_draw_sprite(&clip_dpi, sprite_id, x, y, 0);
// If holding a balloon
2020-03-01 21:51:29 +01:00
if (animationFrame >= 0x2A1D && animationFrame < 0x2A3D)
2018-06-22 23:21:44 +02:00
{
2020-03-01 21:51:29 +01:00
animationFrame += 32;
animationFrame |= SPRITE_ID_PALETTE_COLOUR_1(peep->BalloonColour);
2020-03-01 21:51:29 +01:00
gfx_draw_sprite(&clip_dpi, animationFrame, x, y, 0);
}
// If holding umbrella
2020-03-01 21:51:29 +01:00
if (animationFrame >= 0x2BBD && animationFrame < 0x2BDD)
2018-06-22 23:21:44 +02:00
{
2020-03-01 21:51:29 +01:00
animationFrame += 32;
animationFrame |= SPRITE_ID_PALETTE_COLOUR_1(peep->UmbrellaColour);
2020-03-01 21:51:29 +01:00
gfx_draw_sprite(&clip_dpi, animationFrame, x, y, 0);
}
// If wearing hat
2020-03-01 21:51:29 +01:00
if (animationFrame >= 0x29DD && animationFrame < 0x29FD)
2018-06-22 23:21:44 +02:00
{
2020-03-01 21:51:29 +01:00
animationFrame += 32;
2020-05-14 04:11:28 +02:00
animationFrame |= SPRITE_ID_PALETTE_COLOUR_1(peep->HatColour);
2020-03-01 21:51:29 +01:00
gfx_draw_sprite(&clip_dpi, animationFrame, x, y, 0);
}
}
/**
*
* rct2: 0x69869b
*/
2018-06-22 23:21:44 +02:00
static void window_guest_stats_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_2))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_2];
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + w->windowPos.x;
int32_t y = widget->top + w->windowPos.y;
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
int32_t image_id = get_peep_face_sprite_large(peep);
2018-06-22 23:21:44 +02:00
if (w->page == WINDOW_GUEST_STATS)
{
// If currently viewing this tab animate tab
// if it is very sick or angry.
2018-06-22 23:21:44 +02:00
switch (image_id)
{
case SPR_PEEP_LARGE_FACE_VERY_VERY_SICK_0:
image_id += (w->frame_no / 4) & 0xF;
break;
case SPR_PEEP_LARGE_FACE_VERY_SICK_0:
image_id += (w->frame_no / 8) & 0x3;
break;
case SPR_PEEP_LARGE_FACE_ANGRY_0:
image_id += (w->frame_no / 8) & 0x3;
break;
}
}
gfx_draw_sprite(dpi, image_id, x, y, 0);
}
/**
*
* rct2: 0x69861F
*/
2018-06-22 23:21:44 +02:00
static void window_guest_rides_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_3))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_3];
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + w->windowPos.x;
int32_t y = widget->top + w->windowPos.y;
int32_t image_id = SPR_TAB_RIDE_0;
2018-06-22 23:21:44 +02:00
if (w->page == WINDOW_GUEST_RIDES)
{
image_id += (w->frame_no / 4) & 0xF;
}
gfx_draw_sprite(dpi, image_id, x, y, 0);
}
/**
*
* rct2: 0x698597
*/
2018-06-22 23:21:44 +02:00
static void window_guest_finance_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_4))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_4];
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + w->windowPos.x;
int32_t y = widget->top + w->windowPos.y;
int32_t image_id = SPR_TAB_FINANCES_SUMMARY_0;
2018-06-22 23:21:44 +02:00
if (w->page == WINDOW_GUEST_FINANCE)
{
image_id += (w->frame_no / 2) & 0x7;
}
gfx_draw_sprite(dpi, image_id, x, y, 0);
}
/**
*
* rct2: 0x6985D8
*/
2018-06-22 23:21:44 +02:00
static void window_guest_thoughts_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_5))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_5];
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + w->windowPos.x;
int32_t y = widget->top + w->windowPos.y;
int32_t image_id = SPR_TAB_THOUGHTS_0;
2018-06-22 23:21:44 +02:00
if (w->page == WINDOW_GUEST_THOUGHTS)
{
image_id += (w->frame_no / 2) & 0x7;
}
gfx_draw_sprite(dpi, image_id, x, y, 0);
}
/**
*
* rct2: 0x698661
*/
2018-06-22 23:21:44 +02:00
static void window_guest_inventory_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_6))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_6];
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + w->windowPos.x;
int32_t y = widget->top + w->windowPos.y;
int32_t image_id = SPR_TAB_GUEST_INVENTORY;
gfx_draw_sprite(dpi, image_id, x, y, 0);
}
2019-01-01 20:18:14 +01:00
static void window_guest_debug_tab_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
if (w->disabled_widgets & (1 << WIDX_TAB_7))
return;
rct_widget* widget = &w->widgets[WIDX_TAB_7];
2020-03-01 20:32:35 +01:00
int32_t x = widget->left + w->windowPos.x;
int32_t y = widget->top + w->windowPos.y;
int32_t image_id = SPR_TAB_GEARS_0;
if (w->page == WINDOW_GUEST_DEBUG)
{
image_id += (w->frame_no / 2) & 0x3;
}
gfx_draw_sprite(dpi, image_id, x, y, 0);
}
/**
*
* rct2: 0x696887
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
// Draw the viewport no sound sprite
2018-06-22 23:21:44 +02:00
if (w->viewport)
{
window_draw_viewport(dpi, w);
rct_viewport* viewport = w->viewport;
2018-06-22 23:21:44 +02:00
if (viewport->flags & VIEWPORT_FLAG_SOUND_ON)
{
2020-03-01 20:32:35 +01:00
gfx_draw_sprite(dpi, SPR_HEARING_VIEWPORT, w->windowPos.x + 2, w->windowPos.y + 2, 0);
}
}
2017-07-01 00:11:28 +02:00
// Draw the centred label
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
2019-07-21 01:23:10 +02:00
peep->FormatActionTo(gCommonFormatArgs);
rct_widget* widget = &w->widgets[WIDX_ACTION_LBL];
auto screenPos = w->windowPos + ScreenCoordsXY{ (widget->left + widget->right) / 2, widget->top - 1 };
int32_t width = widget->right - widget->left;
gfx_draw_string_centred_clipped(dpi, STR_BLACK_STRING, gCommonFormatArgs, COLOUR_BLACK, screenPos, width);
// Draw the marquee thought
widget = &w->widgets[WIDX_MARQUEE];
width = widget->right - widget->left - 3;
2020-03-01 20:32:35 +01:00
int32_t left = widget->left + 2 + w->windowPos.x;
int32_t top = widget->top + w->windowPos.y;
int32_t height = widget->bottom - widget->top;
rct_drawpixelinfo dpi_marquee;
2018-06-22 23:21:44 +02:00
if (!clip_drawpixelinfo(&dpi_marquee, dpi, left, top, width, height))
{
return;
}
int32_t i = 0;
2018-06-22 23:21:44 +02:00
for (; i < PEEP_MAX_THOUGHTS; ++i)
{
2020-06-06 15:03:58 +02:00
if (peep->Thoughts[i].type == PEEP_THOUGHT_TYPE_NONE)
2018-06-22 23:21:44 +02:00
{
w->list_information_type = 0;
return;
}
2020-06-06 15:03:58 +02:00
if (peep->Thoughts[i].freshness == 1)
2018-06-22 23:21:44 +02:00
{ // If a fresh thought
break;
}
}
2018-06-22 23:21:44 +02:00
if (i == PEEP_MAX_THOUGHTS)
{
w->list_information_type = 0;
return;
}
screenPos.x = widget->right - widget->left - w->list_information_type;
2020-06-06 15:03:58 +02:00
peep_thought_set_format_args(&peep->Thoughts[i]);
gfx_draw_string_left(&dpi_marquee, STR_WINDOW_COLOUR_2_STRINGID, gCommonFormatArgs, COLOUR_BLACK, { screenPos.x, 0 });
2014-08-25 13:58:59 +02:00
}
/**
*
* rct2: 0x696749
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_invalidate(rct_window* w)
{
2019-05-04 16:40:45 +02:00
window_guest_common_invalidate(w);
2019-05-04 16:40:45 +02:00
auto peep = GET_PEEP(w->number);
2018-06-22 23:21:44 +02:00
w->pressed_widgets &= ~(1 << WIDX_TRACK);
2020-05-31 22:45:52 +02:00
if (peep->PeepFlags & PEEP_FLAGS_TRACKING)
2018-06-22 23:21:44 +02:00
{
w->pressed_widgets |= (1 << WIDX_TRACK);
}
window_guest_overview_widgets[WIDX_VIEWPORT].right = w->width - 26;
window_guest_overview_widgets[WIDX_VIEWPORT].bottom = w->height - 14;
2014-08-27 13:14:52 +02:00
window_guest_overview_widgets[WIDX_ACTION_LBL].top = w->height - 12;
window_guest_overview_widgets[WIDX_ACTION_LBL].bottom = w->height - 3;
window_guest_overview_widgets[WIDX_ACTION_LBL].right = w->width - 24;
window_guest_overview_widgets[WIDX_MARQUEE].right = w->width - 24;
2014-08-27 13:14:52 +02:00
window_guest_overview_widgets[WIDX_PICKUP].right = w->width - 2;
window_guest_overview_widgets[WIDX_RENAME].right = w->width - 2;
window_guest_overview_widgets[WIDX_LOCATE].right = w->width - 2;
window_guest_overview_widgets[WIDX_TRACK].right = w->width - 2;
2014-08-27 13:14:52 +02:00
window_guest_overview_widgets[WIDX_PICKUP].left = w->width - 25;
window_guest_overview_widgets[WIDX_RENAME].left = w->width - 25;
window_guest_overview_widgets[WIDX_LOCATE].left = w->width - 25;
window_guest_overview_widgets[WIDX_TRACK].left = w->width - 25;
}
/**
*
* rct2: 0x696F45
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_update(rct_window* w)
{
2020-03-01 21:51:29 +01:00
int32_t newAnimationFrame = w->var_496;
newAnimationFrame++;
newAnimationFrame %= 24;
w->var_496 = newAnimationFrame;
widget_invalidate(w, WIDX_TAB_1);
widget_invalidate(w, WIDX_TAB_2);
Peep* peep = GET_PEEP(w->number);
if (peep != nullptr && peep->WindowInvalidateFlags & PEEP_INVALIDATE_PEEP_ACTION)
{
peep->WindowInvalidateFlags &= ~PEEP_INVALIDATE_PEEP_ACTION;
widget_invalidate(w, WIDX_ACTION_LBL);
}
w->list_information_type += 2;
if ((w->highlighted_item & 0xFFFF) == 0xFFFF)
w->highlighted_item &= 0xFFFF0000;
else
w->highlighted_item++;
// Disable peep watching thought for multiplayer as it's client specific
2018-06-22 23:21:44 +02:00
if (network_get_mode() == NETWORK_MODE_NONE)
{
// Create the "I have the strangest feeling I am being watched thought"
2018-06-22 23:21:44 +02:00
if ((w->highlighted_item & 0xFFFF) >= 3840)
{
if (!(w->highlighted_item & 0x3FF))
{
int32_t random = util_rand() & 0xFFFF;
2018-06-22 23:21:44 +02:00
if (random <= 0x2AAA)
{
peep->InsertNewThought(PEEP_THOUGHT_TYPE_WATCHED, PEEP_THOUGHT_ITEM_NONE);
}
}
}
}
}
2014-09-09 19:08:34 +02:00
/* rct2: 0x696A6A */
2018-06-22 23:21:44 +02:00
void window_guest_overview_text_input(rct_window* w, rct_widgetindex widgetIndex, char* text)
{
if (widgetIndex != WIDX_RENAME)
return;
2014-09-09 19:08:34 +02:00
2017-08-15 10:07:44 +02:00
if (text == nullptr)
return;
2017-10-04 15:51:45 +02:00
guest_set_name(w->number, text);
2014-09-13 12:03:46 +02:00
}
/**
*
* rct2: 0x696A5F
*/
void window_guest_overview_tool_update(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
{
if (widgetIndex != WIDX_PICKUP)
return;
map_invalidate_selection_rect();
gMapSelectFlags &= ~MAP_SELECT_FLAG_ENABLE;
auto mapCoords = footpath_get_coordinates_from_pos({ screenCoords.x, screenCoords.y + 16 }, nullptr, nullptr);
if (!mapCoords.isNull())
2018-06-22 23:21:44 +02:00
{
gMapSelectFlags |= MAP_SELECT_FLAG_ENABLE;
gMapSelectType = MAP_SELECT_TYPE_FULL;
gMapSelectPositionA = mapCoords;
gMapSelectPositionB = mapCoords;
map_invalidate_selection_rect();
}
gPickupPeepImage = UINT32_MAX;
int32_t interactionType;
CoordsXY unusedCoords;
get_map_coordinates_from_pos(
screenCoords, VIEWPORT_INTERACTION_MASK_NONE, unusedCoords, &interactionType, nullptr, nullptr);
if (interactionType == VIEWPORT_INTERACTION_ITEM_NONE)
return;
gPickupPeepX = screenCoords.x - 1;
gPickupPeepY = screenCoords.y + 16;
w->picked_peep_frame++;
2018-06-22 23:21:44 +02:00
if (w->picked_peep_frame >= 48)
{
w->picked_peep_frame = 0;
}
2019-02-28 20:28:58 +01:00
Peep* peep;
peep = GET_PEEP(w->number);
uint32_t imageId = g_peep_animation_entries[peep->SpriteType].sprite_animation[PEEP_ACTION_SPRITE_TYPE_UI].base_image;
imageId += w->picked_peep_frame >> 2;
imageId |= (peep->TshirtColour << 19) | (peep->TrousersColour << 24) | IMAGE_TYPE_REMAP | IMAGE_TYPE_REMAP_2_PLUS;
gPickupPeepImage = imageId;
}
/**
*
* rct2: 0x696A54
*/
void window_guest_overview_tool_down(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
{
if (widgetIndex != WIDX_PICKUP)
return;
2018-11-01 13:53:50 +01:00
TileElement* tileElement;
auto destCoords = footpath_get_coordinates_from_pos({ screenCoords.x, screenCoords.y + 16 }, nullptr, &tileElement);
2016-10-18 21:33:43 +02:00
if (destCoords.isNull())
return;
2016-10-18 21:33:43 +02:00
PeepPickupAction pickupAction{
PeepPickupType::Place, w->number, { destCoords, tileElement->GetBaseZ() }, network_get_current_player_id()
};
pickupAction.SetCallback([](const GameAction* ga, const GameActionResult* result) {
if (result->Error != GA_ERROR::OK)
return;
tool_cancel();
gPickupPeepImage = UINT32_MAX;
});
GameActions::Execute(&pickupAction);
}
/**
*
* rct2: 0x696A49
*/
2018-06-22 23:21:44 +02:00
void window_guest_overview_tool_abort(rct_window* w, rct_widgetindex widgetIndex)
{
if (widgetIndex != WIDX_PICKUP)
return;
PeepPickupAction pickupAction{
PeepPickupType::Cancel, w->number, { w->picked_peep_old_x, 0, 0 }, network_get_current_player_id()
};
GameActions::Execute(&pickupAction);
}
/**
* This is a combination of 5 functions that were identical
* rct2: 0x69744F, 0x697795, 0x697BDD, 0x697E18, 0x698279
*/
2018-06-22 23:21:44 +02:00
void window_guest_mouse_up(rct_window* w, rct_widgetindex widgetIndex)
{
2018-06-22 23:21:44 +02:00
switch (widgetIndex)
{
case WIDX_CLOSE:
window_close(w);
break;
case WIDX_TAB_1:
case WIDX_TAB_2:
case WIDX_TAB_3:
case WIDX_TAB_4:
case WIDX_TAB_5:
case WIDX_TAB_6:
case WIDX_TAB_7:
2018-06-22 23:21:44 +02:00
window_guest_set_page(w, widgetIndex - WIDX_TAB_1);
break;
}
}
/**
*
* rct2: 0x69746A
*/
2018-06-22 23:21:44 +02:00
void window_guest_stats_update(rct_window* w)
{
w->frame_no++;
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
peep->WindowInvalidateFlags &= ~PEEP_INVALIDATE_PEEP_STATS;
w->Invalidate();
}
2014-09-20 12:12:45 +02:00
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x0066ECC1
*
* ebp: colour, contains flag BAR_BLINK for blinking
*/
static void window_guest_stats_bars_paint(
int32_t value, int32_t x, int32_t y, rct_window* w, rct_drawpixelinfo* dpi, int32_t colour)
{
if (font_get_line_height(gCurrentFontSpriteBase) > 10)
{
y += 1;
}
gfx_fill_rect_inset(dpi, x + 61, y + 1, x + 61 + 121, y + 9, w->colours[1], INSET_RECT_F_30);
int32_t blink_flag = colour & BAR_BLINK;
colour &= ~BAR_BLINK;
if (!blink_flag || game_is_paused() || (gCurrentRealTimeTicks & 8) == 0)
{
value *= 118;
value >>= 8;
if (value <= 2)
return;
2014-09-20 12:12:45 +02:00
gfx_fill_rect_inset(dpi, x + 63, y + 2, x + 63 + value - 1, y + 8, colour, 0);
}
2014-09-20 12:12:45 +02:00
}
/**
*
* rct2: 0x0069711D
*/
2018-06-22 23:21:44 +02:00
void window_guest_stats_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
// ebx
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
// Not sure why this is not stats widgets
// cx dx
auto screenCoords = w->windowPos
+ ScreenCoordsXY{ window_guest_rides_widgets[WIDX_PAGE_BACKGROUND].left + 4,
window_guest_rides_widgets[WIDX_PAGE_BACKGROUND].top + 4 };
// Happiness
gfx_draw_string_left(dpi, STR_GUEST_STAT_HAPPINESS_LABEL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
2020-06-09 04:30:27 +02:00
int32_t happiness = peep->Happiness;
2018-06-22 23:21:44 +02:00
if (happiness < 10)
happiness = 10;
int32_t ebp = COLOUR_BRIGHT_GREEN;
2018-06-22 23:21:44 +02:00
if (happiness < 50)
{
ebp |= BAR_BLINK;
}
window_guest_stats_bars_paint(happiness, screenCoords.x, screenCoords.y, w, dpi, ebp);
// Energy
screenCoords.y += LIST_ROW_HEIGHT;
gfx_draw_string_left(dpi, STR_GUEST_STAT_ENERGY_LABEL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
2020-06-09 04:34:35 +02:00
int32_t energy = ((peep->Energy - PEEP_MIN_ENERGY) * 255) / (PEEP_MAX_ENERGY - PEEP_MIN_ENERGY);
ebp = COLOUR_BRIGHT_GREEN;
2018-06-22 23:21:44 +02:00
if (energy < 50)
{
ebp |= BAR_BLINK;
}
2018-06-22 23:21:44 +02:00
if (energy < 10)
energy = 10;
window_guest_stats_bars_paint(energy, screenCoords.x, screenCoords.y, w, dpi, ebp);
// Hunger
screenCoords.y += LIST_ROW_HEIGHT;
gfx_draw_string_left(dpi, STR_GUEST_STAT_HUNGER_LABEL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
2020-06-09 04:18:12 +02:00
int32_t hunger = peep->Hunger;
2018-06-22 23:21:44 +02:00
if (hunger > 190)
hunger = 190;
hunger -= 32;
2018-06-22 23:21:44 +02:00
if (hunger < 0)
hunger = 0;
hunger *= 51;
hunger /= 32;
hunger = 0xFF & ~hunger;
ebp = COLOUR_BRIGHT_RED;
2018-06-22 23:21:44 +02:00
if (hunger > 170)
{
ebp |= BAR_BLINK;
}
window_guest_stats_bars_paint(hunger, screenCoords.x, screenCoords.y, w, dpi, ebp);
// Thirst
screenCoords.y += LIST_ROW_HEIGHT;
gfx_draw_string_left(dpi, STR_GUEST_STAT_THIRST_LABEL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
2020-06-09 04:12:38 +02:00
int32_t thirst = peep->Thirst;
2018-06-22 23:21:44 +02:00
if (thirst > 190)
thirst = 190;
thirst -= 32;
2018-06-22 23:21:44 +02:00
if (thirst < 0)
thirst = 0;
thirst *= 51;
thirst /= 32;
thirst = 0xFF & ~thirst;
ebp = COLOUR_BRIGHT_RED;
2018-06-22 23:21:44 +02:00
if (thirst > 170)
{
ebp |= BAR_BLINK;
}
window_guest_stats_bars_paint(thirst, screenCoords.x, screenCoords.y, w, dpi, ebp);
// Nausea
screenCoords.y += LIST_ROW_HEIGHT;
gfx_draw_string_left(dpi, STR_GUEST_STAT_NAUSEA_LABEL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
2020-06-09 04:25:37 +02:00
int32_t nausea = peep->Nausea - 32;
2018-06-22 23:21:44 +02:00
if (nausea < 0)
nausea = 0;
nausea *= 36;
nausea /= 32;
ebp = COLOUR_BRIGHT_RED;
2018-06-22 23:21:44 +02:00
if (nausea > 120)
{
ebp |= BAR_BLINK;
}
window_guest_stats_bars_paint(nausea, screenCoords.x, screenCoords.y, w, dpi, ebp);
2018-01-09 09:32:21 +01:00
// Toilet
screenCoords.y += LIST_ROW_HEIGHT;
gfx_draw_string_left(dpi, STR_GUEST_STAT_TOILET_LABEL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
2020-06-09 04:10:18 +02:00
int32_t toilet = peep->Toilet - 32;
2018-06-22 23:21:44 +02:00
if (toilet > 210)
toilet = 210;
2018-01-09 09:32:21 +01:00
toilet -= 32;
2018-06-22 23:21:44 +02:00
if (toilet < 0)
toilet = 0;
2018-01-09 09:32:21 +01:00
toilet *= 45;
toilet /= 32;
ebp = COLOUR_BRIGHT_RED;
2018-06-22 23:21:44 +02:00
if (toilet > 160)
{
ebp |= BAR_BLINK;
}
window_guest_stats_bars_paint(toilet, screenCoords.x, screenCoords.y, w, dpi, ebp);
// Time in park
screenCoords.y += LIST_ROW_HEIGHT + 1;
if (peep->TimeInPark != -1)
2018-06-22 23:21:44 +02:00
{
int32_t eax = gScenarioTicks;
eax -= peep->TimeInPark;
eax >>= 11;
auto ft = Formatter::Common();
ft.Add<uint16_t>(eax & 0xFFFF);
gfx_draw_string_left(dpi, STR_GUEST_STAT_TIME_IN_PARK, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT + 9;
gfx_fill_rect_inset(
dpi, screenCoords.x, screenCoords.y - 6, screenCoords.x + 179, screenCoords.y - 5, w->colours[1],
INSET_RECT_FLAG_BORDER_INSET);
// Preferred Ride
gfx_draw_string_left(dpi, STR_GUEST_STAT_PREFERRED_RIDE, nullptr, COLOUR_BLACK, screenCoords);
screenCoords.y += LIST_ROW_HEIGHT;
// Intensity
auto ft = Formatter::Common();
2020-06-09 03:55:07 +02:00
auto maxIntensity = peep->Intensity.GetMaximum();
int32_t string_id = STR_GUEST_STAT_PREFERRED_INTESITY_BELOW;
2020-06-09 03:55:07 +02:00
if (peep->Intensity.GetMinimum() != 0)
2018-06-22 23:21:44 +02:00
{
2020-06-09 03:55:07 +02:00
ft.Add<uint16_t>(peep->Intensity.GetMinimum());
ft.Add<uint16_t>(maxIntensity);
string_id = STR_GUEST_STAT_PREFERRED_INTESITY_BETWEEN;
if (maxIntensity == 15)
2018-06-22 23:21:44 +02:00
string_id = STR_GUEST_STAT_PREFERRED_INTESITY_ABOVE;
}
else
{
ft.Add<uint16_t>(maxIntensity);
}
gfx_draw_string_left(dpi, string_id, gCommonFormatArgs, COLOUR_BLACK, screenCoords + ScreenCoordsXY{ 4, 0 });
// Nausea tolerance
static constexpr const rct_string_id nauseaTolerances[] = {
STR_PEEP_STAT_NAUSEA_TOLERANCE_NONE,
STR_PEEP_STAT_NAUSEA_TOLERANCE_LOW,
STR_PEEP_STAT_NAUSEA_TOLERANCE_AVERAGE,
STR_PEEP_STAT_NAUSEA_TOLERANCE_HIGH,
};
screenCoords.y += LIST_ROW_HEIGHT;
int32_t nausea_tolerance = peep->NauseaTolerance & 0x3;
2020-06-04 12:41:03 +02:00
ft = Formatter::Common();
ft.Add<rct_string_id>(nauseaTolerances[nausea_tolerance]);
gfx_draw_string_left(dpi, STR_GUEST_STAT_NAUSEA_TOLERANCE, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
/**
*
* rct2: 0x6977B0
*/
2018-06-22 23:21:44 +02:00
void window_guest_rides_update(rct_window* w)
{
w->frame_no++;
widget_invalidate(w, WIDX_TAB_2);
widget_invalidate(w, WIDX_TAB_3);
auto peep = GET_PEEP(w->number);
auto guest = peep->AsGuest();
if (guest != nullptr)
2018-06-22 23:21:44 +02:00
{
// Every 2048 ticks do a full window_invalidate
int32_t number_of_ticks = gScenarioTicks - peep->TimeInPark;
if (!(number_of_ticks & 0x7FF))
w->Invalidate();
uint8_t curr_list_position = 0;
for (const auto& ride : GetRideManager())
2018-06-22 23:21:44 +02:00
{
2019-08-03 19:11:30 +02:00
if (ride.IsRide() && guest->HasRidden(&ride))
2018-06-22 23:21:44 +02:00
{
w->list_item_positions[curr_list_position] = ride.id;
curr_list_position++;
}
}
// If there are new items
if (w->no_list_items != curr_list_position)
{
w->no_list_items = curr_list_position;
w->Invalidate();
}
}
}
/**
*
* rct2: 0x69784E
*/
2018-06-22 23:21:44 +02:00
void window_guest_rides_scroll_get_size(rct_window* w, int32_t scrollIndex, int32_t* width, int32_t* height)
{
*height = w->no_list_items * 10;
2018-06-22 23:21:44 +02:00
if (w->selected_list_item != -1)
{
w->selected_list_item = -1;
w->Invalidate();
}
int32_t visable_height = *height - window_guest_rides_widgets[WIDX_RIDE_SCROLL].bottom
+ window_guest_rides_widgets[WIDX_RIDE_SCROLL].top + 21;
2018-06-22 23:21:44 +02:00
if (visable_height < 0)
visable_height = 0;
2018-06-22 23:21:44 +02:00
if (visable_height < w->scrolls[0].v_top)
{
w->scrolls[0].v_top = visable_height;
w->Invalidate();
}
}
/**
*
* rct2: 0x006978CC
*/
void window_guest_rides_scroll_mouse_down(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords)
{
int32_t index;
index = screenCoords.y / 10;
2018-06-22 23:21:44 +02:00
if (index >= w->no_list_items)
return;
2017-10-21 16:03:33 +02:00
auto intent = Intent(WC_RIDE);
intent.putExtra(INTENT_EXTRA_RIDE_ID, w->list_item_positions[index]);
context_open_intent(&intent);
}
/**
*
* rct2: 0x0069789C
*/
void window_guest_rides_scroll_mouse_over(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords)
{
int32_t index;
index = screenCoords.y / 10;
2018-06-22 23:21:44 +02:00
if (index >= w->no_list_items)
return;
2018-06-22 23:21:44 +02:00
if (index == w->selected_list_item)
return;
w->selected_list_item = index;
w->Invalidate();
}
/**
*
* rct2: 0x0069757A
*/
2018-06-22 23:21:44 +02:00
void window_guest_rides_invalidate(rct_window* w)
{
2019-05-04 16:40:45 +02:00
window_guest_common_invalidate(w);
window_guest_rides_widgets[WIDX_RIDE_SCROLL].right = w->width - 4;
window_guest_rides_widgets[WIDX_RIDE_SCROLL].bottom = w->height - 15;
}
/**
*
* rct2: 0x00697637
*/
2018-06-22 23:21:44 +02:00
void window_guest_rides_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
// cx dx
auto screenCoords = w->windowPos
+ ScreenCoordsXY{ window_guest_rides_widgets[WIDX_PAGE_BACKGROUND].left + 2,
window_guest_rides_widgets[WIDX_PAGE_BACKGROUND].top + 2 };
gfx_draw_string_left(dpi, STR_GUEST_LABEL_RIDES_BEEN_ON, nullptr, COLOUR_BLACK, screenCoords);
screenCoords.y = w->windowPos.y + window_guest_rides_widgets[WIDX_PAGE_BACKGROUND].bottom - 12;
2020-06-03 00:40:47 +02:00
auto ft = Formatter::Common();
ft.Add<rct_string_id>(STR_PEEP_FAVOURITE_RIDE_NOT_AVAILABLE);
if (peep->FavouriteRide != RIDE_ID_NULL)
{
auto ride = get_ride(peep->FavouriteRide);
if (ride != nullptr)
{
2019-07-21 02:28:33 +02:00
ride->FormatNameTo(gCommonFormatArgs);
}
}
gfx_draw_string_left_clipped(dpi, STR_FAVOURITE_RIDE, gCommonFormatArgs, COLOUR_BLACK, screenCoords, w->width - 14);
}
/**
*
* rct2: 0x006976FC
*/
2018-06-22 23:21:44 +02:00
void window_guest_rides_scroll_paint(rct_window* w, rct_drawpixelinfo* dpi, int32_t scrollIndex)
{
int32_t left = dpi->x;
int32_t right = dpi->x + dpi->width - 1;
int32_t top = dpi->y;
int32_t bottom = dpi->y + dpi->height - 1;
auto colour = ColourMapA[w->colours[1]].mid_light;
gfx_fill_rect(dpi, left, top, right, bottom, colour);
for (int32_t list_index = 0; list_index < w->no_list_items; list_index++)
{
auto y = list_index * 10;
rct_string_id stringId = STR_BLACK_STRING;
if (list_index == w->selected_list_item)
{
gfx_filter_rect(dpi, 0, y, 800, y + 9, PALETTE_DARKEN_1);
stringId = STR_WINDOW_COLOUR_2_STRINGID;
}
auto ride = get_ride(w->list_item_positions[list_index]);
if (ride != nullptr)
{
ride->FormatNameTo(gCommonFormatArgs);
gfx_draw_string_left(dpi, stringId, gCommonFormatArgs, COLOUR_BLACK, { 0, y - 1 });
}
}
}
/**
*
* rct2: 0x00697BF8
*/
2018-06-22 23:21:44 +02:00
void window_guest_finance_update(rct_window* w)
{
w->frame_no++;
widget_invalidate(w, WIDX_TAB_2);
widget_invalidate(w, WIDX_TAB_4);
}
/**
*
* rct2: 0x00697A08
*/
2018-06-22 23:21:44 +02:00
void window_guest_finance_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
// cx dx
auto screenCoords = w->windowPos
+ ScreenCoordsXY{ window_guest_finance_widgets[WIDX_PAGE_BACKGROUND].left + 4,
window_guest_finance_widgets[WIDX_PAGE_BACKGROUND].top + 4 };
// Cash in pocket
2020-06-03 00:40:47 +02:00
auto ft = Formatter::Common();
ft.Add<money32>(peep->CashInPocket);
gfx_draw_string_left(dpi, STR_GUEST_STAT_CASH_IN_POCKET, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
// Cash spent
screenCoords.y += LIST_ROW_HEIGHT;
2020-06-03 00:40:47 +02:00
ft = Formatter::Common();
2020-06-06 15:17:43 +02:00
ft.Add<money32>(peep->CashSpent);
gfx_draw_string_left(dpi, STR_GUEST_STAT_CASH_SPENT, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
screenCoords.y += LIST_ROW_HEIGHT * 2;
gfx_fill_rect_inset(
dpi, screenCoords.x, screenCoords.y - 6, screenCoords.x + 179, screenCoords.y - 5, w->colours[1],
INSET_RECT_FLAG_BORDER_INSET);
// Paid to enter
2020-06-03 00:40:47 +02:00
ft = Formatter::Common();
ft.Add<money32>(peep->PaidToEnter);
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_ENTRANCE_FEE, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
// Paid on rides
screenCoords.y += LIST_ROW_HEIGHT;
2020-06-03 00:40:47 +02:00
ft = Formatter::Common();
ft.Add<money32>(peep->PaidOnRides);
ft.Add<uint16_t>(peep->GuestNumRides);
if (peep->GuestNumRides != 1)
2018-06-22 23:21:44 +02:00
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_RIDE_PLURAL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
2018-06-22 23:21:44 +02:00
else
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_RIDE, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
// Paid on food
screenCoords.y += LIST_ROW_HEIGHT;
2020-06-03 00:40:47 +02:00
ft = Formatter::Common();
ft.Add<money32>(peep->PaidOnFood);
ft.Add<uint16_t>(peep->AmountOfFood);
2020-05-31 14:05:10 +02:00
if (peep->AmountOfFood != 1)
2018-06-22 23:21:44 +02:00
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_FOOD_PLURAL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
2018-06-22 23:21:44 +02:00
else
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_FOOD, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
// Paid on drinks
screenCoords.y += LIST_ROW_HEIGHT;
2020-06-03 00:40:47 +02:00
ft = Formatter::Common();
ft.Add<money32>(peep->PaidOnDrink);
2020-06-03 00:40:47 +02:00
ft.Add<uint16_t>(peep->AmountOfDrinks);
2020-05-31 14:05:10 +02:00
if (peep->AmountOfDrinks != 1)
2018-06-22 23:21:44 +02:00
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_DRINK_PLURAL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
2018-06-22 23:21:44 +02:00
else
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_DRINK, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
// Paid on souvenirs
screenCoords.y += LIST_ROW_HEIGHT;
2020-06-03 00:40:47 +02:00
ft = Formatter::Common();
ft.Add<money32>(peep->PaidOnSouvenirs);
ft.Add<uint16_t>(peep->AmountOfSouvenirs);
2020-05-31 14:05:10 +02:00
if (peep->AmountOfSouvenirs != 1)
2018-06-22 23:21:44 +02:00
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_SOUVENIR_PLURAL, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
2018-06-22 23:21:44 +02:00
else
{
gfx_draw_string_left(dpi, STR_GUEST_EXPENSES_SOUVENIR, gCommonFormatArgs, COLOUR_BLACK, screenCoords);
}
2014-09-14 22:56:45 +02:00
}
/**
*
* rct2: 0x00697EB4
*/
2018-06-22 23:21:44 +02:00
void window_guest_thoughts_update(rct_window* w)
{
w->frame_no++;
2014-09-14 22:56:45 +02:00
widget_invalidate(w, WIDX_TAB_2);
widget_invalidate(w, WIDX_TAB_5);
2014-09-14 22:56:45 +02:00
2019-05-04 18:23:29 +02:00
auto peep = GET_PEEP(w->number);
if (peep->WindowInvalidateFlags & PEEP_INVALIDATE_PEEP_THOUGHTS)
2019-05-04 18:23:29 +02:00
{
peep->WindowInvalidateFlags &= ~PEEP_INVALIDATE_PEEP_THOUGHTS;
w->Invalidate();
2019-05-04 18:23:29 +02:00
}
2014-09-14 22:56:45 +02:00
}
/**
*
* rct2: 0x00697D2A
*/
2018-06-22 23:21:44 +02:00
void window_guest_thoughts_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
2019-02-28 20:28:58 +01:00
Peep* peep = GET_PEEP(w->number);
// cx dx
auto screenCoords = w->windowPos
+ ScreenCoordsXY{ window_guest_thoughts_widgets[WIDX_PAGE_BACKGROUND].left + 4,
window_guest_thoughts_widgets[WIDX_PAGE_BACKGROUND].top + 4 };
gfx_draw_string_left(dpi, STR_GUEST_RECENT_THOUGHTS_LABEL, nullptr, COLOUR_BLACK, screenCoords);
screenCoords.y += 10;
2020-06-06 15:03:58 +02:00
for (rct_peep_thought* thought = peep->Thoughts; thought < &peep->Thoughts[PEEP_MAX_THOUGHTS]; ++thought)
2018-06-22 23:21:44 +02:00
{
if (thought->type == PEEP_THOUGHT_TYPE_NONE)
return;
if (thought->freshness == 0)
continue;
int32_t width = window_guest_thoughts_widgets[WIDX_PAGE_BACKGROUND].right
2018-06-22 23:21:44 +02:00
- window_guest_thoughts_widgets[WIDX_PAGE_BACKGROUND].left - 8;
peep_thought_set_format_args(thought);
screenCoords.y += gfx_draw_string_left_wrapped(
dpi, gCommonFormatArgs, screenCoords, width, STR_BLACK_STRING, COLOUR_BLACK);
// If this is the last visible line end drawing.
if (screenCoords.y > w->windowPos.y + window_guest_thoughts_widgets[WIDX_PAGE_BACKGROUND].bottom - 32)
2018-06-22 23:21:44 +02:00
return;
}
}
/**
*
* rct2: 0x00698315
*/
2018-06-22 23:21:44 +02:00
void window_guest_inventory_update(rct_window* w)
{
w->frame_no++;
widget_invalidate(w, WIDX_TAB_2);
widget_invalidate(w, WIDX_TAB_6);
2019-05-04 18:23:29 +02:00
auto peep = GET_PEEP(w->number);
if (peep->WindowInvalidateFlags & PEEP_INVALIDATE_PEEP_INVENTORY)
2019-05-04 18:23:29 +02:00
{
peep->WindowInvalidateFlags &= ~PEEP_INVALIDATE_PEEP_INVENTORY;
w->Invalidate();
2019-05-04 18:23:29 +02:00
}
}
2019-02-28 20:28:58 +01:00
static rct_string_id window_guest_inventory_format_item(Peep* peep, int32_t item)
2015-08-05 20:17:37 +02:00
{
auto& park = OpenRCT2::GetContext()->GetGameState()->GetPark();
auto parkName = park.Name.c_str();
// Default arguments
auto ft = Formatter::Common();
ft.Add<uint32_t>(ShopItems[item].Image);
ft.Add<rct_string_id>(ShopItems[item].Naming.Display);
ft.Add<rct_string_id>(STR_STRING);
ft.Add<const char*>(parkName);
// Special overrides
Ride* ride{};
2018-06-22 23:21:44 +02:00
switch (item)
{
case SHOP_ITEM_BALLOON:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Add<uint32_t>(SPRITE_ID_PALETTE_COLOUR_1(peep->BalloonColour) | ShopItems[item].Image);
break;
2018-06-22 23:21:44 +02:00
case SHOP_ITEM_PHOTO:
ride = get_ride(peep->Photo1RideRef);
if (ride != nullptr)
ride->FormatNameTo(gCommonFormatArgs + 6);
break;
2018-06-22 23:21:44 +02:00
case SHOP_ITEM_UMBRELLA:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Add<uint32_t>(SPRITE_ID_PALETTE_COLOUR_1(peep->UmbrellaColour) | ShopItems[item].Image);
break;
2018-06-22 23:21:44 +02:00
case SHOP_ITEM_VOUCHER:
switch (peep->VoucherType)
2018-06-22 23:21:44 +02:00
{
case VOUCHER_TYPE_PARK_ENTRY_FREE:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Increment(6);
ft.Add<rct_string_id>(STR_PEEP_INVENTORY_VOUCHER_PARK_ENTRY_FREE);
ft.Add<rct_string_id>(STR_STRING);
ft.Add<const char*>(parkName);
2018-06-22 23:21:44 +02:00
break;
case VOUCHER_TYPE_RIDE_FREE:
ride = get_ride(peep->VoucherArguments);
if (ride != nullptr)
{
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Increment(6);
ft.Add<rct_string_id>(STR_PEEP_INVENTORY_VOUCHER_RIDE_FREE);
ride->FormatNameTo(gCommonFormatArgs + 8);
}
2018-06-22 23:21:44 +02:00
break;
case VOUCHER_TYPE_PARK_ENTRY_HALF_PRICE:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Increment(6);
ft.Add<rct_string_id>(STR_PEEP_INVENTORY_VOUCHER_PARK_ENTRY_HALF_PRICE);
ft.Add<rct_string_id>(STR_STRING);
ft.Add<const char*>(parkName);
2018-06-22 23:21:44 +02:00
break;
case VOUCHER_TYPE_FOOD_OR_DRINK_FREE:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Increment(6);
ft.Add<rct_string_id>(STR_PEEP_INVENTORY_VOUCHER_FOOD_OR_DRINK_FREE);
ft.Add<rct_string_id>(ShopItems[peep->VoucherArguments].Naming.Singular);
2018-06-22 23:21:44 +02:00
break;
}
break;
case SHOP_ITEM_HAT:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Add<uint32_t>(SPRITE_ID_PALETTE_COLOUR_1(peep->HatColour) | ShopItems[item].Image);
2018-06-22 23:21:44 +02:00
break;
case SHOP_ITEM_TSHIRT:
2020-06-03 12:54:39 +02:00
ft.Rewind();
ft.Add<uint32_t>(SPRITE_ID_PALETTE_COLOUR_1(peep->TshirtColour) | ShopItems[item].Image);
2018-06-22 23:21:44 +02:00
break;
case SHOP_ITEM_PHOTO2:
ride = get_ride(peep->Photo2RideRef);
if (ride != nullptr)
ride->FormatNameTo(gCommonFormatArgs + 6);
2018-06-22 23:21:44 +02:00
break;
case SHOP_ITEM_PHOTO3:
ride = get_ride(peep->Photo3RideRef);
if (ride != nullptr)
ride->FormatNameTo(gCommonFormatArgs + 6);
2018-06-22 23:21:44 +02:00
break;
case SHOP_ITEM_PHOTO4:
ride = get_ride(peep->Photo4RideRef);
if (ride != nullptr)
ride->FormatNameTo(gCommonFormatArgs + 6);
break;
}
return STR_GUEST_ITEM_FORMAT;
2015-08-05 20:17:37 +02:00
}
/**
*
* rct2: 0x00697F81
*/
2018-06-22 23:21:44 +02:00
void window_guest_inventory_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
2019-02-28 20:28:58 +01:00
const auto guest = (GET_PEEP(w->number))->AsGuest();
if (guest != nullptr)
{
rct_widget* pageBackgroundWidget = &window_guest_inventory_widgets[WIDX_PAGE_BACKGROUND];
auto screenCoords = w->windowPos + ScreenCoordsXY{ pageBackgroundWidget->left + 4, pageBackgroundWidget->top + 2 };
2019-02-28 20:28:58 +01:00
int32_t itemNameWidth = pageBackgroundWidget->right - pageBackgroundWidget->left - 8;
2020-03-01 20:32:35 +01:00
int32_t maxY = w->windowPos.y + w->height - 22;
2019-02-28 20:28:58 +01:00
int32_t numItems = 0;
gfx_draw_string_left(dpi, STR_CARRYING, nullptr, COLOUR_BLACK, screenCoords);
screenCoords.y += 10;
2019-02-28 20:28:58 +01:00
for (int32_t item = 0; item < SHOP_ITEM_COUNT; item++)
{
if (screenCoords.y >= maxY)
2019-02-28 20:28:58 +01:00
break;
if (!guest->HasItem(item))
continue;
2019-02-28 20:28:58 +01:00
rct_string_id stringId = window_guest_inventory_format_item(guest, item);
screenCoords.y += gfx_draw_string_left_wrapped(
dpi, gCommonFormatArgs, screenCoords, itemNameWidth, stringId, COLOUR_BLACK);
2019-02-28 20:28:58 +01:00
numItems++;
}
2019-02-28 20:28:58 +01:00
if (numItems == 0)
{
gfx_draw_string_left(dpi, STR_NOTHING, nullptr, COLOUR_BLACK, screenCoords);
2019-02-28 20:28:58 +01:00
}
}
}
2019-05-04 16:53:25 +02:00
/**
*
* rct2: 0x00698315
*/
void window_guest_debug_update(rct_window* w)
{
w->frame_no++;
w->Invalidate();
2019-05-04 16:53:25 +02:00
}
void window_guest_debug_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
char buffer[512]{};
char buffer2[512]{};
window_draw_widgets(w, dpi);
window_guest_overview_tab_paint(w, dpi);
window_guest_stats_tab_paint(w, dpi);
window_guest_rides_tab_paint(w, dpi);
window_guest_finance_tab_paint(w, dpi);
window_guest_thoughts_tab_paint(w, dpi);
window_guest_inventory_tab_paint(w, dpi);
window_guest_debug_tab_paint(w, dpi);
2019-05-02 22:56:03 +02:00
auto peep = GET_PEEP(w->number);
auto screenCoords = w->windowPos
+ ScreenCoordsXY{ window_guest_debug_widgets[WIDX_PAGE_BACKGROUND].left + 4,
window_guest_debug_widgets[WIDX_PAGE_BACKGROUND].top + 4 };
{
2020-06-03 00:40:47 +02:00
auto ft = Formatter::Common();
ft.Add<uint32_t>(peep->sprite_index);
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_SPRITE_INDEX, gCommonFormatArgs, 0, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT;
{
int32_t args[] = { peep->x, peep->y, peep->x };
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_POSITION, args, 0, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT;
{
int32_t args[] = { peep->NextLoc.x, peep->NextLoc.y, peep->NextLoc.z };
format_string(buffer, sizeof(buffer), STR_PEEP_DEBUG_NEXT, args);
if (peep->GetNextIsSurface())
{
format_string(buffer2, sizeof(buffer2), STR_PEEP_DEBUG_NEXT_SURFACE, nullptr);
safe_strcat(buffer, buffer2, sizeof(buffer));
}
if (peep->GetNextIsSloped())
{
int32_t args2[1] = { peep->GetNextDirection() };
format_string(buffer2, sizeof(buffer2), STR_PEEP_DEBUG_NEXT_SLOPE, args2);
safe_strcat(buffer, buffer2, sizeof(buffer));
}
gfx_draw_string(dpi, buffer, 0, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT;
{
int32_t args[] = { peep->DestinationX, peep->DestinationY, peep->DestinationTolerance };
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_DEST, args, 0, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT;
{
int32_t args[] = { peep->PathfindGoal.x, peep->PathfindGoal.y, peep->PathfindGoal.z, peep->PathfindGoal.direction };
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_PATHFIND_GOAL, args, 0, screenCoords);
}
screenCoords.y += LIST_ROW_HEIGHT;
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_PATHFIND_HISTORY, nullptr, 0, screenCoords);
screenCoords.y += LIST_ROW_HEIGHT;
screenCoords.x += 10;
for (auto& point : peep->PathfindHistory)
{
int32_t args[] = { point.x, point.y, point.z, point.direction };
gfx_draw_string_left(dpi, STR_PEEP_DEBUG_PATHFIND_HISTORY_ITEM, args, 0, screenCoords);
screenCoords.y += LIST_ROW_HEIGHT;
}
screenCoords.x -= 10;
}