Changeset - r28763:93acaf2569cd
[Not reviewed]
master
0 2 0
Peter Nelson - 2 months ago 2024-02-14 17:23:17
peter1138@openttd.org
Change: Show 6 or 2 orientation buttons in NewGRF road stop picker as appropriate.

This replaces the normal method of masking unusable buttons.
2 files changed with 32 insertions and 16 deletions:
0 comments (0 inline, 0 general)
src/road_gui.cpp
Show inline comments
 
@@ -1129,8 +1129,15 @@ private:
 

	
 
	void CheckOrientationValid()
 
	{
 
		const RoadStopSpec *spec = RoadStopClass::Get(_roadstop_gui_settings.roadstop_class)->GetSpec(_roadstop_gui_settings.roadstop_type);
 

	
 
		/* Raise and lower to ensure the correct widget is lowered after changing displayed orientation plane. */
 
		this->RaiseWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation);
 
		this->GetWidget<NWidgetStacked>(WID_BROS_AVAILABLE_ORIENTATIONS)->SetDisplayedPlane((spec != nullptr && HasBit(spec->flags, RSF_DRIVE_THROUGH_ONLY)) ? 1 : 0);
 
		this->LowerWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation);
 

	
 
		if (_roadstop_gui_settings.orientation >= DIAGDIR_END) return;
 
		const RoadStopSpec *spec = RoadStopClass::Get(_roadstop_gui_settings.roadstop_class)->GetSpec(_roadstop_gui_settings.roadstop_type);
 

	
 
		if (spec != nullptr && HasBit(spec->flags, RSF_DRIVE_THROUGH_ONLY)) {
 
			this->RaiseWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation);
 
			_roadstop_gui_settings.orientation = DIAGDIR_END;
 
@@ -1418,20 +1425,18 @@ public:
 
			case WID_BROS_STATION_Y: {
 
				StationType st = GetRoadStationTypeByWindowClass(this->window_class);
 
				const RoadStopSpec *spec = RoadStopClass::Get(_roadstop_gui_settings.roadstop_class)->GetSpec(_roadstop_gui_settings.roadstop_type);
 
				bool disabled = (spec != nullptr && widget < WID_BROS_STATION_X && HasBit(spec->flags, RSF_DRIVE_THROUGH_ONLY));
 
				DrawPixelInfo tmp_dpi;
 
				Rect ir = r.Shrink(WidgetDimensions::scaled.bevel);
 
				if (FillDrawPixelInfo(&tmp_dpi, ir)) {
 
					AutoRestoreBackup dpi_backup(_cur_dpi, &tmp_dpi);
 
					int x = (ir.Width()  - ScaleSpriteTrad(64)) / 2 + ScaleSpriteTrad(31);
 
					int y = (ir.Height() + ScaleSpriteTrad(48)) / 2 - ScaleSpriteTrad(31);
 
					if (spec == nullptr || disabled) {
 
					if (spec == nullptr) {
 
						StationPickerDrawSprite(x, y, st, INVALID_RAILTYPE, _cur_roadtype, widget - WID_BROS_STATION_NE);
 
					} else {
 
						DrawRoadStopTile(x, y, _cur_roadtype, spec, st, widget - WID_BROS_STATION_NE);
 
					}
 
				}
 
				if (disabled) GfxFillRect(ir, PC_BLACK, FILLRECT_CHECKER);
 
				break;
 
			}
 

	
 
@@ -1540,11 +1545,11 @@ public:
 
					NWidgetMatrix *matrix = this->GetWidget<NWidgetMatrix>(WID_BROS_MATRIX);
 
					matrix->SetCount(_roadstop_gui_settings.roadstop_count);
 
					matrix->SetClicked(_roadstop_gui_settings.roadstop_type);
 
					this->CheckOrientationValid();
 
				}
 
				if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
 
				this->SetDirty();
 
				CloseWindowById(WC_SELECT_STATION, 0);
 
				this->CheckOrientationValid();
 
				break;
 
			}
 

	
 
@@ -1634,20 +1639,30 @@ static constexpr NWidgetPart _nested_roa
 
						NWidget(NWID_SELECTION, INVALID_COLOUR, WID_BROS_SHOW_NEWST_ORIENTATION),
 
							NWidget(WWT_LABEL, COLOUR_DARK_GREEN), SetMinimalSize(144, 11), SetDataTip(STR_STATION_BUILD_ORIENTATION, STR_NULL), SetFill(1, 0),
 
						EndContainer(),
 
						NWidget(NWID_VERTICAL), SetPIP(0, WidgetDimensions::unscaled.vsep_normal, 0),
 
							NWidget(NWID_HORIZONTAL), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0), SetPIPRatio(1, 0, 1),
 
								NWidget(NWID_HORIZONTAL_LTR), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_NW), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_NE), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
						NWidget(NWID_SELECTION, INVALID_COLOUR, WID_BROS_AVAILABLE_ORIENTATIONS),
 
							/* 6-orientation plane. */
 
							NWidget(NWID_VERTICAL), SetPIP(0, WidgetDimensions::unscaled.vsep_normal, 0),
 
								NWidget(NWID_HORIZONTAL), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0), SetPIPRatio(1, 0, 1),
 
									NWidget(NWID_HORIZONTAL_LTR), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0),
 
										NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_NW), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
										NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_NE), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
									EndContainer(),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_X),  SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
								EndContainer(),
 
								NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_X),  SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
								NWidget(NWID_HORIZONTAL), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0), SetPIPRatio(1, 0, 1),
 
									NWidget(NWID_HORIZONTAL_LTR), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0),
 
										NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_SW), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
										NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_SE), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
									EndContainer(),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_Y),  SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
								EndContainer(),
 
							EndContainer(),
 
							NWidget(NWID_HORIZONTAL), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0), SetPIPRatio(1, 0, 1),
 
								NWidget(NWID_HORIZONTAL_LTR), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_SW), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_SE), SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
							/* 2-orientation plane. */
 
							NWidget(NWID_VERTICAL), SetPIPRatio(0, 0, 1),
 
								NWidget(NWID_HORIZONTAL_LTR), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0), SetPIPRatio(1, 0, 1),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_X),  SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
									NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_Y),  SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
								EndContainer(),
 
								NWidget(WWT_PANEL, COLOUR_GREY, WID_BROS_STATION_Y),  SetMinimalSize(66, 50), SetFill(0, 0), EndContainer(),
 
							EndContainer(),
 
						EndContainer(),
 
						NWidget(NWID_SELECTION, INVALID_COLOUR, WID_BROS_SHOW_NEWST_TYPE_SEL),
src/widgets/road_widget.h
Show inline comments
 
@@ -58,6 +58,7 @@ enum BuildRoadStationWidgets : WidgetID 
 
	WID_BROS_MATRIX_SCROLL,          ///< Scrollbar of the #WID_BROS_SHOW_NEWST_ADDITIONS.
 
	WID_BROS_FILTER_CONTAINER,       ///< Container for the filter text box for the road stop class list.
 
	WID_BROS_FILTER_EDITBOX,         ///< Filter text box for the road stop class list.
 
	WID_BROS_AVAILABLE_ORIENTATIONS, ///< Selection for selecting 6 or 2 orientations.
 
	WID_BROS_SHOW_NEWST_DEFSIZE,     ///< Selection for default-size button for new road stops.
 
	WID_BROS_SHOW_NEWST_ADDITIONS,   ///< Selection for new class selection list.
 
	WID_BROS_SHOW_NEWST_MATRIX,      ///< Selection for new stop image matrix.
0 comments (0 inline, 0 general)