1
0
Fork 0

Codechange: read VLI.index through wrapper to get the right type

pull/13494/head
Rubidium 2025-02-02 08:49:38 +01:00 committed by rubidium42
parent d61b376998
commit 4e84d032b8
4 changed files with 53 additions and 42 deletions

View File

@ -293,7 +293,7 @@ private:
if (g_id == NEW_GROUP) return; if (g_id == NEW_GROUP) return;
/* draw the selected group in white, else we draw it in black */ /* draw the selected group in white, else we draw it in black */
TextColour colour = g_id == this->vli.index ? TC_WHITE : TC_BLACK; TextColour colour = g_id == this->vli.ToGroupID() ? TC_WHITE : TC_BLACK;
const GroupStatistics &stats = GroupStatistics::Get(this->vli.company, g_id, this->vli.vtype); const GroupStatistics &stats = GroupStatistics::Get(this->vli.company, g_id, this->vli.vtype);
bool rtl = _current_text_dir == TD_RTL; bool rtl = _current_text_dir == TD_RTL;
@ -503,7 +503,8 @@ public:
this->group_rename = INVALID_GROUP; this->group_rename = INVALID_GROUP;
} }
if (!(IsAllGroupID(this->vli.index) || IsDefaultGroupID(this->vli.index) || Group::IsValidID(this->vli.index))) { GroupID group = this->vli.ToGroupID();
if (!(IsAllGroupID(group) || IsDefaultGroupID(group) || Group::IsValidID(group))) {
this->vli.index = ALL_GROUP; this->vli.index = ALL_GROUP;
this->CloseChildWindows(WC_DROPDOWN_MENU); this->CloseChildWindows(WC_DROPDOWN_MENU);
} }
@ -524,16 +525,16 @@ public:
case WID_GL_CAPTION: case WID_GL_CAPTION:
/* If selected_group == DEFAULT_GROUP || ALL_GROUP, draw the standard caption /* If selected_group == DEFAULT_GROUP || ALL_GROUP, draw the standard caption
* We list all vehicles or ungrouped vehicles */ * We list all vehicles or ungrouped vehicles */
if (IsDefaultGroupID(this->vli.index) || IsAllGroupID(this->vli.index)) { if (IsDefaultGroupID(this->vli.ToGroupID()) || IsAllGroupID(this->vli.ToGroupID())) {
SetDParam(0, STR_COMPANY_NAME); SetDParam(0, STR_COMPANY_NAME);
SetDParam(1, this->vli.company); SetDParam(1, this->vli.company);
SetDParam(2, this->vehicles.size()); SetDParam(2, this->vehicles.size());
SetDParam(3, this->vehicles.size()); SetDParam(3, this->vehicles.size());
} else { } else {
uint num_vehicle = GetGroupNumVehicle(this->vli.company, this->vli.index, this->vli.vtype); uint num_vehicle = GetGroupNumVehicle(this->vli.company, this->vli.ToGroupID(), this->vli.vtype);
SetDParam(0, STR_GROUP_NAME); SetDParam(0, STR_GROUP_NAME);
SetDParam(1, this->vli.index); SetDParam(1, this->vli.ToGroupID());
SetDParam(2, num_vehicle); SetDParam(2, num_vehicle);
SetDParam(3, num_vehicle); SetDParam(3, num_vehicle);
} }
@ -566,7 +567,8 @@ public:
WID_GL_MANAGE_VEHICLES_DROPDOWN); WID_GL_MANAGE_VEHICLES_DROPDOWN);
/* Disable the group specific function when we select the default group or all vehicles */ /* Disable the group specific function when we select the default group or all vehicles */
this->SetWidgetsDisabledState(IsDefaultGroupID(this->vli.index) || IsAllGroupID(this->vli.index) || _local_company != this->vli.company, GroupID group = this->vli.ToGroupID();
this->SetWidgetsDisabledState(IsDefaultGroupID(group) || IsAllGroupID(group) || _local_company != this->vli.company,
WID_GL_DELETE_GROUP, WID_GL_DELETE_GROUP,
WID_GL_RENAME_GROUP, WID_GL_RENAME_GROUP,
WID_GL_LIVERY_GROUP, WID_GL_LIVERY_GROUP,
@ -584,7 +586,7 @@ public:
/* If not a default group and the group has replace protection, show an enabled replace sprite. */ /* If not a default group and the group has replace protection, show an enabled replace sprite. */
uint16_t protect_sprite = SPR_GROUP_REPLACE_OFF_TRAIN; uint16_t protect_sprite = SPR_GROUP_REPLACE_OFF_TRAIN;
if (!IsDefaultGroupID(this->vli.index) && !IsAllGroupID(this->vli.index) && Group::Get(this->vli.index)->flags.Test(GroupFlag::ReplaceProtection)) protect_sprite = SPR_GROUP_REPLACE_ON_TRAIN; if (!IsDefaultGroupID(group) && !IsAllGroupID(group) && Group::Get(group)->flags.Test(GroupFlag::ReplaceProtection)) protect_sprite = SPR_GROUP_REPLACE_ON_TRAIN;
this->GetWidget<NWidgetCore>(WID_GL_REPLACE_PROTECTION)->SetSprite(protect_sprite + this->vli.vtype); this->GetWidget<NWidgetCore>(WID_GL_REPLACE_PROTECTION)->SetSprite(protect_sprite + this->vli.vtype);
/* Set text of "group by" dropdown widget. */ /* Set text of "group by" dropdown widget. */
@ -665,13 +667,13 @@ public:
break; break;
case WID_GL_LIST_VEHICLE: case WID_GL_LIST_VEHICLE:
if (this->vli.index != ALL_GROUP && this->grouping == GB_NONE) { if (this->vli.ToGroupID() != ALL_GROUP && this->grouping == GB_NONE) {
/* Mark vehicles which are in sub-groups (only if we are not using shared order coalescing) */ /* Mark vehicles which are in sub-groups (only if we are not using shared order coalescing) */
Rect mr = r.WithHeight(this->resize.step_height); Rect mr = r.WithHeight(this->resize.step_height);
auto [first, last] = this->vscroll->GetVisibleRangeIterators(this->vehgroups); auto [first, last] = this->vscroll->GetVisibleRangeIterators(this->vehgroups);
for (auto it = first; it != last; ++it) { for (auto it = first; it != last; ++it) {
const Vehicle *v = it->GetSingleVehicle(); const Vehicle *v = it->GetSingleVehicle();
if (v->group_id != this->vli.index) { if (v->group_id != this->vli.ToGroupID()) {
GfxFillRect(mr.Shrink(WidgetDimensions::scaled.bevel), GetColourGradient(COLOUR_GREY, SHADE_DARK), FILLRECT_CHECKER); GfxFillRect(mr.Shrink(WidgetDimensions::scaled.bevel), GetColourGradient(COLOUR_GREY, SHADE_DARK), FILLRECT_CHECKER);
} }
mr = mr.Translate(0, this->resize.step_height); mr = mr.Translate(0, this->resize.step_height);
@ -722,7 +724,7 @@ public:
break; break;
case WID_GL_ALL_VEHICLES: // All vehicles button case WID_GL_ALL_VEHICLES: // All vehicles button
if (!IsAllGroupID(this->vli.index)) { if (!IsAllGroupID(this->vli.ToGroupID())) {
this->vli.index = ALL_GROUP; this->vli.index = ALL_GROUP;
this->vehgroups.ForceRebuild(); this->vehgroups.ForceRebuild();
this->SetDirty(); this->SetDirty();
@ -730,7 +732,7 @@ public:
break; break;
case WID_GL_DEFAULT_VEHICLES: // Ungrouped vehicles button case WID_GL_DEFAULT_VEHICLES: // Ungrouped vehicles button
if (!IsDefaultGroupID(this->vli.index)) { if (!IsDefaultGroupID(this->vli.ToGroupID())) {
this->vli.index = DEFAULT_GROUP; this->vli.index = DEFAULT_GROUP;
this->vehgroups.ForceRebuild(); this->vehgroups.ForceRebuild();
this->SetDirty(); this->SetDirty();
@ -749,7 +751,7 @@ public:
group_display->pos_x + WidgetDimensions::scaled.framerect.left + it->indent * WidgetDimensions::scaled.hsep_indent; group_display->pos_x + WidgetDimensions::scaled.framerect.left + it->indent * WidgetDimensions::scaled.hsep_indent;
if (click_count > 1 || (pt.x >= x && pt.x < (int)(x + this->column_size[VGC_FOLD].width))) { if (click_count > 1 || (pt.x >= x && pt.x < (int)(x + this->column_size[VGC_FOLD].width))) {
GroupID g = this->vli.index; GroupID g = this->vli.ToGroupID();
if (!IsAllGroupID(g) && !IsDefaultGroupID(g)) { if (!IsAllGroupID(g) && !IsDefaultGroupID(g)) {
do { do {
g = Group::Get(g)->parent; g = Group::Get(g)->parent;
@ -832,22 +834,22 @@ public:
} }
case WID_GL_CREATE_GROUP: { // Create a new group case WID_GL_CREATE_GROUP: { // Create a new group
Command<CMD_CREATE_GROUP>::Post(STR_ERROR_GROUP_CAN_T_CREATE, CcCreateGroup, this->vli.vtype, this->vli.index); Command<CMD_CREATE_GROUP>::Post(STR_ERROR_GROUP_CAN_T_CREATE, CcCreateGroup, this->vli.vtype, this->vli.ToGroupID());
break; break;
} }
case WID_GL_DELETE_GROUP: { // Delete the selected group case WID_GL_DELETE_GROUP: { // Delete the selected group
this->group_confirm = this->vli.index; this->group_confirm = this->vli.ToGroupID();
ShowQuery(STR_QUERY_GROUP_DELETE_CAPTION, STR_GROUP_DELETE_QUERY_TEXT, this, DeleteGroupCallback); ShowQuery(STR_QUERY_GROUP_DELETE_CAPTION, STR_GROUP_DELETE_QUERY_TEXT, this, DeleteGroupCallback);
break; break;
} }
case WID_GL_RENAME_GROUP: // Rename the selected roup case WID_GL_RENAME_GROUP: // Rename the selected roup
this->ShowRenameGroupWindow(this->vli.index, false); this->ShowRenameGroupWindow(this->vli.ToGroupID(), false);
break; break;
case WID_GL_LIVERY_GROUP: // Set group livery case WID_GL_LIVERY_GROUP: // Set group livery
ShowCompanyLiveryWindow(this->owner, this->vli.index); ShowCompanyLiveryWindow(this->owner, this->vli.ToGroupID());
break; break;
case WID_GL_AVAILABLE_VEHICLES: case WID_GL_AVAILABLE_VEHICLES:
@ -855,7 +857,7 @@ public:
break; break;
case WID_GL_MANAGE_VEHICLES_DROPDOWN: { case WID_GL_MANAGE_VEHICLES_DROPDOWN: {
ShowDropDownList(this, this->BuildActionDropdownList(true, Group::IsValidID(this->vli.index), IsDefaultGroupID(this->vli.index)), -1, WID_GL_MANAGE_VEHICLES_DROPDOWN); ShowDropDownList(this, this->BuildActionDropdownList(true, Group::IsValidID(this->vli.ToGroupID()), IsDefaultGroupID(this->vli.ToGroupID())), -1, WID_GL_MANAGE_VEHICLES_DROPDOWN);
break; break;
} }
@ -866,9 +868,9 @@ public:
} }
case WID_GL_REPLACE_PROTECTION: { case WID_GL_REPLACE_PROTECTION: {
const Group *g = Group::GetIfValid(this->vli.index); const Group *g = Group::GetIfValid(this->vli.ToGroupID());
if (g != nullptr) { if (g != nullptr) {
Command<CMD_SET_GROUP_FLAG>::Post(this->vli.index, GroupFlag::ReplaceProtection, !g->flags.Test(GroupFlag::ReplaceProtection), _ctrl_pressed); Command<CMD_SET_GROUP_FLAG>::Post(this->vli.ToGroupID(), GroupFlag::ReplaceProtection, !g->flags.Test(GroupFlag::ReplaceProtection), _ctrl_pressed);
} }
break; break;
} }
@ -1013,7 +1015,7 @@ public:
switch (index) { switch (index) {
case ADI_REPLACE: // Replace window case ADI_REPLACE: // Replace window
ShowReplaceGroupVehicleWindow(this->vli.index, this->vli.vtype); ShowReplaceGroupVehicleWindow(this->vli.ToGroupID(), this->vli.vtype);
break; break;
case ADI_SERVICE: // Send for servicing case ADI_SERVICE: // Send for servicing
case ADI_DEPOT: { // Send to Depots case ADI_DEPOT: { // Send to Depots
@ -1026,14 +1028,14 @@ public:
break; break;
case ADI_ADD_SHARED: // Add shared Vehicles case ADI_ADD_SHARED: // Add shared Vehicles
assert(Group::IsValidID(this->vli.index)); assert(Group::IsValidID(this->vli.ToGroupID()));
Command<CMD_ADD_SHARED_VEHICLE_GROUP>::Post(STR_ERROR_GROUP_CAN_T_ADD_SHARED_VEHICLE, this->vli.index, this->vli.vtype); Command<CMD_ADD_SHARED_VEHICLE_GROUP>::Post(STR_ERROR_GROUP_CAN_T_ADD_SHARED_VEHICLE, this->vli.ToGroupID(), this->vli.vtype);
break; break;
case ADI_REMOVE_ALL: // Remove all Vehicles from the selected group case ADI_REMOVE_ALL: // Remove all Vehicles from the selected group
assert(Group::IsValidID(this->vli.index)); assert(Group::IsValidID(this->vli.ToGroupID()));
Command<CMD_REMOVE_ALL_VEHICLES_GROUP>::Post(STR_ERROR_GROUP_CAN_T_REMOVE_ALL_VEHICLES, this->vli.index); Command<CMD_REMOVE_ALL_VEHICLES_GROUP>::Post(STR_ERROR_GROUP_CAN_T_REMOVE_ALL_VEHICLES, this->vli.ToGroupID());
break; break;
default: NOT_REACHED(); default: NOT_REACHED();
} }
@ -1124,7 +1126,7 @@ public:
*/ */
void SelectGroup(const GroupID g_id) void SelectGroup(const GroupID g_id)
{ {
if (g_id == INVALID_GROUP || g_id == this->vli.index) return; if (g_id == INVALID_GROUP || g_id == this->vli.ToGroupID()) return;
this->vli.index = g_id; this->vli.index = g_id;
if (g_id != ALL_GROUP && g_id != DEFAULT_GROUP) { if (g_id != ALL_GROUP && g_id != DEFAULT_GROUP) {

View File

@ -2040,20 +2040,20 @@ public:
case VL_STANDARD: // Company Name case VL_STANDARD: // Company Name
SetDParam(0, STR_COMPANY_NAME); SetDParam(0, STR_COMPANY_NAME);
SetDParam(1, this->vli.index); SetDParam(1, this->vli.ToCompanyID());
SetDParam(3, this->vehicles.size()); SetDParam(3, this->vehicles.size());
break; break;
case VL_STATION_LIST: // Station/Waypoint Name case VL_STATION_LIST: // Station/Waypoint Name
SetDParam(0, Station::IsExpected(BaseStation::Get(this->vli.index)) ? STR_STATION_NAME : STR_WAYPOINT_NAME); SetDParam(0, Station::IsExpected(BaseStation::Get(this->vli.ToStationID())) ? STR_STATION_NAME : STR_WAYPOINT_NAME);
SetDParam(1, this->vli.index); SetDParam(1, this->vli.ToStationID());
SetDParam(3, this->vehicles.size()); SetDParam(3, this->vehicles.size());
break; break;
case VL_DEPOT_LIST: case VL_DEPOT_LIST:
SetDParam(0, STR_DEPOT_CAPTION); SetDParam(0, STR_DEPOT_CAPTION);
SetDParam(1, this->vli.vtype); SetDParam(1, this->vli.vtype);
SetDParam(2, this->vli.index); SetDParam(2, this->vli.ToDestinationID());
SetDParam(3, this->vehicles.size()); SetDParam(3, this->vehicles.size());
break; break;
default: NOT_REACHED(); default: NOT_REACHED();
@ -2249,7 +2249,7 @@ public:
void OnGameTick() override void OnGameTick() override
{ {
if (this->vehgroups.NeedResort()) { if (this->vehgroups.NeedResort()) {
StationID station = (this->vli.type == VL_STATION_LIST) ? this->vli.index : INVALID_STATION; StationID station = (this->vli.type == VL_STATION_LIST) ? this->vli.ToStationID() : INVALID_STATION;
Debug(misc, 3, "Periodic resort {} list company {} at station {}", this->vli.vtype, this->owner, station); Debug(misc, 3, "Periodic resort {} list company {} at station {}", this->vli.vtype, this->owner, station);
this->SetDirty(); this->SetDirty();

View File

@ -96,14 +96,14 @@ bool GenerateVehicleSortList(VehicleList *list, const VehicleListIdentifier &vli
case VL_STATION_LIST: case VL_STATION_LIST:
FindVehiclesWithOrder( FindVehiclesWithOrder(
[&vli](const Vehicle *v) { return v->type == vli.vtype; }, [&vli](const Vehicle *v) { return v->type == vli.vtype; },
[&vli](const Order *order) { return (order->IsType(OT_GOTO_STATION) || order->IsType(OT_GOTO_WAYPOINT) || order->IsType(OT_IMPLICIT)) && order->GetDestination() == vli.index; }, [&vli](const Order *order) { return (order->IsType(OT_GOTO_STATION) || order->IsType(OT_GOTO_WAYPOINT) || order->IsType(OT_IMPLICIT)) && order->GetDestination() == vli.ToStationID(); },
[&list](const Vehicle *v) { list->push_back(v); } [&list](const Vehicle *v) { list->push_back(v); }
); );
break; break;
case VL_SHARED_ORDERS: { case VL_SHARED_ORDERS: {
/* Add all vehicles from this vehicle's shared order list */ /* Add all vehicles from this vehicle's shared order list */
const Vehicle *v = Vehicle::GetIfValid(vli.index); const Vehicle *v = Vehicle::GetIfValid(vli.ToVehicleID());
if (v == nullptr || v->type != vli.vtype || !v->IsPrimaryVehicle()) return false; if (v == nullptr || v->type != vli.vtype || !v->IsPrimaryVehicle()) return false;
for (; v != nullptr; v = v->NextShared()) { for (; v != nullptr; v = v->NextShared()) {
@ -113,10 +113,10 @@ bool GenerateVehicleSortList(VehicleList *list, const VehicleListIdentifier &vli
} }
case VL_GROUP_LIST: case VL_GROUP_LIST:
if (vli.index != ALL_GROUP) { if (vli.ToGroupID() != ALL_GROUP) {
for (const Vehicle *v : Vehicle::Iterate()) { for (const Vehicle *v : Vehicle::Iterate()) {
if (v->type == vli.vtype && v->IsPrimaryVehicle() && if (v->type == vli.vtype && v->IsPrimaryVehicle() &&
v->owner == vli.company && GroupIsInGroup(v->group_id, vli.index)) { v->owner == vli.company && GroupIsInGroup(v->group_id, vli.ToGroupID())) {
list->push_back(v); list->push_back(v);
} }
} }
@ -135,7 +135,7 @@ bool GenerateVehicleSortList(VehicleList *list, const VehicleListIdentifier &vli
case VL_DEPOT_LIST: case VL_DEPOT_LIST:
FindVehiclesWithOrder( FindVehiclesWithOrder(
[&vli](const Vehicle *v) { return v->type == vli.vtype; }, [&vli](const Vehicle *v) { return v->type == vli.vtype; },
[&vli](const Order *order) { return order->IsType(OT_GOTO_DEPOT) && !(order->GetDepotActionType() & ODATFB_NEAREST_DEPOT) && order->GetDestination() == vli.index; }, [&vli](const Order *order) { return order->IsType(OT_GOTO_DEPOT) && !(order->GetDepotActionType() & ODATFB_NEAREST_DEPOT) && order->GetDestination() == vli.ToDestinationID(); },
[&list](const Vehicle *v) { list->push_back(v); } [&list](const Vehicle *v) { list->push_back(v); }
); );
break; break;

View File

@ -10,18 +10,21 @@
#ifndef VEHICLELIST_H #ifndef VEHICLELIST_H
#define VEHICLELIST_H #define VEHICLELIST_H
#include "vehicle_type.h"
#include "company_type.h" #include "company_type.h"
#include "group_type.h"
#include "order_type.h"
#include "station_type.h"
#include "tile_type.h" #include "tile_type.h"
#include "vehicle_type.h"
#include "window_type.h" #include "window_type.h"
/** Vehicle List type flags */ /** Vehicle List type flags */
enum VehicleListType : uint8_t { enum VehicleListType : uint8_t {
VL_STANDARD, VL_STANDARD, ///< Index is the company.
VL_SHARED_ORDERS, VL_SHARED_ORDERS, ///< Index is the first vehicle of the shared orders.
VL_STATION_LIST, VL_STATION_LIST, ///< Index is the station.
VL_DEPOT_LIST, VL_DEPOT_LIST, ///< Index is the destination (station for hangar of aircraft, depot for others)
VL_GROUP_LIST, VL_GROUP_LIST, ///< Index is the group.
VLT_END VLT_END
}; };
@ -36,6 +39,12 @@ struct VehicleListIdentifier {
bool Valid() const { return this->type < VLT_END; } bool Valid() const { return this->type < VLT_END; }
constexpr CompanyID ToCompanyID() const { assert(this->type == VL_STANDARD); return CompanyID(this->index); }
constexpr DestinationID ToDestinationID() const { assert(this->type == VL_DEPOT_LIST); return DestinationID(this->index); }
constexpr GroupID ToGroupID() const { assert(this->type == VL_GROUP_LIST); return GroupID(this->index); }
constexpr StationID ToStationID() const { assert(this->type == VL_STATION_LIST); return StationID(this->index); }
constexpr VehicleID ToVehicleID() const { assert(this->type == VL_SHARED_ORDERS); return VehicleID(this->index); }
/** /**
* Create a simple vehicle list. * Create a simple vehicle list.
* @param type List type. * @param type List type.
@ -46,7 +55,7 @@ struct VehicleListIdentifier {
VehicleListIdentifier(VehicleListType type, VehicleType vtype, CompanyID company, uint index = 0) : VehicleListIdentifier(VehicleListType type, VehicleType vtype, CompanyID company, uint index = 0) :
type(type), vtype(vtype), company(company), index(index) {} type(type), vtype(vtype), company(company), index(index) {}
VehicleListIdentifier() : type(), vtype(), company(), index() {} VehicleListIdentifier() = default;
}; };
/** A list of vehicles. */ /** A list of vehicles. */