Ejemplo n.º 1
0
 public CabRadioCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 2
0
 public IndexCommand(CommandLog log, int index)
     : base(log)
 {
     this.index = index;
 }
Ejemplo n.º 3
0
 public WipersCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 4
0
 public BooleanCommand(CommandLog log, bool targetState)
     : base(log)
 {
     this.targetState = targetState;
 }
Ejemplo n.º 5
0
 public BellCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 6
0
 public BrakeHoseConnectCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 7
0
 public ToggleAngleCockBCommand(CommandLog log, MSTSWagon car, bool targetState)
     : base(log, targetState)
 {
     Receiver = car;
     Redo();
 }
Ejemplo n.º 8
0
 public CircuitBreakerOpeningOrderButtonCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 9
0
 public CircuitBreakerClosingAuthorizationCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 10
0
 public PantographCommand(CommandLog log, int item, bool targetState)
     : base(log, targetState)
 {
     this.item = item;
     Redo();
 }
Ejemplo n.º 11
0
 public CircuitBreakerClosingOrderCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 12
0
 public ReverserCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 13
0
 public TurntableCounterclockwiseTargetCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }
Ejemplo n.º 14
0
 public TurntableClockwiseCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }
Ejemplo n.º 15
0
 public HandbrakeCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 16
0
 public ToggleMUCommand(CommandLog log, MSTSLocomotive receiver, bool targetState)
     : base(log, targetState)
 {
     Receiver = receiver;
     Redo();
 }
Ejemplo n.º 17
0
 public WagonHandbrakeCommand(CommandLog log, MSTSWagon car, bool targetState)
     : base(log, targetState)
 {
     Receiver = car;
     Redo();
 }
Ejemplo n.º 18
0
 /// <summary>
 /// Each command adds itself to the log when it is constructed.
 /// </summary>
 public Command(CommandLog log)
 {
     log.CommandAdd(this);
 }
Ejemplo n.º 19
0
 public WagonBrakeHoseConnectCommand(CommandLog log, MSTSWagon car, bool targetState)
     : base(log, targetState)
 {
     Receiver = car;
     Redo();
 }
Ejemplo n.º 20
0
 public NotchedThrottleCommand(CommandLog log, bool targetState) : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 21
0
 public ToggleBleedOffValveCommand(CommandLog log, MSTSWagon car, bool targetState)
     : base(log, targetState)
 {
     Receiver = car;
     Redo();
 }
Ejemplo n.º 22
0
 public ContinuousThrottleCommand(CommandLog log, bool targetState, float?target, double startTime)
     : base(log, targetState, target, startTime)
 {
     Redo();
 }
Ejemplo n.º 23
0
 public AlerterCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 24
0
 public DynamicBrakeCommand(CommandLog log, bool targetState, float?target, double startTime)
     : base(log, targetState, target, startTime)
 {
     Redo();
 }
Ejemplo n.º 25
0
 public ToggleCabLightCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }
Ejemplo n.º 26
0
 public InitializeBrakesCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }
Ejemplo n.º 27
0
 public HeadlightCommand(CommandLog log, bool targetState)
     : base(log, targetState)
 {
     Redo();
 }
Ejemplo n.º 28
0
 public EmergencyPushButtonCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }
Ejemplo n.º 29
0
 public ToggleDoorsRightCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }
Ejemplo n.º 30
0
 public ToggleHelpersEngineCommand(CommandLog log)
     : base(log)
 {
     Redo();
 }