Exemplo n.º 1
0
 public ExpectedDepartureStartstation(Tram tram, Endstation station, Platform platform, int timeTableTime)
 {
     this.tram          = tram;
     this.station       = station;
     this.platform      = platform;
     this.timeTableTime = timeTableTime;
 }
Exemplo n.º 2
0
 public ArrivalEndstation(Tram tram, Endstation station, Platform platform, bool fromDepot = false)
 {
     this.tram      = tram;
     this.station   = station;
     this.platform  = platform;
     this.fromDepot = fromDepot;
 }
Exemplo n.º 3
0
 internal int turnAroundTimeFor(Endstation station)
 {
     if (ucDualDriverSwitch && station.name == endStation)
     {
         return(turnAroundTimeDualDriver);
     }
     return(turnAroundTime);
 }
Exemplo n.º 4
0
 public ExpectedArrivalEndstation(Tram tram, Endstation station)
 {
     this.tram    = tram;
     this.station = station;
 }
Exemplo n.º 5
0
 public ClearSwitchLane(Endstation station, SwitchLane lane)
 {
     this.station = station;
     this.lane    = lane;
 }
Exemplo n.º 6
0
 public DepartureStartstation(Tram tram, Endstation station, Platform platform)
 {
     this.tram     = tram;
     this.station  = station;
     this.platform = platform;
 }