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