Codechange: Use GetScrolled(Row/Item)FromWidget in more places.

In many instances the clicked row position is 'manually' calculated
instead of using the GetScrolledRowFromWidget helper function, with
variations on checks. Replace with the two helpers where possible.
This commit is contained in:
Peter Nelson 2023-05-03 11:17:52 +01:00 committed by PeterN
parent 941dbadf9e
commit 531d1ae8bc
9 changed files with 34 additions and 40 deletions

View File

@ -501,8 +501,8 @@ public:
break; break;
case WID_AP_AIRPORT_LIST: { case WID_AP_AIRPORT_LIST: {
int num_clicked = this->vscroll->GetPosition() + (pt.y - this->GetWidget<NWidgetBase>(widget)->pos_y) / this->line_height; int num_clicked = this->vscroll->GetScrolledRowFromWidget(pt.y, this, widget);
if (num_clicked >= this->vscroll->GetCount()) break; if (num_clicked == INT_MAX) break;
const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(num_clicked); const AirportSpec *as = AirportClass::Get(_selected_airport_class)->GetSpec(num_clicked);
if (as->IsAvailable()) this->SelectOtherAirport(num_clicked); if (as->IsAvailable()) this->SelectOtherAirport(num_clicked);
break; break;

View File

@ -458,10 +458,10 @@ struct DepotWindow : Window {
} }
ym = y % this->resize.step_height; ym = y % this->resize.step_height;
uint row = y / this->resize.step_height; int row = this->vscroll->GetScrolledRowFromWidget(y, this, WID_D_MATRIX);
if (row >= this->vscroll->GetCapacity()) return MODE_ERROR; if (row == INT_MAX) return MODE_ERROR;
uint pos = ((row + this->vscroll->GetPosition()) * this->num_columns) + xt; uint pos = (row * this->num_columns) + xt;
if (this->vehicle_list.size() + this->wagon_list.size() <= pos) { if (this->vehicle_list.size() + this->wagon_list.size() <= pos) {
/* Clicking on 'line' / 'block' without a vehicle */ /* Clicking on 'line' / 'block' without a vehicle */

View File

@ -267,13 +267,13 @@ struct GSConfigWindow : public Window {
break; break;
case WID_GSC_SETTINGS: { case WID_GSC_SETTINGS: {
Rect r = this->GetWidget<NWidgetBase>(widget)->GetCurrentRect().Shrink(WidgetDimensions::scaled.matrix, RectPadding::zero); auto it = this->vscroll->GetScrolledItemFromWidget(this->visible_settings, pt.y, this, widget);
int num = (pt.y - r.top) / this->line_height + this->vscroll->GetPosition(); if (it == this->visible_settings.end()) break;
if (num >= (int)this->visible_settings.size()) break;
const ScriptConfigItem &config_item = *this->visible_settings[num]; const ScriptConfigItem &config_item = **it;
if (!this->IsEditableItem(config_item)) return; if (!this->IsEditableItem(config_item)) return;
int num = it - this->visible_settings.begin();
if (this->clicked_row != num) { if (this->clicked_row != num) {
this->CloseChildWindows(WC_QUERY_STRING); this->CloseChildWindows(WC_QUERY_STRING);
HideDropDownMenu(this); HideDropDownMenu(this);
@ -283,6 +283,7 @@ struct GSConfigWindow : public Window {
bool bool_item = (config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0; bool bool_item = (config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0;
Rect r = this->GetWidget<NWidgetBase>(widget)->GetCurrentRect().Shrink(WidgetDimensions::scaled.matrix, RectPadding::zero);
int x = pt.x - r.left; int x = pt.x - r.left;
if (_current_text_dir == TD_RTL) x = r.Width() - 1 - x; if (_current_text_dir == TD_RTL) x = r.Width() - 1 - x;

View File

@ -964,12 +964,9 @@ struct SpriteAlignerWindow : Window {
break; break;
case WID_SA_LIST: { case WID_SA_LIST: {
const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget); auto it = this->vscroll->GetScrolledItemFromWidget(_newgrf_debug_sprite_picker.sprites, pt.y, this, widget);
int step_size = nwid->resize_y; if (it != _newgrf_debug_sprite_picker.sprites.end()) {
SpriteID spr = *it;
uint i = this->vscroll->GetPosition() + (pt.y - nwid->pos_y) / step_size;
if (i < _newgrf_debug_sprite_picker.sprites.size()) {
SpriteID spr = _newgrf_debug_sprite_picker.sprites[i];
if (GetSpriteType(spr) == SpriteType::Normal) this->current_sprite = spr; if (GetSpriteType(spr) == SpriteType::Normal) this->current_sprite = spr;
} }
this->SetDirty(); this->SetDirty();

View File

@ -339,8 +339,10 @@ struct NewGRFParametersWindow : public Window {
case WID_NP_BACKGROUND: { case WID_NP_BACKGROUND: {
if (!this->editable) break; if (!this->editable) break;
uint num = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NP_BACKGROUND); auto it = this->vscroll->GetScrolledItemFromWidget(this->grf_config->param_info, pt.y, this, WID_NP_BACKGROUND);
if (num >= this->vscroll->GetCount()) break; if (it == this->grf_config->param_info.end()) break;
uint num = it - this->grf_config->param_info.begin();
if (this->clicked_row != num) { if (this->clicked_row != num) {
this->CloseChildWindows(WC_QUERY_STRING); this->CloseChildWindows(WC_QUERY_STRING);
HideDropDownMenu(this); HideDropDownMenu(this);
@ -352,7 +354,7 @@ struct NewGRFParametersWindow : public Window {
int x = pt.x - r.left; int x = pt.x - r.left;
if (_current_text_dir == TD_RTL) x = r.Width() - 1 - x; if (_current_text_dir == TD_RTL) x = r.Width() - 1 - x;
GRFParameterInfo *par_info = (num < this->grf_config->param_info.size()) ? this->grf_config->param_info[num] : nullptr; GRFParameterInfo *par_info = *it;
if (par_info == nullptr) par_info = GetDummyParameterInfo(num); if (par_info == nullptr) par_info = GetDummyParameterInfo(num);
/* One of the arrows is clicked */ /* One of the arrows is clicked */

View File

@ -517,10 +517,10 @@ public:
{ {
switch (GB(widget, 0, 16)) { switch (GB(widget, 0, 16)) {
case WID_BO_CLASS_LIST: { case WID_BO_CLASS_LIST: {
int num_clicked = this->vscroll->GetPosition() + (pt.y - this->GetWidget<NWidgetBase>(widget)->pos_y) / this->line_height; auto it = this->vscroll->GetScrolledItemFromWidget(this->object_classes, widget, this, pt.y);
if (num_clicked >= (int)this->object_classes.size()) break; if (it == this->object_classes.end()) break;
this->SelectOtherClass(this->object_classes[num_clicked]); this->SelectOtherClass(*it);
this->SelectFirstAvailableObject(false); this->SelectFirstAvailableObject(false);
break; break;
} }

View File

@ -560,14 +560,10 @@ private:
*/ */
VehicleOrderID GetOrderFromPt(int y) VehicleOrderID GetOrderFromPt(int y)
{ {
NWidgetBase *nwid = this->GetWidget<NWidgetBase>(WID_O_ORDER_LIST); int sel = this->vscroll->GetScrolledRowFromWidget(y, this, WID_O_ORDER_LIST, WidgetDimensions::scaled.framerect.top);
uint sel = (y - nwid->pos_y - WidgetDimensions::scaled.framerect.top) / nwid->resize_y; // Selected line in the WID_O_ORDER_LIST panel. if (sel == INT_MAX) return INVALID_VEH_ORDER_ID;
assert(IsInsideBS(sel, 0, vehicle->GetNumOrders()));
if (sel >= this->vscroll->GetCapacity()) return INVALID_VEH_ORDER_ID; return sel;
sel += this->vscroll->GetPosition();
return (sel <= vehicle->GetNumOrders()) ? sel : INVALID_VEH_ORDER_ID;
} }
/** /**

View File

@ -425,13 +425,13 @@ struct ScriptSettingsWindow : public Window {
{ {
switch (widget) { switch (widget) {
case WID_SCRS_BACKGROUND: { case WID_SCRS_BACKGROUND: {
Rect r = this->GetWidget<NWidgetBase>(widget)->GetCurrentRect().Shrink(WidgetDimensions::scaled.matrix, RectPadding::zero); auto it = this->vscroll->GetScrolledItemFromWidget(this->visible_settings, pt.y, this, widget);
int num = (pt.y - r.top) / this->line_height + this->vscroll->GetPosition(); if (it == this->visible_settings.end()) break;
if (num >= (int)this->visible_settings.size()) break;
const ScriptConfigItem &config_item = *this->visible_settings[num]; const ScriptConfigItem &config_item = **it;
if (!this->IsEditableItem(config_item)) return; if (!this->IsEditableItem(config_item)) return;
int num = it - this->visible_settings.begin();
if (this->clicked_row != num) { if (this->clicked_row != num) {
this->CloseChildWindows(WC_QUERY_STRING); this->CloseChildWindows(WC_QUERY_STRING);
HideDropDownMenu(this); HideDropDownMenu(this);
@ -441,6 +441,7 @@ struct ScriptSettingsWindow : public Window {
bool bool_item = (config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0; bool bool_item = (config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0;
Rect r = this->GetWidget<NWidgetBase>(widget)->GetCurrentRect().Shrink(WidgetDimensions::scaled.matrix, RectPadding::zero);
int x = pt.x - r.left; int x = pt.x - r.left;
if (_current_text_dir == TD_RTL) x = r.Width() - 1 - x; if (_current_text_dir == TD_RTL) x = r.Width() - 1 - x;

View File

@ -215,13 +215,10 @@ struct TimetableWindow : Window {
int GetOrderFromTimetableWndPt(int y, const Vehicle *v) int GetOrderFromTimetableWndPt(int y, const Vehicle *v)
{ {
uint sel = (y - this->GetWidget<NWidgetBase>(WID_VT_TIMETABLE_PANEL)->pos_y - WidgetDimensions::scaled.framerect.top) / FONT_HEIGHT_NORMAL; int sel = this->vscroll->GetScrolledRowFromWidget(y, this, WID_VT_TIMETABLE_PANEL, WidgetDimensions::scaled.framerect.top);
if (sel == INT_MAX) return INVALID_ORDER;
if (sel >= this->vscroll->GetCapacity()) return INVALID_ORDER; assert(IsInsideBS(sel, 0, v->GetNumOrders() * 2));
return sel;
sel += this->vscroll->GetPosition();
return (sel < v->GetNumOrders() * 2u) ? sel : INVALID_ORDER;
} }
/** /**