summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-06-30 14:36:31 +0000
committerfrosch <frosch@openttd.org>2013-06-30 14:36:31 +0000
commit43ec0bf0c118b5228a9c50a2ba1650d021dc5c44 (patch)
tree5aef49476d90a8b682f809125c8c37d035a1c9fa /src/depot_gui.cpp
parent8116aeff218fe55c98c0dcd2a62390fe7e7d9c6e (diff)
downloadopenttd-43ec0bf0c118b5228a9c50a2ba1650d021dc5c44.tar.xz
(svn r25537) -Codechange: Optionally make WWT_MATRIX compute the number of rows and columns from the resize step size.
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index 132d0de66..3f5cfb532 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -246,6 +246,7 @@ struct DepotWindow : Window {
/* Don't show 'rename button' of aircraft hangar */
this->GetWidget<NWidgetStacked>(WID_D_SHOW_RENAME)->SetDisplayedPlane(type == VEH_AIRCRAFT ? SZSP_NONE : 0);
/* Only train depots have a horizontal scrollbar and a 'sell chain' button */
+ if (type == VEH_TRAIN) this->GetWidget<NWidgetCore>(WID_D_MATRIX)->widget_data = 1 << MAT_COL_START;
this->GetWidget<NWidgetStacked>(WID_D_SHOW_H_SCROLL)->SetDisplayedPlane(type == VEH_TRAIN ? 0 : SZSP_HORIZONTAL);
this->GetWidget<NWidgetStacked>(WID_D_SHOW_SELL_CHAIN)->SetDisplayedPlane(type == VEH_TRAIN ? 0 : SZSP_NONE);
this->SetupWidgetData(type);
@@ -335,9 +336,9 @@ struct DepotWindow : Window {
bool rtl = _current_text_dir == TD_RTL;
/* Set the row and number of boxes in each row based on the number of boxes drawn in the matrix */
- uint16 mat_data = this->GetWidget<NWidgetCore>(WID_D_MATRIX)->widget_data;
- uint16 rows_in_display = GB(mat_data, MAT_ROW_START, MAT_ROW_BITS);
- uint16 boxes_in_each_row = GB(mat_data, MAT_COL_START, MAT_COL_BITS);
+ const NWidgetCore *wid = this->GetWidget<NWidgetCore>(WID_D_MATRIX);
+ uint16 boxes_in_each_row = this->type == VEH_TRAIN ? 1 : wid->current_x / wid->resize_x;
+ uint16 rows_in_display = wid->current_y / wid->resize_y;
uint16 num = this->vscroll->GetPosition() * boxes_in_each_row;
int maxval = min(this->vehicle_list.Length(), num + (rows_in_display * boxes_in_each_row));
@@ -968,14 +969,10 @@ struct DepotWindow : Window {
virtual void OnResize()
{
- NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_D_MATRIX);
this->vscroll->SetCapacityFromWidget(this, WID_D_MATRIX);
if (this->type == VEH_TRAIN) {
+ NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_D_MATRIX);
this->hscroll->SetCapacity(nwi->current_x - this->header_width - this->count_width);
- nwi->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START);
- } else {
- this->num_columns = nwi->current_x / nwi->resize_x;
- nwi->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (this->num_columns << MAT_COL_START);
}
}