using Aitex.Core.RT.Routine; using CyberX8_Core; using MECF.Framework.Common.Persistent.Prewet; using MECF.Framework.Common.Routine; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CyberX8_RT.Devices.Prewet { public class PrewetPumpDisableRoutine : RoutineBase, IRoutine { private enum PumpDisableStep { PumpDisable, Delay, PumpValveClose, End } #region 内部变量 PrewetDevice _device; PrewetPersistentValue _prewetPersistentValue; #endregion /// /// 构造函数 /// /// public PrewetPumpDisableRoutine(string module, PrewetDevice prewetDevice, PrewetPersistentValue prewetPersistentValue) : base(module) { _device = prewetDevice; _prewetPersistentValue = prewetPersistentValue; } /// /// 中止 /// public void Abort() { Runner.Stop("Manual Abort"); } /// /// 监控 /// /// public RState Monitor() { Runner.Run(PumpDisableStep.PumpDisable, _device.PumpDisable, 500) .Delay(PumpDisableStep.Delay, 500) .Run(PumpDisableStep.PumpValveClose, _device.PumpValveClose, 500) .End(PumpDisableStep.End, NullFun, _delay_1ms); return Runner.Status; } /// /// 启动 /// /// /// public RState Start(params object[] objs) { return Runner.Start(Module, "Pump Disable"); } } }