RobotCycleMoveRoutine.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. using Aitex.Core.RT.Routine;
  2. using CyberX8_Core;
  3. using CyberX8_RT.Devices.EFEM;
  4. using MECF.Framework.Common.Equipment;
  5. using MECF.Framework.Common.Routine;
  6. using MECF.Framework.Common.Schedulers;
  7. using MECF.Framework.Common.Utilities;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Linq;
  11. using System.Text;
  12. using System.Threading.Tasks;
  13. namespace CyberX8_RT.Modules.EFEM
  14. {
  15. public class RobotCycleMoveRoutine : RoutineBase, IRoutine
  16. {
  17. private enum CycleStep
  18. {
  19. LoopStart,
  20. LoopRun,
  21. LoopCheck,
  22. LoopEnd,
  23. End
  24. }
  25. private EfemPickRoutine _efemPickRoutine;
  26. private EfemPlaceRoutine _efemPlaceRoutine;
  27. private EFEMAlignRoutine _efemAlignRoutine;
  28. private IRoutine _currentRoutine;
  29. private List<EfemCycleAction> _moveActionQueue;
  30. /// <summary>
  31. /// 构建函数
  32. /// </summary>
  33. /// <param name="module"></param>
  34. public RobotCycleMoveRoutine(EfemBase efem) : base(ModuleName.EfemRobot.ToString())
  35. {
  36. _efemPickRoutine = new EfemPickRoutine(efem);
  37. _efemPlaceRoutine = new EfemPlaceRoutine(efem);
  38. _efemAlignRoutine = new EFEMAlignRoutine(efem);
  39. }
  40. /// <summary>
  41. /// 中止
  42. /// </summary>
  43. public void Abort()
  44. {
  45. Runner.Stop("Manual abort");
  46. }
  47. /// <summary>
  48. /// 中止
  49. /// </summary>
  50. /// <returns></returns>
  51. public RState Monitor()
  52. {
  53. Runner.LoopStart(CycleStep.LoopStart, "start efem cycle action", _moveActionQueue.Count, NullFun, _delay_1ms)
  54. .LoopRun(CycleStep.LoopRun, RunAction, _delay_1ms)
  55. .LoopRunWithStopStatus(CycleStep.LoopCheck, () => CommonFunction.CheckRoutineEndState(_currentRoutine),
  56. () => CommonFunction.CheckRoutineStopState(_currentRoutine))
  57. .LoopEnd(CycleStep.LoopEnd, NullFun, _delay_1ms)
  58. .End(CycleStep.End, NullFun, _delay_1ms);
  59. return Runner.Status;
  60. }
  61. private bool RunAction()
  62. {
  63. EfemCycleAction action = _moveActionQueue[Runner.LoopCounter];
  64. switch(action.Action)
  65. {
  66. case "Pick":
  67. Queue<MoveItem> moveItems = new Queue<MoveItem>();
  68. moveItems.Enqueue((MoveItem)action.Parameter);
  69. _currentRoutine = _efemPickRoutine;
  70. return _efemPickRoutine.Start(moveItems) == RState.Running;
  71. case "Place":
  72. Queue<MoveItem> placeMoveItems = new Queue<MoveItem>();
  73. placeMoveItems.Enqueue((MoveItem)action.Parameter);
  74. _currentRoutine= _efemPlaceRoutine;
  75. return _efemPlaceRoutine.Start(placeMoveItems) == RState.Running;
  76. case "Align":
  77. _currentRoutine = _efemAlignRoutine;
  78. object[] alignerParamater = new object[3];//初始化Align参数
  79. alignerParamater[0] = ModuleName.Aligner1;
  80. alignerParamater[1] = 0;
  81. alignerParamater[2] = action.Parameter;
  82. return _efemAlignRoutine.Start(alignerParamater) ==RState.Running;
  83. }
  84. return false;
  85. }
  86. /// <summary>
  87. /// 启动
  88. /// </summary>
  89. /// <param name="objs"></param>
  90. /// <returns></returns>
  91. public RState Start(params object[] objs)
  92. {
  93. _moveActionQueue = (List<EfemCycleAction>)objs[0];
  94. return Runner.Start(Module, "Robot Cycle move");
  95. }
  96. }
  97. }