Home
last modified time | relevance | path

Searched refs:ONSF_NO_STOP_AT_DESTINATION_STATION (Results 1 – 7 of 7) sorted by relevance

/dports/games/openttd/openttd-12.1/src/
H A Dorder_type.h75ONSF_NO_STOP_AT_DESTINATION_STATION = 2, ///< The vehicle will stop at any station it passes exc… enumerator
H A Dorder_cmd.cpp1319 if (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) return CMD_ERROR; in CmdModifyOrder()
1327 if (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) return CMD_ERROR; in CmdModifyOrder()
1381 if (data & ONSF_NO_STOP_AT_DESTINATION_STATION) { in CmdModifyOrder()
2160 …e(OT_GOTO_STATION) && (v->current_order.GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION)) |… in ProcessOrders()
2238 …!(this->GetNonStopType() & (is_dest_station ? ONSF_NO_STOP_AT_DESTINATION_STATION : ONSF_NO_STOP_A… in ShouldStopAtStation()
2244 (this->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) == 0 && in CanLoadOrUnload()
H A Dorder_gui.cpp276 …SetDParam(3, (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) ? STR_EMPTY : _statio… in DrawOrderString()
280 …if (v->type == VEH_TRAIN && (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) == 0) { in DrawOrderString()
962 …tDisabledState(WID_O_FULL_LOAD, (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) !=… in UpdateButtonState()
963 …tDisabledState(WID_O_UNLOAD, (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) !=… in UpdateButtonState()
983 …GetLoadType() == OLFB_NO_LOAD || (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) || in UpdateButtonState()
H A Dtimetable_gui.cpp70 !(order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION)) { in CanDetermineTimeTaken()
312 …der->IsType(OT_GOTO_STATION) || (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION)) &… in OnPaint()
H A Dorder_base.h232 !(this->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION)) { in IsCompletelyTimetabled()
H A Dtimetable_cmd.cpp141 …if (order->GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) return_cmd_error(STR_ERROR_TIME… in CmdChangeTimetable()
H A Dtrain_cmd.cpp3876 (v->current_order.GetNonStopType() & ONSF_NO_STOP_AT_DESTINATION_STATION) && in TrainLocoHandler()