PUFEntity.cs 48 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265
  1. using Aitex.Core.RT.DataCenter;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.Fsm;
  4. using Aitex.Core.RT.Log;
  5. using Aitex.Core.RT.OperationCenter;
  6. using Aitex.Core.RT.Routine;
  7. using Aitex.Core.Utilities;
  8. using MECF.Framework.Common.Equipment;
  9. using MECF.Framework.Common.SubstrateTrackings;
  10. using MECF.Framework.Common.Utilities;
  11. using CyberX8_Core;
  12. using CyberX8_RT.Devices.AXIS;
  13. using CyberX8_RT.Devices.PUF;
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17. using System.Text;
  18. using System.Threading.Tasks;
  19. using System.Windows.Interop;
  20. using MECF.Framework.Common.CommonData;
  21. using MECF.Framework.Common.Alarm;
  22. using Aitex.Core.Util;
  23. using MECF.Framework.Common.WaferHolder;
  24. namespace CyberX8_RT.Modules.PUF
  25. {
  26. public class PUFEntity : Entity, IEntity, IModuleEntity
  27. {
  28. #region 常量
  29. #endregion
  30. #region 属性
  31. public bool IsInRobotStation
  32. {
  33. get { return CheckPufRotationInRobot(); }
  34. }
  35. public ModuleName Module { get; private set; }
  36. public bool IsInit
  37. {
  38. get { return fsm.State == (int)PUFSTATE.Init; }
  39. }
  40. public bool IsIdle
  41. {
  42. get
  43. {
  44. return fsm.State == (int)PUFSTATE.Idle;
  45. }
  46. }
  47. public bool IsError
  48. {
  49. get { return fsm.State == (int)PUFSTATE.Error; }
  50. }
  51. public bool IsBusy
  52. {
  53. get { return !IsInit && !IsError && !IsIdle; }
  54. }
  55. public bool IsAuto { get; } = true;
  56. /// <summary>
  57. /// 是否为工程模式
  58. /// </summary>
  59. public bool IsEngineering { get; } = false;
  60. /// <summary>
  61. /// 是否为产品模式
  62. /// </summary>
  63. public bool IsProduction { get; } = true;
  64. /// <summary>
  65. /// SideA Wafer情况
  66. /// </summary>
  67. public bool SideAWaferPresent
  68. {
  69. get { return _pufVacuum.ChuckAWaferPresent; }
  70. }
  71. /// <summary>
  72. /// SideB Wafer情况
  73. /// </summary>
  74. public bool SideBWaferPresent
  75. {
  76. get { return _pufVacuum.ChuckBWaferPresent; }
  77. }
  78. public bool IsHomed
  79. {
  80. get { return _isHomed; }
  81. }
  82. /// <summary>
  83. /// 是否禁用
  84. /// </summary>
  85. public bool IsDisable { get; internal set; }
  86. /// <summary>
  87. /// Rotation是否SwitchOn
  88. /// </summary>
  89. public bool IsRotationSwitchOn
  90. {
  91. get { return _rotationAxis.IsSwitchOn; }
  92. }
  93. /// <summary>
  94. /// Flip是否SwitchOn
  95. /// </summary>
  96. public bool IsFlipSwitchOn
  97. {
  98. get { return _flipAxis.IsSwitchOn; }
  99. }
  100. /// <summary>
  101. /// 当前状态机状态
  102. /// </summary>
  103. public int State { get { return fsm.State; } }
  104. /// <summary>
  105. /// 是否回到安全位置
  106. /// </summary>
  107. public bool IsBackToParkStation
  108. {
  109. get
  110. {
  111. double flipPosition = _flipAxis.MotionData.MotorPosition;
  112. double rotationPosition = _rotationAxis.MotionData.MotorPosition;
  113. return (_flipAxis.CheckPositionIsInStation(flipPosition, "SideA")||Module==ModuleName.PUF2)
  114. && _rotationAxis.CheckPositionIsInStation(rotationPosition, "Home") &&
  115. _pufVacuum.CheckChuckIn();
  116. }
  117. }
  118. /// <summary>
  119. /// 是否Flip到达sideA
  120. /// </summary>
  121. public bool IsFlipSideA
  122. {
  123. get { return _flipAxis.CheckPositionIsInStation(_flipAxis.MotionData.MotorPosition, "SideA"); }
  124. }
  125. /// <summary>
  126. /// Vacuum状态
  127. /// </summary>
  128. public PufVacuum PufVacuum { get { return _pufVacuum; } }
  129. #endregion
  130. #region 内部变量
  131. private bool _isHomed;
  132. private JetAxisBase _flipAxis;
  133. private JetAxisBase _rotationAxis;
  134. private PufVacuum _pufVacuum;
  135. private IRoutine _currentRoutine;
  136. #endregion
  137. #region routine
  138. private PufHomeAllRoutine _homeAllRoutine;
  139. private PufSwitchOnRoutine _switchOnRoutine;
  140. private PufSwitchOffRoutine _switchOffRoutine;
  141. private PufCalibrateRoutine _calibrateRoutine;
  142. private PufPickFromLoaderRoutine _pickFromLoaderRoutine;
  143. private PufPlaceToLoaderRoutine _placeToLoaderRoutine;
  144. private PufGotoRobotForPlaceRoutine _gotoRobotForPlaceRoutine;
  145. private PufGotoRobotForPickRoutine _gotoRobotForPickRoutine;
  146. private PufReadyForRobotPlaceRoutine _readyForRobotPlaceRoutine;
  147. private PufReadyForSwapRoutine _readyForSwapRoutine;
  148. private PufSwapRoutine _swapRoutine;
  149. private PufReadyForRobotPickRoutine _readyForRobotPickRoutine;
  150. private PufBackToParkRoutine _backToParkRoutine;
  151. #endregion
  152. /// <summary>
  153. /// 构造函数
  154. /// </summary>
  155. /// <param name="module"></param>
  156. public PUFEntity(ModuleName module)
  157. {
  158. this.Module = module;
  159. _flipAxis = DEVICE.GetDevice<JetAxisBase>($"{module}.Flip");
  160. _rotationAxis=DEVICE.GetDevice<JetAxisBase>($"{module}.Rotation");
  161. _pufVacuum = DEVICE.GetDevice<PufVacuum>($"{module}.Vacuum");
  162. _pufVacuum.OnVacuumLeak += PufVacuum_OnVacuumLeak;
  163. WaferManager.Instance.SubscribeLocation(Module, 2);
  164. InitialFsm();
  165. InitializeRoutine();
  166. }
  167. /// <summary>
  168. /// Vacuum Leak 异常
  169. /// </summary>
  170. /// <param name="sender"></param>
  171. /// <param name="e"></param>
  172. private void PufVacuum_OnVacuumLeak(object sender, string e)
  173. {
  174. PostMsg((int)PUFMSG.Error);
  175. }
  176. protected override bool Init()
  177. {
  178. InitialOperation();
  179. InitialDATA();
  180. return true;
  181. }
  182. private void InitialDATA()
  183. {
  184. DATA.Subscribe($"{Module}.FsmState", () => ((PUFSTATE)fsm.State).ToString(), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  185. DATA.Subscribe($"{Module}.IsHomed", () => _isHomed,SubscriptionAttribute.FLAG.IgnoreSaveDB);
  186. DATA.Subscribe($"{Module}.IsError", () => IsError, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  187. DATA.Subscribe($"{Module}.IsInRobotStation", () => IsInRobotStation, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  188. DATA.Subscribe($"{Module}.State", () => ((PUFSTATE)fsm.State).ToString(), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  189. }
  190. /// <summary>
  191. /// 初始化操作
  192. /// </summary>
  193. private void InitialOperation()
  194. {
  195. OP.Subscribe($"{Module}.Abort", (cmd, args) => { return CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.Abort); });
  196. OP.Subscribe($"{Module}.ClearError", (cmd, args) => { return CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.ResumeError); });
  197. OP.Subscribe($"{Module}.{MotionOperation.HomeAll}", (cmd, args) => { return CheckToPostMessage<PUFSTATE,PUFMSG>(eEvent.ERR_PUF,Module.ToString(),(int)PUFMSG.HomeAll);});
  198. OP.Subscribe($"{Module}.{MotionOperation.SwitchOff}", (cmd, args) => { return CheckToPostMessage<PUFSTATE,PUFMSG>(eEvent.ERR_PUF,Module.ToString(),(int)PUFMSG.SwitchOff); });
  199. OP.Subscribe($"{Module}.{MotionOperation.SwitchOn}", (cmd, args) => { return CheckToPostMessage<PUFSTATE,PUFMSG>(eEvent.ERR_PUF,Module.ToString(),(int)PUFMSG.SwitchOn); });
  200. OP.Subscribe($"{Module}.{MotionOperation.Calibrate}", (cmd, args) => { return CheckToPostMessage<PUFSTATE,PUFMSG>(eEvent.ERR_PUF,Module.ToString(),(int)PUFMSG.Calibrate, args);});
  201. OP.Subscribe($"{Module}.{MotionOperation.Pick}", (cmd, args) => { return CheckToPostMessage<PUFSTATE,PUFMSG>(eEvent.ERR_PUF,Module.ToString(),(int)PUFMSG.PickFromLoader, args); });
  202. OP.Subscribe($"{Module}.{MotionOperation.Place}", (cmd, args) => { return CheckToPostMessage<PUFSTATE,PUFMSG>(eEvent.ERR_PUF,Module.ToString(),(int)PUFMSG.PlaceToLoader, args); });
  203. OP.Subscribe($"{Module}.GotoRobotPositionForPlace", (cmd, args) => { return CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.GotoRobotPositionForPlace, args); });
  204. OP.Subscribe($"{Module}.GotoRobotPositionForPick", (cmd, args) => { return CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.GotoRobotPositionForPick, args); });
  205. }
  206. /// <summary>
  207. /// 初始化Routine
  208. /// </summary>
  209. private void InitializeRoutine()
  210. {
  211. _homeAllRoutine = new PufHomeAllRoutine(Module,this);
  212. _switchOnRoutine = new PufSwitchOnRoutine(Module);
  213. _switchOffRoutine= new PufSwitchOffRoutine(Module);
  214. _calibrateRoutine = new PufCalibrateRoutine(Module);
  215. _pickFromLoaderRoutine = new PufPickFromLoaderRoutine(Module.ToString());
  216. _placeToLoaderRoutine=new PufPlaceToLoaderRoutine(Module.ToString());
  217. _gotoRobotForPlaceRoutine = new PufGotoRobotForPlaceRoutine(Module.ToString());
  218. _gotoRobotForPickRoutine=new PufGotoRobotForPickRoutine(Module.ToString());
  219. _readyForRobotPlaceRoutine=new PufReadyForRobotPlaceRoutine(Module.ToString());
  220. _readyForSwapRoutine=new PufReadyForSwapRoutine(Module.ToString());
  221. _swapRoutine=new PufSwapRoutine(Module.ToString());
  222. _readyForRobotPickRoutine=new PufReadyForRobotPickRoutine(Module.ToString());
  223. _backToParkRoutine=new PufBackToParkRoutine(Module.ToString());
  224. }
  225. /// <summary>
  226. /// 初始化状态机
  227. /// </summary>
  228. private void InitialFsm()
  229. {
  230. fsm = new StateMachine<PUFEntity>(Module.ToString(), (int)PUFSTATE.Init, 20);
  231. fsm.EnableRepeatedMsg(true);
  232. AnyStateTransition(PUFMSG.Error, EnterError, PUFSTATE.Error);
  233. AnyStateTransition(PUFMSG.ReturnIdle, (param) => { return true; }, PUFSTATE.Idle);
  234. AnyStateTransition(PUFMSG.Abort, Abort, PUFSTATE.Init);
  235. AnyStateTransition(PUFMSG.HomeAll, HomeAll, PUFSTATE.Homing);
  236. Transition(PUFSTATE.Error, PUFMSG.ResumeError, ResumeError, PUFSTATE.Init);
  237. //SwitchOn
  238. Transition(PUFSTATE.Init, PUFMSG.SwitchOn, SwitchOnAll, PUFSTATE.SwitchOning);
  239. Transition(PUFSTATE.Idle, PUFMSG.SwitchOn, SwitchOnAll, PUFSTATE.SwitchOning);
  240. Transition(PUFSTATE.Error, PUFMSG.SwitchOn, SwitchOnAll, PUFSTATE.SwitchOning);
  241. Transition(PUFSTATE.SwitchOning, FSM_MSG.TIMER, SwitchOnTimeout, PUFSTATE.Init);
  242. //SwitchOff
  243. Transition(PUFSTATE.Init, PUFMSG.SwitchOff, SwitchOffAll, PUFSTATE.SwitchOffing);
  244. Transition(PUFSTATE.Idle, PUFMSG.SwitchOff, SwitchOffAll, PUFSTATE.SwitchOffing);
  245. Transition(PUFSTATE.Error, PUFMSG.SwitchOff, SwitchOffAll, PUFSTATE.SwitchOffing);
  246. Transition(PUFSTATE.SwitchOffing, FSM_MSG.TIMER, SwitchOffTimeout, PUFSTATE.Init);
  247. // Home
  248. Transition(PUFSTATE.Homing, FSM_MSG.TIMER, HomingTimeout, PUFSTATE.Idle);
  249. //Calibrate
  250. Transition(PUFSTATE.Idle, PUFMSG.Calibrate, Calibrate, PUFSTATE.Calibrating);
  251. Transition(PUFSTATE.Calibrating, FSM_MSG.TIMER, CalibrateTimeout, PUFSTATE.Idle);
  252. //PickFromLoader
  253. Transition(PUFSTATE.Idle, PUFMSG.PickFromLoader, PickFromLoader, PUFSTATE.Picking);
  254. Transition(PUFSTATE.Picking, FSM_MSG.TIMER, PickTimeout, PUFSTATE.Idle);
  255. //PlaceToLoader
  256. Transition(PUFSTATE.Idle, PUFMSG.PlaceToLoader, PlaceToLoader, PUFSTATE.Placing);
  257. Transition(PUFSTATE.Placing, FSM_MSG.TIMER, PlaceToLoaderMonitor, PUFSTATE.Idle);
  258. //GotoRobotPositionForPlace
  259. Transition(PUFSTATE.Idle, PUFMSG.GotoRobotPositionForPlace, GotoRobotPositionForPlace, PUFSTATE.GotoRobotPositionForPlace);
  260. Transition(PUFSTATE.GotoRobotPositionForPlace, FSM_MSG.TIMER, GotoRobotPositionForPlaceMonitor, PUFSTATE.Idle);
  261. //GotoRobotPositionForPick
  262. Transition(PUFSTATE.Idle, PUFMSG.GotoRobotPositionForPick, GotoRobotPositionForPick, PUFSTATE.GotoRobotPositionForPick);
  263. Transition(PUFSTATE.GotoRobotPositionForPick, FSM_MSG.TIMER, GotoRobotPositionForPickMonitor, PUFSTATE.Idle);
  264. //ready for robot place
  265. Transition(PUFSTATE.Idle, PUFMSG.ReadyForRobotPlace, ReadyForRobotPlace, PUFSTATE.WaitForRobotPlacing);
  266. Transition(PUFSTATE.WaitForRobotPlacing, FSM_MSG.TIMER, ReadyForRobotPlaceMonitor, PUFSTATE.WaitForRobotPlace);
  267. Transition(PUFSTATE.WaitForRobotPlace, PUFMSG.ReadyForSwap, ReadyForSwap, PUFSTATE.WaitForSwaping);
  268. Transition(PUFSTATE.WaitForSwaping, FSM_MSG.TIMER, ReadyForSwapMonitor, PUFSTATE.WaitForSwap);
  269. Transition(PUFSTATE.WaitForSwap, PUFMSG.Swap, Swap, PUFSTATE.Swaping);
  270. Transition(PUFSTATE.Swaping, FSM_MSG.TIMER, SwapMonitor, PUFSTATE.AferSwapParkStation);
  271. Transition(PUFSTATE.AferSwapParkStation, PUFMSG.ReadyForRobotPick, ReadyForRobotPick, PUFSTATE.WaitForRobotPicking);
  272. Transition(PUFSTATE.WaitForRobotPicking, FSM_MSG.TIMER, ReadyForRobotPickMonitor, PUFSTATE.WaitForRobotPick);
  273. Transition(PUFSTATE.WaitForRobotPick, PUFMSG.RobotPickComplete, BackToParkStation, PUFSTATE.BackToPackStationing);
  274. Transition(PUFSTATE.BackToPackStationing, FSM_MSG.TIMER, BackToParkStationMonitor, PUFSTATE.Idle);
  275. Transition(PUFSTATE.Idle, PUFMSG.FlipSideA, FlipSideA, PUFSTATE.Fliping);
  276. Transition(PUFSTATE.Fliping,FSM_MSG.TIMER,FlipSideAMonitor,PUFSTATE.Idle);
  277. //Retry
  278. Transition(PUFSTATE.Error, PUFMSG.Retry, NullFunc, PUFSTATE.Retrying);
  279. Transition(PUFSTATE.Retrying, FSM_MSG.TIMER, PufRetry,PUFSTATE.Retrying);
  280. Transition(PUFSTATE.Retrying, PUFMSG.ReadyForRobotPlace, RetryReadyForRobotPlace, PUFSTATE.WaitForRobotPlacing);
  281. Transition(PUFSTATE.Retrying, PUFMSG.ReadyForSwap, RetryReadyForSwap, PUFSTATE.WaitForSwaping);
  282. Transition(PUFSTATE.Retrying, PUFMSG.Swap, RetrySwap, PUFSTATE.Swaping);
  283. Transition(PUFSTATE.Retrying, PUFMSG.ReadyForRobotPick, RetryReadyForRobotPick, PUFSTATE.WaitForRobotPicking);
  284. Transition(PUFSTATE.Retrying, PUFMSG.RobotPickComplete, RetryBackToParkStation, PUFSTATE.BackToPackStationing);
  285. //ConfirmComplete
  286. Transition(PUFSTATE.Error, PUFMSG.ConfirmComplete, NullFunc, PUFSTATE.ConfirmCompleting);
  287. Transition(PUFSTATE.Init, PUFMSG.ConfirmComplete, ClearModuleAlarm, PUFSTATE.Init);
  288. Transition(PUFSTATE.Idle, PUFMSG.ConfirmComplete, ClearModuleAlarm, PUFSTATE.Idle);
  289. Transition(PUFSTATE.ConfirmCompleting, FSM_MSG.TIMER, ConfirmComplete, PUFSTATE.ConfirmCompleting);
  290. Transition(PUFSTATE.ConfirmCompleting, PUFMSG.ReadyForRobotPlace, ConfirmReadyForRobotPlace, PUFSTATE.WaitForRobotPlace);
  291. Transition(PUFSTATE.ConfirmCompleting, PUFMSG.ReadyForSwap, ConfirmReadyForSwap, PUFSTATE.WaitForSwap);
  292. Transition(PUFSTATE.ConfirmCompleting, PUFMSG.Swap, ConfirmSwap, PUFSTATE.AferSwapParkStation);
  293. Transition(PUFSTATE.ConfirmCompleting, PUFMSG.ReadyForRobotPick, ConfirmReadyForRobotPick, PUFSTATE.WaitForRobotPick);
  294. Transition(PUFSTATE.ConfirmCompleting, PUFMSG.RobotPickComplete, ConfirmBackToParkStation, PUFSTATE.Idle);
  295. EnumLoop<PUFSTATE>.ForEach((item) => { fsm.MapState((int)item, item.ToString()); });
  296. EnumLoop<PUFMSG>.ForEach((item) => { fsm.MapMessage((int)item, item.ToString()); });
  297. }
  298. private bool EnterError(object[] param)
  299. {
  300. return true;
  301. }
  302. /// <summary>
  303. /// 恢复错误
  304. /// </summary>
  305. /// <param name="param"></param>
  306. /// <returns></returns>
  307. private bool ResumeError(object[] param)
  308. {
  309. if (_isHomed)
  310. {
  311. PostMsg(PUFMSG.ReturnIdle);
  312. return false;
  313. }
  314. return true;
  315. }
  316. #region Abort
  317. private bool Abort(object parameter)
  318. {
  319. bool preHomed = IsHomed;
  320. if(_flipAxis != null) _flipAxis.StopPositionOperation();
  321. if(_rotationAxis != null) _rotationAxis.StopPositionOperation();
  322. if(_currentRoutine!=null)
  323. {
  324. _currentRoutine.Abort();
  325. _currentRoutine = null;
  326. }
  327. if (preHomed)
  328. {
  329. PostMsg(PUFMSG.ReturnIdle);
  330. return false;
  331. }
  332. return true;
  333. }
  334. #endregion
  335. #region Switch On
  336. /// <summary>
  337. /// SwitchAll
  338. /// </summary>
  339. /// <param name="param"></param>
  340. /// <returns></returns>
  341. private bool SwitchOnAll(object[] param)
  342. {
  343. return _switchOnRoutine.Start() == RState.Running;
  344. }
  345. private bool SwitchOnTimeout(object[] param)
  346. {
  347. RState ret = _switchOnRoutine.Monitor();
  348. if (ret == RState.Failed || ret == RState.Timeout)
  349. {
  350. PostMsg(PUFMSG.Error);
  351. return false;
  352. }
  353. bool result= ret == RState.End;
  354. if(result)
  355. {
  356. _isHomed = false;
  357. }
  358. return result;
  359. }
  360. #endregion
  361. #region Switch Off
  362. /// <summary>
  363. /// SwitchAll
  364. /// </summary>
  365. /// <param name="param"></param>
  366. /// <returns></returns>
  367. private bool SwitchOffAll(object[] param)
  368. {
  369. return _switchOffRoutine.Start() == RState.Running;
  370. }
  371. private bool SwitchOffTimeout(object[] param)
  372. {
  373. RState ret = _switchOffRoutine.Monitor();
  374. if (ret == RState.Failed || ret == RState.Timeout)
  375. {
  376. PostMsg(PUFMSG.Error);
  377. return false;
  378. }
  379. bool result= ret == RState.End;
  380. if(result)
  381. {
  382. _isHomed= false;
  383. }
  384. return result;
  385. }
  386. #endregion
  387. #region Home
  388. /// <summary>
  389. /// HomeAll
  390. /// </summary>
  391. /// <param name="param"></param>
  392. /// <returns></returns>
  393. private bool HomeAll(object[] param)
  394. {
  395. _isHomed = false;
  396. bool result= _homeAllRoutine.Start() == RState.Running;
  397. if(result)
  398. {
  399. _currentRoutine = _homeAllRoutine;
  400. }
  401. return result;
  402. }
  403. /// <summary>
  404. /// Home超时
  405. /// </summary>
  406. /// <param name="param"></param>
  407. /// <returns></returns>
  408. private bool HomingTimeout(object[] param)
  409. {
  410. RState ret = _homeAllRoutine.Monitor();
  411. if (ret == RState.Failed || ret == RState.Timeout)
  412. {
  413. _currentRoutine = null;
  414. PostMsg(PUFMSG.Error);
  415. _isHomed = false;
  416. return false;
  417. }
  418. bool result = ret == RState.End;
  419. if (result)
  420. {
  421. _currentRoutine = null;
  422. _isHomed = true;
  423. }
  424. return result;
  425. }
  426. #endregion
  427. #region Calibrate
  428. private bool Calibrate(object[] param)
  429. {
  430. _calibrateRoutine.Start(param);
  431. return true;
  432. }
  433. private bool CalibrateTimeout(object[] param)
  434. {
  435. RState ret = _calibrateRoutine.Monitor();
  436. if (ret == RState.Failed || ret == RState.Timeout)
  437. {
  438. return true;
  439. }
  440. return ret == RState.End;
  441. }
  442. #endregion
  443. #region Pick
  444. private bool PickFromLoader(object[] param)
  445. {
  446. bool result= _pickFromLoaderRoutine.Start(param)==RState.Running;
  447. if(result)
  448. {
  449. _currentRoutine = _pickFromLoaderRoutine;
  450. }
  451. return result;
  452. }
  453. private bool PickTimeout(object[] param)
  454. {
  455. //RState ret = _pufNoWaferPickRoutine.Monitor();
  456. RState ret = _pickFromLoaderRoutine.Monitor();
  457. if (ret == RState.Failed || ret == RState.Timeout)
  458. {
  459. PostMsg(PUFMSG.Error);
  460. return false;
  461. }
  462. bool result = ret == RState.End;
  463. if(result)
  464. {
  465. _currentRoutine = null;
  466. }
  467. return result;
  468. }
  469. #endregion
  470. #region Place
  471. /// <summary>
  472. /// 放片至Loader
  473. /// </summary>
  474. /// <param name="param"></param>
  475. /// <returns></returns>
  476. private bool PlaceToLoader(object[] param)
  477. {
  478. bool result = _placeToLoaderRoutine.Start(param) == RState.Running;
  479. if(result)
  480. {
  481. _currentRoutine = _placeToLoaderRoutine;
  482. }
  483. return result;
  484. }
  485. /// <summary>
  486. /// 监控放片至Loader
  487. /// </summary>
  488. /// <param name="param"></param>
  489. /// <returns></returns>
  490. private bool PlaceToLoaderMonitor(object[] param)
  491. {
  492. //RState ret = _pufNoWaferPickRoutine.Monitor();
  493. RState ret = _placeToLoaderRoutine.Monitor();
  494. if (ret == RState.Failed || ret == RState.Timeout)
  495. {
  496. _currentRoutine = null;
  497. PostMsg(PUFMSG.Error);
  498. return false;
  499. }
  500. bool result = ret == RState.End;
  501. if(result)
  502. {
  503. _currentRoutine = null;
  504. }
  505. return result;
  506. }
  507. #endregion
  508. #region GotoRobotPositionForPlace
  509. /// <summary>
  510. /// Goto Robot Position For Place
  511. /// </summary>
  512. /// <param name="param"></param>
  513. /// <returns></returns>
  514. private bool GotoRobotPositionForPlace(object[] param)
  515. {
  516. bool result= _gotoRobotForPlaceRoutine.Start(param)==RState.Running;
  517. if(result)
  518. {
  519. _currentRoutine = _gotoRobotForPlaceRoutine;
  520. }
  521. return result;
  522. }
  523. /// <summary>
  524. /// Goto Robot Position For Place监控
  525. /// </summary>
  526. /// <param name="param"></param>
  527. /// <returns></returns>
  528. private bool GotoRobotPositionForPlaceMonitor(object[] param)
  529. {
  530. RState ret = _gotoRobotForPlaceRoutine.Monitor();
  531. if (ret == RState.Failed || ret == RState.Timeout)
  532. {
  533. _currentRoutine = null;
  534. PostMsg(PUFMSG.Error);
  535. return false;
  536. }
  537. bool result= ret == RState.End;
  538. if(result)
  539. {
  540. _currentRoutine = null;
  541. }
  542. return result;
  543. }
  544. #endregion
  545. #region GotoRobotPositionForPick
  546. /// <summary>
  547. /// Goto Robot Position For Pick
  548. /// </summary>
  549. /// <param name="param"></param>
  550. /// <returns></returns>
  551. private bool GotoRobotPositionForPick(object[] param)
  552. {
  553. bool result= _gotoRobotForPickRoutine.Start(param) == RState.Running;
  554. if(result)
  555. {
  556. _currentRoutine = _gotoRobotForPickRoutine;
  557. }
  558. return result;
  559. }
  560. /// <summary>
  561. /// Goto Robot Position For Pick监控
  562. /// </summary>
  563. /// <param name="param"></param>
  564. /// <returns></returns>
  565. private bool GotoRobotPositionForPickMonitor(object[] param)
  566. {
  567. RState ret = _gotoRobotForPickRoutine.Monitor();
  568. if (ret == RState.Failed || ret == RState.Timeout)
  569. {
  570. _currentRoutine = null;
  571. PostMsg(PUFMSG.Error);
  572. return false;
  573. }
  574. bool result = ret == RState.End;
  575. if(result)
  576. {
  577. _currentRoutine = null;
  578. }
  579. return result;
  580. }
  581. #endregion
  582. #region ReadyForRobotPlace
  583. /// <summary>
  584. /// Ready For Robot Place
  585. /// </summary>
  586. /// <param name="param"></param>
  587. /// <returns></returns>
  588. private bool ReadyForRobotPlace(object[] param)
  589. {
  590. bool result = _readyForRobotPlaceRoutine.Start(param)==RState.Running;
  591. if(result)
  592. {
  593. _currentRoutine = _readyForRobotPlaceRoutine;
  594. }
  595. return result;
  596. }
  597. /// <summary>
  598. /// Ready For Robot Place
  599. /// </summary>
  600. /// <param name="param"></param>
  601. /// <returns></returns>
  602. private bool RetryReadyForRobotPlace(object[] param)
  603. {
  604. int stepIndex = (int)param[0];
  605. bool result = _readyForRobotPlaceRoutine.Retry(stepIndex) == RState.Running;
  606. if (result)
  607. {
  608. _currentRoutine = _readyForRobotPlaceRoutine;
  609. }
  610. return result;
  611. }
  612. /// <summary>
  613. /// ReadyForRobotPlace监控
  614. /// </summary>
  615. /// <param name="param"></param>
  616. /// <returns></returns>
  617. private bool ReadyForRobotPlaceMonitor(object[] param)
  618. {
  619. RState ret = _readyForRobotPlaceRoutine.Monitor();
  620. if (ret == RState.Failed || ret == RState.Timeout)
  621. {
  622. _currentRoutine = null;
  623. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  624. {
  625. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.ReadyForRobotPlace, _readyForRobotPlaceRoutine.ErrorMsg, _readyForRobotPlaceRoutine.ErrorStep, (int)AlarmType.Error);
  626. AlarmListManager.Instance.AddAlarm(alarmList);
  627. }
  628. PostMsg(PUFMSG.Error);
  629. return false;
  630. }
  631. bool result= ret == RState.End;
  632. if(result)
  633. {
  634. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.WaitForRobotPlacing.ToString());
  635. _currentRoutine = null;
  636. }
  637. return result;
  638. }
  639. /// <summary>
  640. /// 确认ReadyForRobotPlace
  641. /// </summary>
  642. /// <param name="param"></param>
  643. /// <returns></returns>
  644. private bool ConfirmReadyForRobotPlace(object[] param)
  645. {
  646. bool result = _readyForRobotPlaceRoutine.CheckCompleteCondition();
  647. if (!result)
  648. {
  649. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  650. {
  651. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.ReadyForRobotPlace,
  652. _readyForRobotPlaceRoutine.ErrorMsg, _readyForRobotPlaceRoutine.ErrorStep, (int)AlarmType.Error);
  653. AlarmListManager.Instance.AddAlarm(alarmList);
  654. }
  655. PostMsg(PUFMSG.Error);
  656. }
  657. else
  658. {
  659. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  660. {
  661. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.WaitForRobotPlacing.ToString());
  662. }
  663. }
  664. return result;
  665. }
  666. #endregion
  667. #region Ready for Swap
  668. /// <summary>
  669. /// Ready For Swap
  670. /// </summary>
  671. /// <param name="param"></param>
  672. /// <returns></returns>
  673. private bool ReadyForSwap(object[] param)
  674. {
  675. bool result= _readyForSwapRoutine.Start(param)==RState.Running;
  676. if(result)
  677. {
  678. _currentRoutine = _readyForSwapRoutine;
  679. }
  680. return result;
  681. }
  682. /// <summary>
  683. /// Retry Ready For Swap
  684. /// </summary>
  685. /// <param name="param"></param>
  686. /// <returns></returns>
  687. private bool RetryReadyForSwap(object[] param)
  688. {
  689. int stepIndex = (int)param[0];
  690. bool result = _readyForSwapRoutine.Retry(stepIndex) == RState.Running;
  691. if (result)
  692. {
  693. _currentRoutine = _readyForSwapRoutine;
  694. }
  695. return result;
  696. }
  697. /// <summary>
  698. /// Ready For Swap 监控
  699. /// </summary>
  700. /// <param name="param"></param>
  701. /// <returns></returns>
  702. private bool ReadyForSwapMonitor(object[] param)
  703. {
  704. RState ret = _readyForSwapRoutine.Monitor();
  705. if (ret == RState.Failed || ret == RState.Timeout)
  706. {
  707. _currentRoutine = null;
  708. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  709. {
  710. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.ReadyForSwap,
  711. _readyForSwapRoutine.ErrorMsg, _readyForSwapRoutine.ErrorStep, (int)AlarmType.Error);
  712. AlarmListManager.Instance.AddAlarm(alarmList);
  713. }
  714. PostMsg(PUFMSG.Error);
  715. return false;
  716. }
  717. bool result= ret == RState.End;
  718. if(result)
  719. {
  720. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.WaitForSwaping.ToString());
  721. _currentRoutine = null;
  722. }
  723. return result;
  724. }
  725. /// <summary>
  726. /// 确认Ready For Swap
  727. /// </summary>
  728. /// <param name="param"></param>
  729. /// <returns></returns>
  730. private bool ConfirmReadyForSwap(object[] param)
  731. {
  732. bool result = _readyForSwapRoutine.CheckCompleteCondition();
  733. if (!result)
  734. {
  735. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  736. {
  737. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.ReadyForSwap,
  738. _readyForSwapRoutine.ErrorMsg, _readyForSwapRoutine.ErrorStep, (int)AlarmType.Error);
  739. AlarmListManager.Instance.AddAlarm(alarmList);
  740. }
  741. PostMsg(PUFMSG.Error);
  742. }
  743. else
  744. {
  745. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  746. {
  747. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.WaitForSwaping.ToString());
  748. }
  749. }
  750. return result;
  751. }
  752. #endregion
  753. #region Swap
  754. /// <summary>
  755. /// Swap
  756. /// </summary>
  757. /// <param name="param"></param>
  758. /// <returns></returns>
  759. private bool Swap(object[] param)
  760. {
  761. bool result= _swapRoutine.Start(param)==RState.Running;
  762. if(result)
  763. {
  764. _currentRoutine = _swapRoutine;
  765. }
  766. return result;
  767. }
  768. /// <summary>
  769. /// Retry Swap
  770. /// </summary>
  771. /// <param name="param"></param>
  772. /// <returns></returns>
  773. private bool RetrySwap(object[] param)
  774. {
  775. int stepIndex = (int)param[0];
  776. bool result = _swapRoutine.Retry(stepIndex) == RState.Running;
  777. if (result)
  778. {
  779. _currentRoutine = _swapRoutine;
  780. }
  781. return result;
  782. }
  783. /// <summary>
  784. /// Swap监控
  785. /// </summary>
  786. /// <param name="param"></param>
  787. /// <returns></returns>
  788. private bool SwapMonitor(object[] param)
  789. {
  790. RState ret = _swapRoutine.Monitor();
  791. if (ret == RState.Failed || ret == RState.Timeout)
  792. {
  793. _currentRoutine = null;
  794. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  795. {
  796. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.Swap,
  797. _swapRoutine.ErrorMsg, _swapRoutine.ErrorStep, (int)AlarmType.Error);
  798. AlarmListManager.Instance.AddAlarm(alarmList);
  799. }
  800. PostMsg(PUFMSG.Error);
  801. return false;
  802. }
  803. bool result = ret == RState.End;
  804. if(result)
  805. {
  806. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.Swaping.ToString());
  807. _currentRoutine = null;
  808. }
  809. return result;
  810. }
  811. /// <summary>
  812. /// 确认ReadyForRobotPick
  813. /// </summary>
  814. /// <param name="param"></param>
  815. /// <returns></returns>
  816. private bool ConfirmSwap(object[] param)
  817. {
  818. bool result = _swapRoutine.CheckCompleteCondition();
  819. if (!result)
  820. {
  821. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  822. {
  823. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.Swap,
  824. _readyForRobotPickRoutine.ErrorMsg, _readyForRobotPickRoutine.ErrorStep, (int)AlarmType.Error);
  825. AlarmListManager.Instance.AddAlarm(alarmList);
  826. }
  827. PostMsg(PUFMSG.Error);
  828. }
  829. else
  830. {
  831. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  832. {
  833. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.Swaping.ToString());
  834. }
  835. }
  836. return result;
  837. }
  838. #endregion
  839. #region ReadyForRobotPIck
  840. /// <summary>
  841. /// Ready For Robot Pick
  842. /// </summary>
  843. /// <param name="param"></param>
  844. /// <returns></returns>
  845. private bool ReadyForRobotPick(object[] param)
  846. {
  847. bool result= _readyForRobotPickRoutine.Start(param) == RState.Running;
  848. if(result)
  849. {
  850. _currentRoutine = _readyForRobotPickRoutine;
  851. }
  852. return result;
  853. }
  854. /// <summary>
  855. /// retry Ready For Robot Pick
  856. /// </summary>
  857. /// <param name="param"></param>
  858. /// <returns></returns>
  859. private bool RetryReadyForRobotPick(object[] param)
  860. {
  861. int stepIndex = (int)param[0];
  862. bool result = _readyForRobotPickRoutine.Retry(stepIndex) == RState.Running;
  863. if (result)
  864. {
  865. _currentRoutine = _readyForRobotPickRoutine;
  866. }
  867. return result;
  868. }
  869. /// <summary>
  870. /// ReadyForRobotPick监控
  871. /// </summary>
  872. /// <param name="param"></param>
  873. /// <returns></returns>
  874. private bool ReadyForRobotPickMonitor(object[] param)
  875. {
  876. RState ret = _readyForRobotPickRoutine.Monitor();
  877. if (ret == RState.Failed || ret == RState.Timeout)
  878. {
  879. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  880. {
  881. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.ReadyForRobotPick,
  882. _readyForRobotPickRoutine.ErrorMsg, _readyForRobotPickRoutine.ErrorStep, (int)AlarmType.Error);
  883. AlarmListManager.Instance.AddAlarm(alarmList);
  884. }
  885. PostMsg(PUFMSG.Error);
  886. _currentRoutine = _readyForRobotPickRoutine;
  887. return false;
  888. }
  889. bool result= ret == RState.End;
  890. if(result)
  891. {
  892. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.WaitForRobotPicking.ToString());
  893. _currentRoutine = null;
  894. }
  895. return result;
  896. }
  897. /// <summary>
  898. /// 确认ReadyForRobotPick
  899. /// </summary>
  900. /// <param name="param"></param>
  901. /// <returns></returns>
  902. private bool ConfirmReadyForRobotPick(object[] param)
  903. {
  904. bool result = _readyForRobotPickRoutine.CheckCompleteCondition();
  905. if (!result)
  906. {
  907. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  908. {
  909. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.ReadyForRobotPick,
  910. _readyForRobotPickRoutine.ErrorMsg, _readyForRobotPickRoutine.ErrorStep, (int)AlarmType.Error);
  911. AlarmListManager.Instance.AddAlarm(alarmList);
  912. }
  913. PostMsg(PUFMSG.Error);
  914. }
  915. else
  916. {
  917. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  918. {
  919. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.ConfirmCompleting.ToString());
  920. }
  921. }
  922. return result;
  923. }
  924. #endregion
  925. #region BackToParkStation
  926. /// <summary>
  927. /// Back to park station
  928. /// </summary>
  929. /// <param name="param"></param>
  930. /// <returns></returns>
  931. private bool BackToParkStation(object[] param)
  932. {
  933. bool result= _backToParkRoutine.Start(param) == RState.Running;
  934. if(result)
  935. {
  936. _currentRoutine = _backToParkRoutine;
  937. }
  938. return true;
  939. }
  940. /// <summary>
  941. /// Retry Back to park station
  942. /// </summary>
  943. /// <param name="param"></param>
  944. /// <returns></returns>
  945. private bool RetryBackToParkStation(object[] param)
  946. {
  947. int stepIdex = (int)param[0];
  948. bool result = _backToParkRoutine.Retry(stepIdex) == RState.Running;
  949. if (result)
  950. {
  951. _currentRoutine = _backToParkRoutine;
  952. }
  953. return true;
  954. }
  955. /// <summary>
  956. /// BackToParkStation监控
  957. /// </summary>
  958. /// <param name="param"></param>
  959. /// <returns></returns>
  960. private bool BackToParkStationMonitor(object[] param)
  961. {
  962. RState ret = _backToParkRoutine.Monitor();
  963. if (ret == RState.Failed || ret == RState.Timeout)
  964. {
  965. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  966. {
  967. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.RobotPickComplete,
  968. _backToParkRoutine.ErrorMsg, _backToParkRoutine.ErrorStep, (int)AlarmType.Error);
  969. AlarmListManager.Instance.AddAlarm(alarmList);
  970. }
  971. PostMsg(PUFMSG.Error);
  972. _currentRoutine = null;
  973. return false;
  974. }
  975. bool result= ret == RState.End;
  976. if(result)
  977. {
  978. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.BackToPackStationing.ToString());
  979. _currentRoutine = null;
  980. }
  981. return result;
  982. }
  983. /// <summary>
  984. /// 确认BackToParkStation
  985. /// </summary>
  986. /// <param name="param"></param>
  987. /// <returns></returns>
  988. private bool ConfirmBackToParkStation(object[] param)
  989. {
  990. bool result = _backToParkRoutine.CheckCompleteCondition();
  991. if (!result)
  992. {
  993. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  994. {
  995. AlarmList alarmList = new AlarmList(Module.ToString(), ((PUFSTATE)fsm.State).ToString(), (int)PUFMSG.RobotPickComplete,
  996. _backToParkRoutine.ErrorMsg, _backToParkRoutine.ErrorStep, (int)AlarmType.Error);
  997. AlarmListManager.Instance.AddAlarm(alarmList);
  998. }
  999. PostMsg(PUFMSG.Error);
  1000. }
  1001. else
  1002. {
  1003. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  1004. {
  1005. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), PUFSTATE.BackToPackStationing.ToString());
  1006. }
  1007. }
  1008. return result;
  1009. }
  1010. #endregion
  1011. #region Retry
  1012. /// <summary>
  1013. /// Retry
  1014. /// </summary>
  1015. /// <param name="param"></param>
  1016. /// <returns></returns>
  1017. private bool PufRetry(object[] param)
  1018. {
  1019. AlarmList alarmList = AlarmListManager.Instance.GetAlarmListByModule(Module.ToString());
  1020. if (alarmList != null)
  1021. {
  1022. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), alarmList.ModuleCmd,
  1023. alarmList.ModuleStep);
  1024. }
  1025. return false;
  1026. }
  1027. #endregion
  1028. #region ConfirmComplete
  1029. /// <summary>
  1030. /// 确认是否完成
  1031. /// </summary>
  1032. /// <param name="param"></param>
  1033. /// <returns></returns>
  1034. private bool ConfirmComplete(object[] param)
  1035. {
  1036. AlarmList alarmList = AlarmListManager.Instance.GetAlarmListByModule(Module.ToString());
  1037. if (alarmList != null)
  1038. {
  1039. if (alarmList.ModuleState == PUFSTATE.WaitForRobotPlacing.ToString())
  1040. {
  1041. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.ReadyForRobotPlace);
  1042. }
  1043. else if (alarmList.ModuleState == PUFSTATE.WaitForSwaping.ToString())
  1044. {
  1045. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.ReadyForSwap);
  1046. }
  1047. else if (alarmList.ModuleState == PUFSTATE.WaitForRobotPicking.ToString())
  1048. {
  1049. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.ReadyForRobotPick);
  1050. }
  1051. else if (alarmList.ModuleState == PUFSTATE.BackToPackStationing.ToString())
  1052. {
  1053. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.RobotPickComplete);
  1054. }
  1055. else if (alarmList.ModuleState == PUFSTATE.Swaping.ToString())
  1056. {
  1057. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.Swap);
  1058. }
  1059. else
  1060. {
  1061. PostMsg(PUFMSG.Error);
  1062. LOG.WriteLog(eEvent.ERR_PUF, Module.ToString(), $"error state {alarmList.ModuleState},cannot ConfirmComplete");
  1063. }
  1064. }
  1065. return false;
  1066. }
  1067. /// <summary>
  1068. /// 清除报警
  1069. /// </summary>
  1070. /// <param name="param"></param>
  1071. /// <returns></returns>
  1072. private bool ClearModuleAlarm(object[] param)
  1073. {
  1074. AlarmList alarmList = AlarmListManager.Instance.GetAlarmListByModule(Module.ToString());
  1075. if (alarmList != null)
  1076. {
  1077. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), "");
  1078. }
  1079. return true;
  1080. }
  1081. #endregion
  1082. #region FlipSideA
  1083. /// <summary>
  1084. /// Flip SideA
  1085. /// </summary>
  1086. /// <param name="param"></param>
  1087. /// <returns></returns>
  1088. private bool FlipSideA(object[] param)
  1089. {
  1090. return _flipAxis.PositionStation("SideA");
  1091. }
  1092. /// <summary>
  1093. /// Flip SideA监控
  1094. /// </summary>
  1095. /// <param name="param"></param>
  1096. /// <returns></returns>
  1097. private bool FlipSideAMonitor(object[] param)
  1098. {
  1099. RState ret = _flipAxis.Status;
  1100. if (ret == RState.End)
  1101. {
  1102. return true;
  1103. }
  1104. else if (ret == RState.Failed || ret == RState.Timeout)
  1105. {
  1106. PostMsg(PUFMSG.Error);
  1107. }
  1108. return false;
  1109. }
  1110. #endregion
  1111. /// <summary>
  1112. /// 校验Puf Rotation是否到达Robot位置
  1113. /// </summary>
  1114. /// <returns></returns>
  1115. public bool CheckPufRotationInRobot()
  1116. {
  1117. if (!_pufVacuum.CheckChuckIn())
  1118. {
  1119. return false;
  1120. }
  1121. if (!_rotationAxis.CheckPositionIsInStation(_rotationAxis.MotionData.MotorPosition, "Robot"))
  1122. {
  1123. return false;
  1124. }
  1125. return true;
  1126. }
  1127. public bool Check(int msg, out string reason, params object[] args)
  1128. {
  1129. reason = "";
  1130. return false;
  1131. }
  1132. public bool CheckAcked(int msg)
  1133. {
  1134. return false;
  1135. }
  1136. public int Invoke(string function, params object[] args)
  1137. {
  1138. switch(function)
  1139. {
  1140. case "HomeAll":
  1141. if(IsIdle)
  1142. {
  1143. return (int)FSM_MSG.NONE;
  1144. }
  1145. if (CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.HomeAll))
  1146. {
  1147. return (int)FSM_MSG.NONE;
  1148. }
  1149. else
  1150. {
  1151. return (int)FSM_MSG.ALARM;
  1152. }
  1153. case "Abort":
  1154. CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.Abort);
  1155. return (int)FSM_MSG.NONE;
  1156. case "Retry":
  1157. if (CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.Retry, args))
  1158. {
  1159. return (int)PUFMSG.Retry;
  1160. }
  1161. else
  1162. {
  1163. return (int)FSM_MSG.NONE;
  1164. }
  1165. case "ConfirmComplete":
  1166. if (CheckToPostMessage<PUFSTATE, PUFMSG>(eEvent.ERR_PUF, Module.ToString(), (int)PUFMSG.ConfirmComplete, args))
  1167. {
  1168. return (int)PUFMSG.ConfirmComplete;
  1169. }
  1170. else
  1171. {
  1172. return (int)FSM_MSG.NONE;
  1173. }
  1174. default:
  1175. return (int)FSM_MSG.NONE;
  1176. }
  1177. }
  1178. }
  1179. public enum PUFMSG
  1180. {
  1181. HomeAll, // 0
  1182. SwitchOn,
  1183. SwitchOff,
  1184. Calibrate,
  1185. Error,
  1186. ResumeError,
  1187. Abort,
  1188. PickFromLoader,
  1189. PlaceToLoader,
  1190. GoToSavedPosition,
  1191. GotoRobotPositionForPlace,
  1192. GotoRobotPositionForPick,
  1193. ReturnIdle,
  1194. ReturnInit,
  1195. ReadyForRobotPlace,
  1196. ReadyForSwap,
  1197. Swap,
  1198. ReadyForRobotPick,
  1199. RobotPickComplete,
  1200. Retry,
  1201. ConfirmComplete,
  1202. FlipSideA
  1203. }
  1204. }