CycleRobotCycleNewRoutine.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.Log;
  3. using Aitex.Core.RT.Routine;
  4. using Aitex.Core.Util;
  5. using CyberX8_Core;
  6. using CyberX8_RT.Devices.EFEM;
  7. using CyberX8_RT.Modules.Rinse;
  8. using MECF.Framework.Common.Equipment;
  9. using MECF.Framework.Common.Routine;
  10. using MECF.Framework.Common.Schedulers;
  11. using MECF.Framework.Common.SubstrateTrackings;
  12. using MECF.Framework.Common.Utilities;
  13. using System;
  14. using System.Collections.Generic;
  15. using System.Linq;
  16. using System.Text;
  17. using System.Threading.Tasks;
  18. namespace CyberX8_RT.Modules.EFEM
  19. {
  20. public class CycleRobotCycleNewRoutine : ModuleRoutineBase, IRoutine
  21. {
  22. private enum CycleRobotCycleStep
  23. {
  24. LoopStart,
  25. LoopRunRobotCycle,
  26. LoopRunRobotCycleWait,
  27. LoopEnd,
  28. End
  29. }
  30. /// <summary>
  31. /// Cycle次数
  32. /// </summary>
  33. private int _cycleTimes;
  34. /// <summary>
  35. /// 当前处于第几次Cycle
  36. /// </summary>
  37. private int _currentCycle;
  38. private object[] param;
  39. private RobotCycleMoveRoutine _cycleMoveRoutine;
  40. private List<ModuleName> _sequences;
  41. private int _alignerAngle;
  42. private List<EfemCycleAction> _actions;
  43. private int _dummySlotNumber = 25; //当前cycle中的dummy slot 数量
  44. public CycleRobotCycleNewRoutine(EfemBase efem) : base(ModuleName.EfemRobot)
  45. {
  46. _cycleMoveRoutine = new RobotCycleMoveRoutine(efem);
  47. }
  48. public RState Start(params object[] objs)
  49. {
  50. string str = objs[0].ToString();
  51. _sequences = new List<ModuleName>();
  52. foreach(string item in str.Split('-'))
  53. {
  54. _sequences.Add((ModuleName)Enum.Parse(typeof(ModuleName), item));
  55. }
  56. _cycleTimes=(int)objs[1];
  57. _alignerAngle = (int)objs[2];
  58. _actions = new List<EfemCycleAction>();
  59. GenerateCycleAction();
  60. if (_cycleTimes < 1)
  61. {
  62. LOG.Write(eEvent.ERR_EFEM_ROBOT, Module, $"Input Robot Cycle Times{_cycleTimes} error");
  63. return RState.Failed;
  64. }
  65. return Runner.Start(Module, "Start CycleRobotCycleRoutine");
  66. }
  67. private void GenerateCycleAction()
  68. {
  69. if (!ModuleHelper.IsLoadPort(_sequences[0]))
  70. {
  71. return;
  72. }
  73. WaferInfo[] waferInfos = WaferManager.Instance.GetWafers(_sequences[0]);
  74. int count = 0;
  75. foreach (WaferInfo item in waferInfos)
  76. {
  77. if (item.IsEmpty)
  78. {
  79. continue;
  80. }
  81. _actions.AddRange(GenerateCycle(_sequences[0], item.Slot, _sequences[1], ModuleHelper.IsDummy(_sequences[1]) ? count : 0));
  82. for (int i = 1; i < _sequences.Count; i++)
  83. {
  84. if (i == 1)
  85. {
  86. _actions.AddRange(GenerateCycle(_sequences[i], ModuleHelper.IsDummy(_sequences[i]) ? count : 0, _sequences[i + 1],
  87. ModuleHelper.IsDummy(_sequences[i + 1]) ? count : 0));
  88. }
  89. else if (i == _sequences.Count - 1)
  90. {
  91. _actions.AddRange(GenerateCycle(_sequences[i], ModuleHelper.IsDummy(_sequences[i]) ? count : 0, _sequences[0],
  92. item.Slot));
  93. }
  94. if (ModuleHelper.IsDummy(_sequences[i]))
  95. {
  96. WaferInfo[] dummywaferInfos = WaferManager.Instance.GetWafers(_sequences[i]);
  97. if (dummywaferInfos != null)
  98. {
  99. _dummySlotNumber = dummywaferInfos.Length;
  100. }
  101. }
  102. }
  103. count++;
  104. if(count >= _dummySlotNumber)
  105. {
  106. count = 0;
  107. }
  108. }
  109. }
  110. private List<EfemCycleAction> GenerateCycle(ModuleName source,int sourceSlot,ModuleName destModule,int destSlot)
  111. {
  112. List<EfemCycleAction> actions = new List<EfemCycleAction>();
  113. if (source == ModuleName.Aligner1)
  114. {
  115. EfemCycleAction action = new EfemCycleAction();
  116. action.Action = "Align";
  117. action.Parameter = _alignerAngle;
  118. actions.Add(action);
  119. }
  120. EfemCycleAction pick = new EfemCycleAction();
  121. MoveItem pickMoveItem = new MoveItem();
  122. pickMoveItem.SourceModule = source;
  123. pickMoveItem.SourceSlot = sourceSlot;
  124. pick.Parameter = pickMoveItem;
  125. pick.Action = "Pick";
  126. actions.Add(pick);
  127. EfemCycleAction place = new EfemCycleAction();
  128. MoveItem placeMoveItem = new MoveItem();
  129. placeMoveItem.DestinationModule = destModule;
  130. placeMoveItem.DestinationSlot = destSlot;
  131. place.Parameter = placeMoveItem;
  132. place.Action = "Place";
  133. actions.Add(place);
  134. return actions;
  135. }
  136. public RState Monitor()
  137. {
  138. Runner.LoopStart(CycleRobotCycleStep.LoopStart, "Loop StartCycleRobotCycleRoutine", _cycleTimes, NullFun, _delay_1ms)
  139. .LoopRun(CycleRobotCycleStep.LoopRunRobotCycle, () => _cycleMoveRoutine.Start(_actions) == RState.Running,_delay_1ms)
  140. .LoopRunWithStopStatus(CycleRobotCycleStep.LoopRunRobotCycleWait, () => { return CommonFunction.CheckRoutineEndState(_cycleMoveRoutine); },
  141. () => CheckRoutineStopStatus(_cycleMoveRoutine, "CycleRobotCycleRoutine failed"))
  142. .LoopEnd(CycleRobotCycleStep.LoopEnd, UpdateCycleCount, _delay_1ms)
  143. .End(CycleRobotCycleStep.End, AchievedCycleCount, _delay_1ms);
  144. return Runner.Status;
  145. }
  146. private bool CheckRoutineStopStatus(IRoutine routine, string error)
  147. {
  148. bool result = CommonFunction.CheckRoutineStopState(routine);
  149. if (result)
  150. {
  151. Stop($"{error}");
  152. }
  153. return result;
  154. }
  155. /// <summary>
  156. /// Abort
  157. /// </summary>
  158. public void Abort()
  159. {
  160. Runner.Stop("CycleRobotCycleRoutine Abort");
  161. }
  162. /// <summary>
  163. /// 统计完成的Cycle次数
  164. /// </summary>
  165. /// <returns></returns>
  166. private bool UpdateCycleCount()
  167. {
  168. _currentCycle += 1;
  169. return true;
  170. }
  171. /// <summary>
  172. ///
  173. /// </summary>
  174. /// <returns></returns>
  175. private bool AchievedCycleCount()
  176. {
  177. _currentCycle -= 1;
  178. return true;
  179. }
  180. /// <summary>
  181. /// 获取当前Cycle次数
  182. /// </summary>
  183. /// <returns></returns>
  184. public int GetCurrentCycle()
  185. {
  186. return _currentCycle;
  187. }
  188. }
  189. }