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

760 lines
28 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.
*****************************************************************************/
2017-10-16 00:13:22 +02:00
#include <limits>
2018-06-22 23:21:44 +02:00
#include <openrct2-ui/interface/Dropdown.h>
#include <openrct2-ui/interface/Viewport.h>
#include <openrct2-ui/interface/Widget.h>
2017-08-12 23:06:12 +02:00
#include <openrct2-ui/windows/Window.h>
#include <openrct2/Context.h>
2017-11-30 18:17:06 +01:00
#include <openrct2/Game.h>
2017-12-12 14:52:57 +01:00
#include <openrct2/Input.h>
Split actions hpp files into separate h and cpp files (#13548) * Split up SmallSceneryPlace/Remove Added undo function for Remove Scenery * Refactor: Balloon and Banner actions hpp=>h/cpp * Refactor: rename all action *.hpp files to *.cpp This is preparation for separation in later commits. Note that without the complete set of commits in this branch, the code will not build. * Refactor Clear, Climate, Custom, and Footpath actions hpp=>h/cpp * VSCode: add src subdirectories to includePath * Refactor Guest actions hpp=>h/cpp * Refactor Land actions hpp=>h/cpp * Refactor LargeScenery actions hpp=>h/cpp * Refactor Load, Maze, Network actions hpp=>h/cpp * Refactor Park actions hpp=>h/cpp * Refactor/style: move private function declarations in actions *.h Previous action .h files included private function declarations with private member variables, before public function declarations. This commit re-orders the header files to the following order: - public member variables - private member variables - public functions - private functions * Refactor Pause action hpp=>h/cpp * Refactor Peep, Place, Player actions hpp=>h/cpp * Refactor Ride actions hpp=>h/cpp * Refactor Scenario, Set*, Sign* actions hpp=>h/cpp * Refactor SmallScenerySetColourAction hpp=>h/cpp * Refactor Staff actions hpp=>h/cpp * Refactor Surface, Tile, Track* actions hpp=>h/cpp * Refactor Wall and Water actions hpp=>h/cpp * Fix various includes and other compile errors Update includes for tests. Move static function declarations to .h files Add explicit includes to various files that were previously implicit (the required header was a nested include in an action hpp file, and the action .h file does not include that header) Move RideSetStatus string enum to the cpp file to avoid unused imports * Xcode: modify project file for actions refactor * Cleanup whitespace and end-of-file newlines Co-authored-by: duncanspumpkin <duncans_pumpkin@hotmail.co.uk>
2020-12-10 07:39:10 +01:00
#include <openrct2/actions/StaffFireAction.h>
#include <openrct2/actions/StaffSetColourAction.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/config/Config.h>
#include <openrct2/drawing/Drawing.h>
2018-01-06 18:32:25 +01:00
#include <openrct2/localisation/Localisation.h>
2018-06-22 23:21:44 +02:00
#include <openrct2/management/Finance.h>
2017-10-13 10:06:36 +02:00
#include <openrct2/peep/Staff.h>
#include <openrct2/sprites.h>
2017-12-13 13:02:24 +01:00
#include <openrct2/util/Util.h>
2018-06-22 23:21:44 +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>
2018-06-22 23:21:44 +02:00
#include <openrct2/world/Sprite.h>
#include <vector>
// clang-format off
enum {
WINDOW_STAFF_LIST_TAB_HANDYMEN,
WINDOW_STAFF_LIST_TAB_MECHANICS,
WINDOW_STAFF_LIST_TAB_SECURITY,
WINDOW_STAFF_LIST_TAB_ENTERTAINERS
2017-08-02 00:20:32 +02:00
};
static std::vector<uint16_t> StaffList;
static bool _quick_fire_mode = false;
2015-06-10 18:17:42 +02:00
static void window_staff_list_close(rct_window *w);
2017-05-01 15:41:45 +02:00
static void window_staff_list_mouseup(rct_window *w, rct_widgetindex widgetIndex);
static void window_staff_list_resize(rct_window *w);
static void window_staff_list_mousedown(rct_window *w, rct_widgetindex widgetIndex, rct_widget* widget);
static void window_staff_list_dropdown(rct_window *w, rct_widgetindex widgetIndex, int32_t dropdownIndex);
static void window_staff_list_update(rct_window *w);
static void window_staff_list_tooldown(rct_window *w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords);
2017-05-01 15:41:45 +02:00
static void window_staff_list_toolabort(rct_window *w, rct_widgetindex widgetIndex);
static void window_staff_list_scrollgetsize(rct_window *w, int32_t scrollIndex, int32_t *width, int32_t *height);
static void window_staff_list_scrollmousedown(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords);
static void window_staff_list_scrollmouseover(rct_window *w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords);
static void window_staff_list_invalidate(rct_window *w);
static void window_staff_list_paint(rct_window *w, rct_drawpixelinfo *dpi);
static void window_staff_list_scrollpaint(rct_window *w, rct_drawpixelinfo *dpi, int32_t scrollIndex);
static rct_window_event_list window_staff_list_events([](auto& events)
{
events.close = &window_staff_list_close;
events.mouse_up = &window_staff_list_mouseup;
events.resize = &window_staff_list_resize;
events.mouse_down = &window_staff_list_mousedown;
events.dropdown = &window_staff_list_dropdown;
events.update = &window_staff_list_update;
events.tool_down = &window_staff_list_tooldown;
events.tool_abort = &window_staff_list_toolabort;
events.get_scroll_size = &window_staff_list_scrollgetsize;
events.scroll_mousedown = &window_staff_list_scrollmousedown;
events.scroll_mouseover = &window_staff_list_scrollmouseover;
events.invalidate = &window_staff_list_invalidate;
events.paint = &window_staff_list_paint;
events.scroll_paint = &window_staff_list_scrollpaint;
});
enum WINDOW_STAFF_LIST_WIDGET_IDX {
WIDX_STAFF_LIST_BACKGROUND,
WIDX_STAFF_LIST_TITLE,
WIDX_STAFF_LIST_CLOSE,
WIDX_STAFF_LIST_TAB_CONTENT_PANEL,
WIDX_STAFF_LIST_HANDYMEN_TAB,
WIDX_STAFF_LIST_MECHANICS_TAB,
WIDX_STAFF_LIST_SECURITY_TAB,
WIDX_STAFF_LIST_ENTERTAINERS_TAB,
WIDX_STAFF_LIST_LIST,
WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER,
WIDX_STAFF_LIST_HIRE_BUTTON,
WIDX_STAFF_LIST_QUICK_FIRE,
WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON,
WIDX_STAFF_LIST_MAP,
};
2020-05-05 22:26:14 +02:00
static constexpr const rct_string_id WINDOW_TITLE = STR_STAFF;
2020-05-09 17:05:01 +02:00
static constexpr const int32_t WW = 320;
static constexpr const int32_t WH = 270;
2019-10-24 05:38:13 +02:00
constexpr int32_t MAX_WW = 500;
constexpr int32_t MAX_WH = 450;
static rct_widget window_staff_list_widgets[] = {
2020-05-09 16:44:21 +02:00
WINDOW_SHIM(WINDOW_TITLE, WW, WH),
MakeWidget({ 0, 43}, { WW, WH - 43}, WindowWidgetType::Resize, WindowColour::Secondary ), // tab content panel
MakeTab ({ 3, 17}, STR_STAFF_HANDYMEN_TAB_TIP ), // handymen tab
MakeTab ({ 34, 17}, STR_STAFF_MECHANICS_TAB_TIP ), // mechanics tab
MakeTab ({ 65, 17}, STR_STAFF_SECURITY_TAB_TIP ), // security guards tab
MakeTab ({ 96, 17}, STR_STAFF_ENTERTAINERS_TAB_TIP), // entertainers tab
MakeWidget({ 3, 72}, {WW - 6, 195}, WindowWidgetType::Scroll, WindowColour::Secondary, SCROLL_VERTICAL ), // staff list
MakeWidget({130, 58}, { 12, 12}, WindowWidgetType::ColourBtn, WindowColour::Secondary, STR_NONE, STR_UNIFORM_COLOUR_TIP ), // uniform colour picker
MakeWidget({165, 17}, { 145, 13}, WindowWidgetType::Button, WindowColour::Primary , STR_NONE, STR_HIRE_STAFF_TIP ), // hire button
MakeWidget({243, 46}, { 24, 24}, WindowWidgetType::FlatBtn, WindowColour::Secondary, SPR_DEMOLISH, STR_QUICK_FIRE_STAFF ), // quick fire staff
MakeWidget({267, 46}, { 24, 24}, WindowWidgetType::FlatBtn, WindowColour::Secondary, SPR_PATROL_BTN, STR_SHOW_PATROL_AREA_TIP ), // show staff patrol area tool
MakeWidget({291, 46}, { 24, 24}, WindowWidgetType::FlatBtn, WindowColour::Secondary, SPR_MAP, STR_SHOW_STAFF_ON_MAP_TIP ), // show staff on map button
{ WIDGETS_END },
};
static int32_t _windowStaffListHighlightedIndex;
static int32_t _windowStaffListSelectedTab = WINDOW_STAFF_LIST_TAB_HANDYMEN;
static EntertainerCostume window_staff_list_get_random_entertainer_costume();
struct staff_naming_convention
{
rct_string_id plural;
rct_string_id singular;
rct_string_id action_hire;
};
static constexpr const staff_naming_convention StaffNamingConvention[] = {
{ STR_HANDYMAN_PLURAL, STR_HANDYMAN_SINGULAR, STR_HIRE_HANDYMAN },
{ STR_MECHANIC_PLURAL, STR_MECHANIC_SINGULAR, STR_HIRE_MECHANIC },
{ STR_SECURITY_GUARD_PLURAL, STR_SECURITY_GUARD_SINGULAR, STR_HIRE_SECURITY_GUARD },
{ STR_ENTERTAINER_PLURAL, STR_ENTERTAINER_SINGULAR, STR_HIRE_ENTERTAINER },
};
// clang-format on
/*
2018-06-22 23:21:44 +02:00
* rct2: 0x006BD3CC
**/
rct_window* window_staff_list_open()
{
rct_window* window;
// Check if window is already open
window = window_bring_to_front_by_class(WC_STAFF_LIST);
2017-08-15 10:07:44 +02:00
if (window != nullptr)
2017-08-12 23:06:12 +02:00
return window;
window = WindowCreateAutoPos(WW, WH, &window_staff_list_events, WC_STAFF_LIST, WF_10 | WF_RESIZABLE);
window->widgets = window_staff_list_widgets;
2018-06-22 23:21:44 +02:00
window->enabled_widgets = (1 << WIDX_STAFF_LIST_CLOSE) | (1 << WIDX_STAFF_LIST_HANDYMEN_TAB)
| (1 << WIDX_STAFF_LIST_MECHANICS_TAB) | (1 << WIDX_STAFF_LIST_SECURITY_TAB) | (1 << WIDX_STAFF_LIST_ENTERTAINERS_TAB)
| (1 << WIDX_STAFF_LIST_HIRE_BUTTON) | (1 << WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER)
| (1 << WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON) | (1 << WIDX_STAFF_LIST_MAP) | (1 << WIDX_STAFF_LIST_QUICK_FIRE);
WindowInitScrollWidgets(window);
_windowStaffListHighlightedIndex = -1;
window->list_information_type = 0;
window_staff_list_widgets[WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER].type = WindowWidgetType::Empty;
window->min_width = WW;
window->min_height = WH;
window->max_width = MAX_WW;
window->max_height = MAX_WH;
_quick_fire_mode = false;
2017-08-12 23:06:12 +02:00
WindowStaffListRefresh();
2017-08-12 23:06:12 +02:00
return window;
}
void WindowStaffListRefresh()
{
auto w = window_find_by_class(WC_STAFF_LIST);
if (w == nullptr)
{
return;
}
StaffList.clear();
2020-06-17 22:42:40 +02:00
for (auto peep : EntityList<Staff>(EntityListId::Peep))
{
sprite_set_flashing(peep, false);
if (static_cast<uint8_t>(peep->AssignedStaffType) != _windowStaffListSelectedTab)
continue;
sprite_set_flashing(peep, true);
StaffList.push_back(peep->sprite_index);
}
std::sort(StaffList.begin(), StaffList.end(), [](const uint16_t a, const uint16_t b) { return peep_compare(a, b) < 0; });
}
2018-06-22 23:21:44 +02:00
static void window_staff_list_cancel_tools(rct_window* w)
{
if (input_test_flag(INPUT_FLAG_TOOL_ACTIVE))
if (w->classification == gCurrentToolWidget.window_classification && w->number == gCurrentToolWidget.window_number)
tool_cancel();
}
/*
2018-06-22 23:21:44 +02:00
* rct2: 0x006BD9B1
**/
void window_staff_list_close(rct_window* w)
{
window_staff_list_cancel_tools(w);
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD94C
*/
static void window_staff_list_mouseup(rct_window* w, rct_widgetindex widgetIndex)
{
2018-06-22 23:21:44 +02:00
switch (widgetIndex)
{
2018-06-22 23:21:44 +02:00
case WIDX_STAFF_LIST_CLOSE:
window_close(w);
break;
case WIDX_STAFF_LIST_HIRE_BUTTON:
{
StaffType staffType = static_cast<StaffType>(_windowStaffListSelectedTab);
auto costume = EntertainerCostume::Count;
if (staffType == StaffType::Entertainer)
2018-06-22 23:21:44 +02:00
{
costume = window_staff_list_get_random_entertainer_costume();
2018-06-22 23:21:44 +02:00
}
2019-03-11 16:53:03 +01:00
staff_hire_new_member(staffType, costume);
2018-06-22 23:21:44 +02:00
break;
}
2018-06-22 23:21:44 +02:00
case WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON:
if (!tool_set(w, WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON, Tool::Crosshair))
2018-06-22 23:21:44 +02:00
{
show_gridlines();
gStaffDrawPatrolAreas = _windowStaffListSelectedTab | 0x8000;
gfx_invalidate_screen();
}
break;
case WIDX_STAFF_LIST_MAP:
context_open_window(WC_MAP);
break;
case WIDX_STAFF_LIST_QUICK_FIRE:
_quick_fire_mode ^= 1;
w->Invalidate();
2018-06-22 23:21:44 +02:00
break;
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BDD5D
*/
static void window_staff_list_resize(rct_window* w)
{
w->min_width = WW;
w->min_height = WH;
2018-06-22 23:21:44 +02:00
if (w->width < w->min_width)
{
w->width = w->min_width;
w->Invalidate();
}
2018-06-22 23:21:44 +02:00
if (w->height < w->min_height)
{
w->height = w->min_height;
w->Invalidate();
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD971
*/
static void window_staff_list_mousedown(rct_window* w, rct_widgetindex widgetIndex, rct_widget* widget)
{
int16_t newSelectedTab;
2018-06-22 23:21:44 +02:00
switch (widgetIndex)
{
case WIDX_STAFF_LIST_HANDYMEN_TAB:
case WIDX_STAFF_LIST_MECHANICS_TAB:
case WIDX_STAFF_LIST_SECURITY_TAB:
case WIDX_STAFF_LIST_ENTERTAINERS_TAB:
newSelectedTab = widgetIndex - WIDX_STAFF_LIST_HANDYMEN_TAB;
if (_windowStaffListSelectedTab == newSelectedTab)
break;
_windowStaffListSelectedTab = static_cast<uint8_t>(newSelectedTab);
w->Invalidate();
2018-06-22 23:21:44 +02:00
w->scrolls[0].v_top = 0;
window_staff_list_cancel_tools(w);
break;
case WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER:
WindowDropdownShowColour(
w, widget, w->colours[1], staff_get_colour(static_cast<StaffType>(_windowStaffListSelectedTab)));
break;
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD9A6
*/
static void window_staff_list_dropdown(rct_window* w, rct_widgetindex widgetIndex, int32_t dropdownIndex)
{
if (widgetIndex == WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER && dropdownIndex != -1)
{
auto action = StaffSetColourAction(static_cast<StaffType>(_windowStaffListSelectedTab), dropdownIndex);
GameActions::Execute(&action);
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BDCEA
*/
void window_staff_list_update(rct_window* w)
{
w->list_information_type++;
2018-06-22 23:21:44 +02:00
if (w->list_information_type >= 24)
{
w->list_information_type = 0;
2018-06-22 23:21:44 +02:00
}
else
{
widget_invalidate(w, WIDX_STAFF_LIST_HANDYMEN_TAB + _windowStaffListSelectedTab);
// Enable highlighting of these staff members in map window
2018-06-22 23:21:44 +02:00
if (window_find_by_class(WC_MAP) != nullptr)
{
gWindowMapFlashingFlags |= MapFlashingFlags::StaffListOpen;
2020-06-17 22:42:40 +02:00
for (auto peep : EntityList<Staff>(EntityListId::Peep))
2018-06-22 23:21:44 +02:00
{
2020-01-19 18:02:43 +01:00
sprite_set_flashing(peep, false);
if (static_cast<uint8_t>(peep->AssignedStaffType) == _windowStaffListSelectedTab)
2018-06-22 23:21:44 +02:00
{
2020-01-19 18:02:43 +01:00
sprite_set_flashing(peep, true);
}
}
}
}
// Note this may be slow if number of staff increases a large amount.
// See GuestList for fix (more intents) if required.
WindowStaffListRefresh();
}
/**
*
* rct2: 0x006BD990
*/
static void window_staff_list_tooldown(rct_window* w, rct_widgetindex widgetIndex, const ScreenCoordsXY& screenCoords)
{
2018-06-22 23:21:44 +02:00
if (widgetIndex == WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON)
{
int32_t selectedPeepType = _windowStaffListSelectedTab;
int32_t direction;
2018-11-01 13:53:50 +01:00
TileElement* tileElement;
auto footpathCoords = footpath_get_coordinates_from_pos(screenCoords, &direction, &tileElement);
if (footpathCoords.isNull())
return;
bool isPatrolAreaSet = staff_is_patrol_area_set_for_type(static_cast<StaffType>(selectedPeepType), footpathCoords);
Peep* closestPeep = nullptr;
int32_t closestPeepDistance = std::numeric_limits<int32_t>::max();
2020-06-17 22:42:40 +02:00
for (auto peep : EntityList<Staff>(EntityListId::Peep))
2018-06-22 23:21:44 +02:00
{
if (static_cast<uint8_t>(peep->AssignedStaffType) != selectedPeepType)
continue;
2018-06-22 23:21:44 +02:00
if (isPatrolAreaSet)
{
if (gStaffModes[peep->StaffId] != StaffMode::Patrol)
2018-06-22 23:21:44 +02:00
{
continue;
}
2020-03-07 23:07:47 +01:00
if (!peep->AsStaff()->IsLocationInPatrol(footpathCoords))
2018-06-22 23:21:44 +02:00
{
continue;
}
}
2018-06-22 23:21:44 +02:00
if (peep->x == LOCATION_NULL)
{
continue;
}
int32_t distance = abs(footpathCoords.x - peep->x) + abs(footpathCoords.y - peep->y);
2018-06-22 23:21:44 +02:00
if (distance < closestPeepDistance)
{
closestPeepDistance = distance;
closestPeep = peep;
}
}
2018-06-22 23:21:44 +02:00
if (closestPeep != nullptr)
{
tool_cancel();
2018-06-22 23:21:44 +02:00
rct_window* staffWindow = window_staff_open(closestPeep);
window_event_dropdown_call(staffWindow, WC_PEEP__WIDX_PATROL, 0);
2018-06-22 23:21:44 +02:00
}
else
{
auto ft = Formatter();
ft.Add<rct_string_id>(StaffNamingConvention[selectedPeepType].plural);
context_show_error(STR_NO_THING_IN_PARK_YET, STR_NONE, ft);
}
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD99B
*/
void window_staff_list_toolabort(rct_window* w, rct_widgetindex widgetIndex)
{
2018-06-22 23:21:44 +02:00
if (widgetIndex == WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON)
{
hide_gridlines();
tool_cancel();
gStaffDrawPatrolAreas = 0xFFFF;
gfx_invalidate_screen();
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BDBE6
*/
void window_staff_list_scrollgetsize(rct_window* w, int32_t scrollIndex, int32_t* width, int32_t* height)
{
2018-06-22 23:21:44 +02:00
if (_windowStaffListHighlightedIndex != -1)
{
_windowStaffListHighlightedIndex = -1;
w->Invalidate();
}
*height = static_cast<int16_t>(StaffList.size()) * SCROLLABLE_ROW_HEIGHT;
auto i = *height - window_staff_list_widgets[WIDX_STAFF_LIST_LIST].bottom
+ window_staff_list_widgets[WIDX_STAFF_LIST_LIST].top + 21;
if (i < 0)
i = 0;
2018-06-22 23:21:44 +02:00
if (i < w->scrolls[0].v_top)
{
w->scrolls[0].v_top = i;
w->Invalidate();
}
*width = w->widgets[WIDX_STAFF_LIST_LIST].width() - 15;
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BDC9A
*/
void window_staff_list_scrollmousedown(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords)
{
int32_t i = screenCoords.y / SCROLLABLE_ROW_HEIGHT;
for (auto spriteIndex : StaffList)
2018-06-22 23:21:44 +02:00
{
if (i == 0)
{
if (_quick_fire_mode)
{
auto staffFireAction = StaffFireAction(spriteIndex);
GameActions::Execute(&staffFireAction);
}
else
2017-10-06 23:21:00 +02:00
{
auto peep = GetEntity<Staff>(spriteIndex);
if (peep != nullptr)
{
auto intent = Intent(WC_PEEP);
intent.putExtra(INTENT_EXTRA_PEEP, peep);
context_open_intent(&intent);
}
2017-10-06 23:21:00 +02:00
}
break;
}
i--;
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BDC6B
*/
void window_staff_list_scrollmouseover(rct_window* w, int32_t scrollIndex, const ScreenCoordsXY& screenCoords)
{
int32_t i;
i = screenCoords.y / SCROLLABLE_ROW_HEIGHT;
2018-06-22 23:21:44 +02:00
if (i != _windowStaffListHighlightedIndex)
{
_windowStaffListHighlightedIndex = i;
w->Invalidate();
}
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD477
*/
void window_staff_list_invalidate(rct_window* w)
{
2018-06-22 23:21:44 +02:00
int32_t pressed_widgets = w->pressed_widgets
& ~((1LL << WIDX_STAFF_LIST_HANDYMEN_TAB) | (1LL << WIDX_STAFF_LIST_MECHANICS_TAB)
| (1LL << WIDX_STAFF_LIST_SECURITY_TAB) | (1LL << WIDX_STAFF_LIST_ENTERTAINERS_TAB));
uint8_t tabIndex = _windowStaffListSelectedTab;
uint8_t widgetIndex = tabIndex + WIDX_STAFF_LIST_HANDYMEN_TAB;
w->pressed_widgets = pressed_widgets | (1ULL << widgetIndex);
window_staff_list_widgets[WIDX_STAFF_LIST_HIRE_BUTTON].text = StaffNamingConvention[tabIndex].action_hire;
window_staff_list_widgets[WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER].type = WindowWidgetType::Empty;
2018-06-22 23:21:44 +02:00
if (tabIndex < 3)
{
window_staff_list_widgets[WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER].type = WindowWidgetType::ColourBtn;
auto spriteIdPalette = SPRITE_ID_PALETTE_COLOUR_1(
static_cast<uint32_t>(staff_get_colour(static_cast<StaffType>(tabIndex))));
window_staff_list_widgets[WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER].image = spriteIdPalette | IMAGE_TYPE_TRANSPARENT
| SPR_PALETTE_BTN;
}
if (_quick_fire_mode)
w->pressed_widgets |= (1ULL << WIDX_STAFF_LIST_QUICK_FIRE);
else
w->pressed_widgets &= ~(1ULL << WIDX_STAFF_LIST_QUICK_FIRE);
window_staff_list_widgets[WIDX_STAFF_LIST_BACKGROUND].right = w->width - 1;
window_staff_list_widgets[WIDX_STAFF_LIST_BACKGROUND].bottom = w->height - 1;
window_staff_list_widgets[WIDX_STAFF_LIST_TAB_CONTENT_PANEL].right = w->width - 1;
window_staff_list_widgets[WIDX_STAFF_LIST_TAB_CONTENT_PANEL].bottom = w->height - 1;
window_staff_list_widgets[WIDX_STAFF_LIST_TITLE].right = w->width - 2;
window_staff_list_widgets[WIDX_STAFF_LIST_CLOSE].left = w->width - 2 - 11;
window_staff_list_widgets[WIDX_STAFF_LIST_CLOSE].right = w->width - 2 - 11 + 10;
window_staff_list_widgets[WIDX_STAFF_LIST_LIST].right = w->width - 4;
window_staff_list_widgets[WIDX_STAFF_LIST_LIST].bottom = w->height - 15;
window_staff_list_widgets[WIDX_STAFF_LIST_QUICK_FIRE].left = w->width - 77;
window_staff_list_widgets[WIDX_STAFF_LIST_QUICK_FIRE].right = w->width - 54;
window_staff_list_widgets[WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON].left = w->width - 53;
window_staff_list_widgets[WIDX_STAFF_LIST_SHOW_PATROL_AREA_BUTTON].right = w->width - 30;
window_staff_list_widgets[WIDX_STAFF_LIST_MAP].left = w->width - 29;
window_staff_list_widgets[WIDX_STAFF_LIST_MAP].right = w->width - 6;
window_staff_list_widgets[WIDX_STAFF_LIST_HIRE_BUTTON].left = w->width - 155;
window_staff_list_widgets[WIDX_STAFF_LIST_HIRE_BUTTON].right = w->width - 11;
}
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD533
*/
void window_staff_list_paint(rct_window* w, rct_drawpixelinfo* dpi)
{
int32_t i;
uint8_t selectedTab;
// Widgets
WindowDrawWidgets(w, dpi);
selectedTab = _windowStaffListSelectedTab;
// Handymen tab image
i = (selectedTab == 0 ? (w->list_information_type & ~3) : 0);
i += GetPeepAnimation(PeepSpriteType::Handyman).base_image + 1;
i |= SPRITE_ID_PALETTE_COLOUR_1(gStaffHandymanColour);
gfx_draw_sprite(
dpi, i,
w->windowPos
+ ScreenCoordsXY{ (window_staff_list_widgets[WIDX_STAFF_LIST_HANDYMEN_TAB].left
+ window_staff_list_widgets[WIDX_STAFF_LIST_HANDYMEN_TAB].right)
/ 2,
window_staff_list_widgets[WIDX_STAFF_LIST_HANDYMEN_TAB].bottom - 6 },
0);
// Mechanic tab image
i = (selectedTab == 1 ? (w->list_information_type & ~3) : 0);
i += GetPeepAnimation(PeepSpriteType::Mechanic).base_image + 1;
i |= SPRITE_ID_PALETTE_COLOUR_1(gStaffMechanicColour);
gfx_draw_sprite(
dpi, i,
w->windowPos
+ ScreenCoordsXY{ (window_staff_list_widgets[WIDX_STAFF_LIST_MECHANICS_TAB].left
+ window_staff_list_widgets[WIDX_STAFF_LIST_MECHANICS_TAB].right)
/ 2,
window_staff_list_widgets[WIDX_STAFF_LIST_MECHANICS_TAB].bottom - 6 },
0);
// Security tab image
i = (selectedTab == 2 ? (w->list_information_type & ~3) : 0);
i += GetPeepAnimation(PeepSpriteType::Security).base_image + 1;
i |= SPRITE_ID_PALETTE_COLOUR_1(gStaffSecurityColour);
gfx_draw_sprite(
dpi, i,
w->windowPos
+ ScreenCoordsXY{ (window_staff_list_widgets[WIDX_STAFF_LIST_SECURITY_TAB].left
+ window_staff_list_widgets[WIDX_STAFF_LIST_SECURITY_TAB].right)
/ 2,
window_staff_list_widgets[WIDX_STAFF_LIST_SECURITY_TAB].bottom - 6 },
0);
rct_drawpixelinfo sprite_dpi;
if (clip_drawpixelinfo(
&sprite_dpi, dpi,
w->windowPos
+ ScreenCoordsXY{ window_staff_list_widgets[WIDX_STAFF_LIST_ENTERTAINERS_TAB].left + 1,
window_staff_list_widgets[WIDX_STAFF_LIST_ENTERTAINERS_TAB].top + 1 },
2018-06-22 23:21:44 +02:00
window_staff_list_widgets[WIDX_STAFF_LIST_ENTERTAINERS_TAB].right
- window_staff_list_widgets[WIDX_STAFF_LIST_ENTERTAINERS_TAB].left - 1,
window_staff_list_widgets[WIDX_STAFF_LIST_ENTERTAINERS_TAB].bottom
- window_staff_list_widgets[WIDX_STAFF_LIST_ENTERTAINERS_TAB].top - 1))
{
// Entertainers tab image
i = (selectedTab == 3 ? (w->list_information_type & ~3) : 0);
i += GetPeepAnimation(PeepSpriteType::EntertainerElephant).base_image + 1;
gfx_draw_sprite(&sprite_dpi, i, { 0x0F, 0x17 }, 0);
}
2018-06-22 23:21:44 +02:00
if (!(gParkFlags & PARK_FLAGS_NO_MONEY))
{
auto ft = Formatter();
ft.Add<money32>(gStaffWageTable[selectedTab]);
2020-03-01 20:32:35 +01:00
gfx_draw_string_left(
dpi, STR_COST_PER_MONTH, ft.Data(), COLOUR_BLACK, w->windowPos + ScreenCoordsXY{ w->width - 155, 0x20 });
}
2018-06-22 23:21:44 +02:00
if (selectedTab < 3)
{
gfx_draw_string_left(
dpi, STR_UNIFORM_COLOUR, nullptr, COLOUR_BLACK,
w->windowPos + ScreenCoordsXY{ 6, window_staff_list_widgets[WIDX_STAFF_LIST_UNIFORM_COLOUR_PICKER].top + 1 });
}
int32_t staffTypeStringId = StaffNamingConvention[selectedTab].plural;
// If the number of staff for a given type is 1, we use the singular forms of the names
if (StaffList.size() == 1)
2018-06-22 23:21:44 +02:00
{
staffTypeStringId = StaffNamingConvention[selectedTab].singular;
}
auto ft = Formatter();
ft.Add<uint16_t>(StaffList.size());
ft.Add<rct_string_id>(staffTypeStringId);
2018-06-22 23:21:44 +02:00
gfx_draw_string_left(
dpi, STR_STAFF_LIST_COUNTER, ft.Data(), COLOUR_BLACK,
w->windowPos + ScreenCoordsXY{ 4, window_staff_list_widgets[WIDX_STAFF_LIST_LIST].bottom + 2 });
}
/** rct2: 0x00992A08 */
static constexpr const uint32_t staffOrderBaseSprites[] = {
SPR_STAFF_ORDERS_SWEEPING,
SPR_STAFF_ORDERS_INSPECT_RIDES,
0,
0,
};
static constexpr const uint32_t staffCostumeSprites[] = {
2018-06-22 23:21:44 +02:00
SPR_STAFF_COSTUME_PANDA, SPR_STAFF_COSTUME_TIGER, SPR_STAFF_COSTUME_ELEPHANT, SPR_STAFF_COSTUME_ROMAN,
SPR_STAFF_COSTUME_GORILLA, SPR_STAFF_COSTUME_SNOWMAN, SPR_STAFF_COSTUME_KNIGHT, SPR_STAFF_COSTUME_ASTRONAUT,
SPR_STAFF_COSTUME_BANDIT, SPR_STAFF_COSTUME_SHERIFF, SPR_STAFF_COSTUME_PIRATE,
};
/**
2018-06-22 23:21:44 +02:00
*
* rct2: 0x006BD785
*/
void window_staff_list_scrollpaint(rct_window* w, rct_drawpixelinfo* dpi, int32_t scrollIndex)
{
auto dpiCoords = ScreenCoordsXY{ dpi->x, dpi->y };
gfx_fill_rect(
dpi, { dpiCoords, dpiCoords + ScreenCoordsXY{ dpi->width - 1, dpi->height - 1 } }, ColourMapA[w->colours[1]].mid_light);
// How much space do we have for the name and action columns? (Discount scroll area and icons.)
const int32_t nonIconSpace = w->widgets[WIDX_STAFF_LIST_LIST].width() - 15 - 68;
const int32_t nameColumnSize = nonIconSpace * 0.42;
const int32_t actionColumnSize = nonIconSpace * 0.58;
const int32_t actionOffset = w->widgets[WIDX_STAFF_LIST_LIST].right - actionColumnSize - 15;
auto y = 0;
auto i = 0;
for (auto spriteIndex : StaffList)
{
if (y > dpi->y + dpi->height)
{
break;
}
if (y + 11 >= dpi->y)
{
auto peep = GetEntity<Staff>(spriteIndex);
if (peep == nullptr)
{
continue;
}
int32_t format = (_quick_fire_mode ? STR_RED_STRINGID : STR_BLACK_STRING);
if (i == _windowStaffListHighlightedIndex)
{
gfx_filter_rect(dpi, 0, y, 800, y + (SCROLLABLE_ROW_HEIGHT - 1), FilterPaletteID::PaletteDarken1);
format = (_quick_fire_mode ? STR_LIGHTPINK_STRINGID : STR_WINDOW_COLOUR_2_STRINGID);
}
auto ft = Formatter();
peep->FormatNameTo(ft);
DrawTextEllipsised(dpi, { 0, y }, nameColumnSize, format, ft, COLOUR_BLACK);
ft = Formatter();
peep->FormatActionTo(ft);
DrawTextEllipsised(dpi, { actionOffset, y }, actionColumnSize, format, ft, COLOUR_BLACK);
// True if a patrol path is set for the worker
if (gStaffModes[peep->StaffId] == StaffMode::Patrol)
{
gfx_draw_sprite(dpi, SPR_STAFF_PATROL_PATH, { nameColumnSize + 5, y }, 0);
}
auto staffOrderIcon_x = nameColumnSize + 20;
if (peep->AssignedStaffType != StaffType::Entertainer)
{
auto staffOrders = peep->StaffOrders;
auto staffOrderSprite = staffOrderBaseSprites[_windowStaffListSelectedTab];
while (staffOrders != 0)
{
if (staffOrders & 1)
{
gfx_draw_sprite(dpi, staffOrderSprite, { staffOrderIcon_x, y }, 0);
}
staffOrders = staffOrders >> 1;
staffOrderIcon_x += 9;
// TODO: Remove sprite ID addition
staffOrderSprite++;
}
}
else
{
gfx_draw_sprite(dpi, staffCostumeSprites[EnumValue(peep->SpriteType) - 4], { staffOrderIcon_x, y }, 0);
}
}
y += SCROLLABLE_ROW_HEIGHT;
i++;
}
}
static EntertainerCostume window_staff_list_get_random_entertainer_costume()
{
auto result = EntertainerCostume::Panda;
EntertainerCostume costumeList[static_cast<uint8_t>(EntertainerCostume::Count)];
int32_t numCostumes = staff_get_available_entertainer_costume_list(costumeList);
if (numCostumes > 0)
{
int32_t index = util_rand() % numCostumes;
result = costumeList[index];
}
return result;
}