SRDEntity.cs 49 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301
  1. using Aitex.Core.Common;
  2. using Aitex.Core.RT.DataCenter;
  3. using Aitex.Core.RT.Device;
  4. using Aitex.Core.RT.Fsm;
  5. using Aitex.Core.RT.Log;
  6. using Aitex.Core.RT.OperationCenter;
  7. using Aitex.Core.RT.RecipeCenter;
  8. using Aitex.Core.Util;
  9. using Aitex.Core.Utilities;
  10. using MECF.Framework.Common.Equipment;
  11. using MECF.Framework.Common.RecipeCenter;
  12. using MECF.Framework.Common.SubstrateTrackings;
  13. using CyberX8_Core;
  14. using CyberX8_RT.Devices.AXIS;
  15. using CyberX8_RT.Devices.SRD;
  16. using CyberX8_RT.Modules.Transporter;
  17. using System;
  18. using MECF.Framework.Common.Persistent.SRD;
  19. using MECF.Framework.Common.ToolLayout;
  20. using CyberX8_RT.Modules.Dryer;
  21. using MECF.Framework.Common.Alarm;
  22. using MECF.Framework.Common.CommonData;
  23. using CyberX8_RT.Modules.Loader;
  24. namespace CyberX8_RT.Modules.SRD
  25. {
  26. public class SRDEntity : Entity, IEntity, IModuleEntity
  27. {
  28. #region 常量
  29. private const string AUTO = "Auto";
  30. private const string MANUAL = "Manual";
  31. private const string DISABLED = "Disabled";
  32. private const string ENGINEERING = "Engineering";
  33. private const string PRODUCTION = "Production";
  34. #endregion
  35. #region 内部变量
  36. /// <summary>
  37. /// 是否Homed
  38. /// </summary>
  39. private bool _isHomed;
  40. /// <summary>
  41. /// rotation电机
  42. /// </summary>
  43. private JetAxisBase _rotationAxis;
  44. /// <summary>
  45. /// arm电机
  46. /// </summary>
  47. private JetAxisBase _armAxis;
  48. /// <summary>
  49. /// IsPresenceTesting
  50. /// </summary>
  51. private bool _isPresenceTesting = false;
  52. /// <summary>
  53. /// IsAWCCycling
  54. /// </summary>
  55. private bool _isAWCCycling = false;
  56. /// <summary>
  57. /// 当前Recipe
  58. /// </summary>
  59. private SrdRecipe _currentRecipe = null;
  60. /// <summary>
  61. /// 持久化对象
  62. /// </summary>
  63. private SRDPersistentValue _persistentValue;
  64. /// <summary>
  65. /// run recipe start time
  66. /// </summary>
  67. private DateTime _runRecipeStartTime;
  68. /// <summary>
  69. /// run recipe complete time
  70. /// </summary>
  71. private DateTime _runRecipeCompleteTime;
  72. /// <summary>
  73. /// Wafer已Loader完
  74. /// </summary>
  75. private bool _isLoaded = false;
  76. #endregion
  77. #region Routine
  78. /// <summary>
  79. /// SRD Home
  80. /// </summary>
  81. private SRDHomeRoutine _homeRoutine;
  82. /// <summary>
  83. /// SRD初始化Home Routine
  84. /// </summary>
  85. private SRDInitializeHomeRoutine _initializeHomeRoutine;
  86. /// <summary>
  87. /// SRD SwicthOn
  88. /// </summary>
  89. private SRDSwitchOnRoutine _switchOnRoutine;
  90. /// <summary>
  91. /// SRD SwicthOff
  92. /// </summary>
  93. private SRDSwitchOffRoutine _switchOffRoutine;
  94. /// <summary>
  95. /// SRD Initialize
  96. /// </summary>
  97. private SRDInitializeRoutine _initializeRoutine;
  98. /// <summary>
  99. /// SRD Common Device
  100. /// </summary>
  101. private SrdCommonDevice _srdCommon;
  102. /// <summary>
  103. /// SRD GoToPosition
  104. /// </summary>
  105. private SRDPositionRoutine _positionRoutine;
  106. /// <summary>
  107. /// SRD StartRotation
  108. /// </summary>
  109. private SRDRotationRoutine _rotationRoutine;
  110. /// <summary>
  111. /// SRD PresenceTest
  112. /// </summary>
  113. private SRDPresenceTestRoutine _presenceTestRoutine;
  114. /// <summary>
  115. /// SRD ProcessRecipe
  116. /// </summary>
  117. private SRDProcessRecipeRoutine _processRecipeRoutine;
  118. /// <summary>
  119. /// SRD AWC Cycle
  120. /// </summary>
  121. private SRDAWCCycleRoutine _awcCycleRoutine;
  122. /// <summary>
  123. /// SRD Process Error
  124. /// </summary>
  125. private SRDProcessErrorRoutine _processErrorRoutine;
  126. /// <summary>
  127. /// SRD Loader Routine
  128. /// </summary>
  129. private SRDLoaderRoutine _loaderRoutine;
  130. /// <summary>
  131. /// SRD Unloader Routine
  132. /// </summary>
  133. private SRDUnloaderRoutine _unloaderRoutine;
  134. /// <summary>
  135. /// RecipeCycle
  136. /// </summary>
  137. private int _cycle = 0;
  138. /// <summary>
  139. /// recipe时长
  140. /// </summary>
  141. private int _recipeTime;
  142. #endregion
  143. #region 属性
  144. /// <summary>
  145. /// 模块名称
  146. /// </summary>
  147. public ModuleName Module { get; private set; }
  148. /// <summary>
  149. /// 初始化状态
  150. /// </summary>
  151. public bool IsInit
  152. {
  153. get { return fsm.State == (int)SRDState.Init; }
  154. }
  155. /// <summary>
  156. /// 空闲状态
  157. /// </summary>
  158. public bool IsIdle
  159. {
  160. get
  161. {
  162. return fsm.State == (int)SRDState.Idle;
  163. }
  164. }
  165. /// <summary>
  166. /// 当前状态机状态
  167. /// </summary>
  168. public int State { get { return fsm.State; } }
  169. /// <summary>
  170. /// 是否发生错误
  171. /// </summary>
  172. public bool IsError
  173. {
  174. get { return fsm.State == (int)SRDState.Error; }
  175. }
  176. /// <summary>
  177. /// 是否正在作业
  178. /// </summary>
  179. public bool IsBusy
  180. {
  181. get { return !IsInit && !IsError && !IsIdle; }
  182. }
  183. /// <summary>
  184. /// 是否已Home
  185. /// </summary>
  186. public bool IsHomed
  187. {
  188. get { return _isHomed; }
  189. }
  190. /// <summary>
  191. /// 是否正在用水
  192. /// </summary>
  193. public bool IsUsingWater
  194. {
  195. get { return _processRecipeRoutine.IsUsingWater; }
  196. }
  197. /// <summary>
  198. /// SRD门是否关闭
  199. /// </summary>
  200. public bool IsSrdDoorClosed
  201. {
  202. get { return !_srdCommon.CommonData.DoorOpened && _srdCommon.CommonData.DoorClosed; }
  203. }
  204. /// <summary>
  205. /// SRD真空是否开启
  206. /// </summary>
  207. public bool IsSrdChuckVacuum
  208. {
  209. get { return _srdCommon.CommonData.ChuckVacuum; }
  210. }
  211. /// <summary>
  212. /// 是否禁用
  213. /// </summary>
  214. public bool IsDisable { get { return _persistentValue == null || _persistentValue.OperatingMode == DISABLED; } }
  215. /// <summary>
  216. /// 自动模式
  217. /// </summary>
  218. public bool IsAuto { get { return _persistentValue != null && _persistentValue.OperatingMode == AUTO; } }
  219. /// <summary>
  220. /// 自动模式
  221. /// </summary>
  222. public bool IsManual { get { return _persistentValue != null && _persistentValue.OperatingMode == MANUAL; } }
  223. /// <summary>
  224. /// Arm是否SwitchOn
  225. /// </summary>
  226. public bool IsArmSwitchOn
  227. {
  228. get { return _armAxis.IsSwitchOn; }
  229. }
  230. /// <summary>
  231. /// Rotation是否SwitchOn
  232. /// </summary>
  233. public bool IsRotationSwitchOn
  234. {
  235. get { return _rotationAxis.IsSwitchOn; }
  236. }
  237. /// <summary>
  238. /// 已完成的RunRecipeCycle次数
  239. /// </summary>
  240. public int AchievedCycle { get { return _processRecipeRoutine.AchievedCycle; } }
  241. /// <summary>
  242. /// PresenceTest状态
  243. /// </summary>
  244. public bool IsPresenceTesting
  245. {
  246. get { return _isPresenceTesting; }
  247. }
  248. /// <summary>
  249. /// AWCCycle状态
  250. /// </summary>
  251. public bool IsAWCCycling
  252. {
  253. get { return _isAWCCycling; }
  254. }
  255. /// <summary>
  256. /// 当前状态机
  257. /// </summary>
  258. public string CurrentStateMachine
  259. {
  260. get { return GetCurrentStateMachine(); }
  261. }
  262. /// <summary>
  263. /// 是否为工程模式
  264. /// </summary>
  265. public bool IsEngineering { get { return _persistentValue != null && _persistentValue.RecipeOperatingMode == ENGINEERING; } }
  266. /// <summary>
  267. /// 是否为产品模式
  268. /// </summary>
  269. public bool IsProduction { get { return _persistentValue != null && _persistentValue.RecipeOperatingMode == PRODUCTION; } }
  270. /// <summary>
  271. /// Wafer已Loader完
  272. /// </summary>
  273. public bool IsLoaded
  274. {
  275. get { return _isLoaded; }
  276. }
  277. #endregion
  278. /// <summary>
  279. /// 构造函数
  280. /// </summary>
  281. /// <param name="module"></param>
  282. public SRDEntity(ModuleName module)
  283. {
  284. this.Module = module;
  285. _armAxis = DEVICE.GetDevice<JetAxisBase>($"{module}.Arm");
  286. _rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{module}.Rotation");
  287. WaferManager.Instance.SubscribeLocation(Module, 1);
  288. InitialFsm();
  289. }
  290. /// <summary>
  291. /// 总初始化
  292. /// </summary>
  293. /// <returns></returns>
  294. protected override bool Init()
  295. {
  296. _srdCommon = DEVICE.GetDevice<SrdCommonDevice>($"{Module}.Common");
  297. InitializeParameter();
  298. InitialDATA();
  299. InitialRoutine();
  300. InitialOperation();
  301. return true;
  302. }
  303. /// <summary>
  304. /// 初始化参数
  305. /// </summary>
  306. private void InitializeParameter()
  307. {
  308. _persistentValue = SRDPersistentManager.Instance.GetModulePersistentValue(Module.ToString());
  309. if (_persistentValue == null)
  310. {
  311. LOG.WriteLog(eEvent.ERR_SRD, Module.ToString(), "Persistent Value Object is not exist");
  312. }
  313. }
  314. /// <summary>
  315. /// 初始化数据
  316. /// </summary>
  317. private void InitialDATA()
  318. {
  319. DATA.Subscribe($"{Module}.FsmState", () => ((SRDState)fsm.State).ToString(), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  320. DATA.Subscribe($"{Module}.IsHomed", () => _isHomed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  321. DATA.Subscribe($"{Module}.IsError", () => IsError, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  322. DATA.Subscribe($"{Module}.SrdDoorClosed", () => IsSrdDoorClosed, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  323. DATA.Subscribe($"{Module}.AchievedCycle", () => AchievedCycle, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  324. DATA.Subscribe($"{Module}.IsPresenceTesting", () => IsPresenceTesting, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  325. DATA.Subscribe($"{Module}.CurrentStateMachine", () => CurrentStateMachine, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  326. DATA.Subscribe($"{Module}.IsAWCCycling", () => IsAWCCycling, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  327. DATA.Subscribe($"{Module}.CurrentRecipe", () => _currentRecipe != null ? _currentRecipe.Ppid : "", SubscriptionAttribute.FLAG.IgnoreSaveDB);
  328. DATA.Subscribe($"{Module}.TotalTime", () => _recipeTime, SubscriptionAttribute.FLAG.IgnoreSaveDB);
  329. DATA.Subscribe($"{Module}.TimeRemain", () => CalculateTimeRemain(), SubscriptionAttribute.FLAG.IgnoreSaveDB);
  330. DATA.Subscribe($"{Module}.OperatingMode", () => _persistentValue != null ? _persistentValue.OperatingMode : "None", SubscriptionAttribute.FLAG.IgnoreSaveDB);
  331. }
  332. /// <summary>
  333. /// 初始化状态机
  334. /// </summary>
  335. private void InitialFsm()
  336. {
  337. fsm = new StateMachine<SRDEntity>(Module.ToString(), (int)SRDState.Init, 20);
  338. fsm.EnableRepeatedMsg(true);
  339. AnyStateTransition(SRDMSG.Error, EnterError, SRDState.Error);
  340. Transition(SRDState.Error, SRDMSG.ResumeError, (param) => { return true; }, SRDState.Init);
  341. //Initialized
  342. AnyStateTransition(SRDMSG.Initialize, InitializeAll, SRDState.Initializing);
  343. Transition(SRDState.Initializing, FSM_MSG.TIMER, InitializeAllTimeout, SRDState.Initialized);
  344. //SwitchOn
  345. Transition(SRDState.Init, SRDMSG.SwitchOn, SwitchOnAll, SRDState.SwitchOning);
  346. Transition(SRDState.Idle, SRDMSG.SwitchOn, SwitchOnAll, SRDState.SwitchOning);
  347. Transition(SRDState.Error, SRDMSG.SwitchOn, SwitchOnAll, SRDState.SwitchOning);
  348. Transition(SRDState.Initialized, SRDMSG.SwitchOn, SwitchOnAll, SRDState.SwitchOning);
  349. Transition(SRDState.SwitchOning, FSM_MSG.TIMER, SwitchOnTimeout, SRDState.Init);
  350. //SwitchOff
  351. Transition(SRDState.Init, SRDMSG.SwitchOff, SwitchOffAll, SRDState.SwitchOffing);
  352. Transition(SRDState.Idle, SRDMSG.SwitchOff, SwitchOffAll, SRDState.SwitchOffing);
  353. Transition(SRDState.Error, SRDMSG.SwitchOff, SwitchOffAll, SRDState.SwitchOffing);
  354. Transition(SRDState.Initialized, SRDMSG.SwitchOff, SwitchOffAll, SRDState.SwitchOffing);
  355. Transition(SRDState.SwitchOffing, FSM_MSG.TIMER, SwitchOffTimeout, SRDState.Init);
  356. // Home
  357. Transition(SRDState.Init, SRDMSG.HomeAll, HomeAll, SRDState.Homing);
  358. Transition(SRDState.Initialized, SRDMSG.HomeAll, HomeAll, SRDState.Homing);
  359. Transition(SRDState.Error, SRDMSG.HomeAll, HomeAll, SRDState.Homing);
  360. Transition(SRDState.Idle, SRDMSG.HomeAll, HomeAll, SRDState.Homing);
  361. Transition(SRDState.Abort, SRDMSG.HomeAll, HomeAll, SRDState.Homing);
  362. Transition(SRDState.Homing, FSM_MSG.TIMER, HomingTimeout, SRDState.Idle);
  363. //Initialize Home
  364. Transition(SRDState.Init, SRDMSG.InitializeHome, InitializeHome, SRDState.InitializeHoming);
  365. Transition(SRDState.Error, SRDMSG.InitializeHome, InitializeHome, SRDState.InitializeHoming);
  366. Transition(SRDState.InitializeHoming, FSM_MSG.TIMER, InitializeHomeTimeout, SRDState.Idle);
  367. Transition(SRDState.Abort, SRDMSG.InitializeHome, InitializeHome, SRDState.InitializeHoming);
  368. Transition(SRDState.Idle, SRDMSG.InitializeHome, InitializeHome, SRDState.InitializeHoming);
  369. //Process Recipe
  370. Transition(SRDState.Idle, SRDMSG.ProcessRecipe, ProcessRecipe, SRDState.ProcessReciping);
  371. Transition(SRDState.ProcessReciping, FSM_MSG.TIMER, ProcessRecipeTimeout, SRDState.Idle);
  372. Transition(SRDState.ProcessReciping, SRDMSG.ProcessError, ProcessError, SRDState.ProcessError);
  373. Transition(SRDState.ProcessError, FSM_MSG.TIMER, ProcessErrorMonitor, SRDState.Error);
  374. //GoToSavedPosition
  375. Transition(SRDState.Idle, SRDMSG.GoToSavedPosition, GotoPosition, SRDState.Positioning);
  376. Transition(SRDState.Positioning, FSM_MSG.TIMER, GotoPositionTimeout, SRDState.Idle);
  377. //StartRotation
  378. Transition(SRDState.Idle, SRDMSG.StartRotation, StartRotation, SRDState.Rotating);
  379. Transition(SRDState.Rotating, FSM_MSG.TIMER, RotationTimeout, SRDState.Idle);
  380. //StopRotation
  381. Transition(SRDState.Rotating, SRDMSG.StopRotation, StopRotation, SRDState.Stopping);
  382. Transition(SRDState.Stopping, FSM_MSG.TIMER, StopRotationTimeout, SRDState.Idle);
  383. //Abort
  384. Transition(SRDState.ProcessReciping, SRDMSG.Abort, AbortProcessRecipe, SRDState.Abort);
  385. Transition(SRDState.PresenceTesting, SRDMSG.Abort, AbortPresenceTest, SRDState.Abort);
  386. Transition(SRDState.AWCCycling, SRDMSG.Abort, AbortAWCCycle, SRDState.Abort);
  387. //PresenceTestStart
  388. Transition(SRDState.Idle, SRDMSG.PresenceTestStart, PresenceTest, SRDState.PresenceTesting);
  389. Transition(SRDState.PresenceTesting, FSM_MSG.TIMER, PresenceTestTimeout, SRDState.Idle);
  390. //AWC Cycle
  391. Transition(SRDState.Idle, SRDMSG.AWCCycleStart, AWCCycle, SRDState.AWCCycling);
  392. Transition(SRDState.AWCCycling, FSM_MSG.TIMER, AWCCycleTimeout, SRDState.Idle);
  393. Transition(SRDState.AWCCycling, SRDMSG.HomeAll, HomeAll, SRDState.AWCHoming);
  394. Transition(SRDState.AWCHoming, FSM_MSG.TIMER, HomingTimeout, SRDState.AWCCycling);
  395. //Retry
  396. Transition(SRDState.Error, SRDMSG.Retry, NullFunc, SRDState.Retrying);
  397. Transition(SRDState.Retrying, FSM_MSG.TIMER, SRDRetry, SRDState.Retrying);
  398. Transition(SRDState.Retrying, SRDMSG.ProcessRecipe, RetryRunRecipe, SRDState.ProcessReciping);
  399. //ConfirmComplete
  400. Transition(SRDState.Init, SRDMSG.ConfirmComplete, ClearModuleAlarm, SRDState.Init);
  401. Transition(SRDState.Idle, SRDMSG.ConfirmComplete, ClearModuleAlarm, SRDState.Idle);
  402. Transition(SRDState.Error, SRDMSG.ConfirmComplete, NullFunc, SRDState.ConfirmCompleting);
  403. Transition(SRDState.ConfirmCompleting, FSM_MSG.TIMER, ConfirmComplete, SRDState.ConfirmCompleting);
  404. Transition(SRDState.ConfirmCompleting, SRDMSG.ProcessRecipe, ConfirmProcessRecipe, SRDState.Idle);
  405. //Enter Init
  406. Transition(SRDState.Idle, SRDMSG.Init, NullFunc, SRDState.Init);
  407. //Loader
  408. Transition(SRDState.Idle, SRDMSG.Loader, LoaderWafer, SRDState.Loading);
  409. Transition(SRDState.Loading, FSM_MSG.TIMER, LoaderWaferMonitor, SRDState.Idle);
  410. //UnLoader
  411. Transition(SRDState.Idle, SRDMSG.Unloader, UnloaderWafer, SRDState.Unloading);
  412. Transition(SRDState.Unloading, FSM_MSG.TIMER, UnloaderWaferMonitor, SRDState.Idle);
  413. EnumLoop<SRDState>.ForEach((item) => { fsm.MapState((int)item, item.ToString()); });
  414. EnumLoop<SRDMSG>.ForEach((item) => { fsm.MapMessage((int)item, item.ToString()); });
  415. }
  416. /// <summary>
  417. /// 初始化Routine
  418. /// </summary>
  419. private void InitialRoutine()
  420. {
  421. _initializeHomeRoutine = new SRDInitializeHomeRoutine(Module.ToString());
  422. _homeRoutine = new SRDHomeRoutine(Module.ToString());
  423. _switchOnRoutine = new SRDSwitchOnRoutine(Module.ToString());
  424. _switchOffRoutine = new SRDSwitchOffRoutine(Module.ToString());
  425. _initializeRoutine = new SRDInitializeRoutine(Module.ToString());
  426. _positionRoutine = new SRDPositionRoutine(Module);
  427. _rotationRoutine = new SRDRotationRoutine(Module, _rotationAxis);
  428. _presenceTestRoutine = new SRDPresenceTestRoutine(Module.ToString());
  429. _processRecipeRoutine = new SRDProcessRecipeRoutine(Module.ToString(), _rotationAxis, _armAxis, _srdCommon);
  430. _awcCycleRoutine = new SRDAWCCycleRoutine(Module);
  431. _processErrorRoutine=new SRDProcessErrorRoutine(Module.ToString());
  432. _loaderRoutine = new SRDLoaderRoutine(Module.ToString());
  433. _unloaderRoutine = new SRDUnloaderRoutine(Module.ToString());
  434. }
  435. /// <summary>
  436. /// 初始化操作
  437. /// </summary>
  438. private void InitialOperation()
  439. {
  440. OP.Subscribe($"{Module}.HomeAll", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.HomeAll); });
  441. OP.Subscribe($"{Module}.InitializeHome", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.InitializeHome); });
  442. OP.Subscribe($"{Module}.SwitchOnAll", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.SwitchOn); });
  443. OP.Subscribe($"{Module}.SwitchOffAll", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.SwitchOff); });
  444. OP.Subscribe($"{Module}.CycleManualProcessRecipe", (cmd, args) =>
  445. {
  446. SrdRecipe recipe = RecipeFileManager.Instance.LoadGenericityRecipe<SrdRecipe>(args[0].ToString());
  447. if (recipe == null)
  448. {
  449. LOG.WriteLog(eEvent.ERR_SRD, Module.ToString(), $"{args[0]} recipe is null");
  450. return false;
  451. }
  452. object[] objects = new object[args.Length];
  453. objects[0] = recipe;
  454. for (int i = 1; i < args.Length; i++)
  455. {
  456. objects[i] = args[i];
  457. }
  458. return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.ProcessRecipe, objects);
  459. });
  460. //OP.Subscribe($"{Module}.Arm.GotoSavedPosition", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.GoToSavedPosition, "Arm", args); });
  461. //OP.Subscribe($"{Module}.Rotation.GotoSavedPosition", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.GoToSavedPosition, "Rotation", args); });
  462. OP.Subscribe($"{Module}.Abort", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.Abort); });
  463. OP.Subscribe($"{Module}.StartRotation", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.StartRotation, "Rotation", args); });
  464. OP.Subscribe($"{Module}.StopRotation", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.StopRotation); });
  465. OP.Subscribe($"{Module}.PresenceTestStart", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.PresenceTestStart, args); });
  466. OP.Subscribe($"{Module}.AWCCycle", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.AWCCycleStart, args); });
  467. OP.Subscribe($"{Module}.Loader", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.Loader); });
  468. OP.Subscribe($"{Module}.Unloader", (cmd, args) => { return CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.Unloader); });
  469. }
  470. /// <summary>
  471. /// Enter Init
  472. /// </summary>
  473. public void EnterInit()
  474. {
  475. if ((SRDState)fsm.State != SRDState.Idle) return;
  476. else
  477. {
  478. CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.Init);
  479. }
  480. }
  481. /// <summary>
  482. /// 进入Error状态
  483. /// </summary>
  484. /// <param name="param"></param>
  485. /// <returns></returns>
  486. private bool EnterError(object[] param)
  487. {
  488. _isHomed = false;
  489. return true;
  490. }
  491. #region Initialized
  492. /// <summary>
  493. /// Initialize
  494. /// </summary>
  495. /// <param name="param"></param>
  496. /// <returns></returns>
  497. private bool InitializeAll(object[] param)
  498. {
  499. if (fsm.State == (int)MetalState.Initializing)
  500. {
  501. LOG.WriteLog(eEvent.WARN_SRD, Module.ToString(), "state is Initializing,cannot do initialize");
  502. return false;
  503. }
  504. return _initializeRoutine.Start() == RState.Running;
  505. }
  506. /// <summary>
  507. /// Initialize 监控
  508. /// </summary>
  509. /// <param name="param"></param>
  510. /// <returns></returns>
  511. private bool InitializeAllTimeout(object[] param)
  512. {
  513. RState ret = _initializeRoutine.Monitor();
  514. if (ret == RState.Failed || ret == RState.Timeout)
  515. {
  516. PostMsg(SRDMSG.Error);
  517. return false;
  518. }
  519. bool result = ret == RState.End;
  520. if (result)
  521. {
  522. _isHomed = false;
  523. }
  524. return result;
  525. }
  526. #endregion
  527. #region Switch On
  528. /// <summary>
  529. /// SwitchAll
  530. /// </summary>
  531. /// <param name="param"></param>
  532. /// <returns></returns>
  533. private bool SwitchOnAll(object[] param)
  534. {
  535. return _switchOnRoutine.Start() == RState.Running;
  536. }
  537. private bool SwitchOnTimeout(object[] param)
  538. {
  539. RState ret = _switchOnRoutine.Monitor();
  540. if (ret == RState.Failed || ret == RState.Timeout)
  541. {
  542. PostMsg(SRDMSG.Error);
  543. return false;
  544. }
  545. bool result = ret == RState.End;
  546. if (result)
  547. {
  548. _isHomed = false;
  549. }
  550. return result;
  551. }
  552. #endregion
  553. #region Switch Off
  554. /// <summary>
  555. /// SwitchAll
  556. /// </summary>
  557. /// <param name="param"></param>
  558. /// <returns></returns>
  559. private bool SwitchOffAll(object[] param)
  560. {
  561. return _switchOffRoutine.Start() == RState.Running;
  562. }
  563. private bool SwitchOffTimeout(object[] param)
  564. {
  565. RState ret = _switchOffRoutine.Monitor();
  566. if (ret == RState.Failed || ret == RState.Timeout)
  567. {
  568. PostMsg(SRDMSG.Error);
  569. return false;
  570. }
  571. bool result = ret == RState.End;
  572. if (result)
  573. {
  574. _isHomed = false;
  575. }
  576. return result;
  577. }
  578. #endregion
  579. #region Home
  580. /// <summary>
  581. /// HomeAll
  582. /// </summary>
  583. /// <param name="param"></param>
  584. /// <returns></returns>
  585. private bool HomeAll(object[] param)
  586. {
  587. _isHomed = false;
  588. return _homeRoutine.Start() == RState.Running;
  589. }
  590. /// <summary>
  591. /// Home超时
  592. /// </summary>
  593. /// <param name="param"></param>
  594. /// <returns></returns>
  595. private bool HomingTimeout(object[] param)
  596. {
  597. RState ret = _homeRoutine.Monitor();
  598. if (ret == RState.Failed || ret == RState.Timeout)
  599. {
  600. PostMsg(SRDMSG.Error);
  601. return false;
  602. }
  603. bool result = ret == RState.End;
  604. if (result)
  605. {
  606. _isHomed = true;
  607. }
  608. return result;
  609. }
  610. #endregion
  611. #region Process Recipe
  612. /// <summary>
  613. /// ProcessRecipe
  614. /// </summary>
  615. /// <param name="param"></param>
  616. /// <returns></returns>
  617. private bool ProcessRecipe(object[] param)
  618. {
  619. SrdRecipe recipe= param[0] as SrdRecipe;
  620. if(param.Length >= 2) _cycle = (int)param[1];
  621. bool result = _processRecipeRoutine.Start(param) == RState.Running;
  622. if (result)
  623. {
  624. if (CellItemRecipeTimeManager.Instance.ContainRecipe(recipe.Ppid))
  625. {
  626. _recipeTime = _cycle * CellItemRecipeTimeManager.Instance.GetRecipeTotalTime(recipe.Ppid);
  627. }
  628. else
  629. {
  630. _recipeTime = 0;
  631. }
  632. _currentRecipe = recipe;
  633. _runRecipeStartTime = DateTime.Now;
  634. FaModuleNotifier.Instance.NotifySRDRecipeStart(Module, recipe.Ppid);
  635. }
  636. return result;
  637. }
  638. /// <summary>
  639. /// ProcessRecipe超时
  640. /// </summary>
  641. /// <param name="param"></param>
  642. /// <returns></returns>
  643. private bool ProcessRecipeTimeout(object[] param)
  644. {
  645. RState ret = _processRecipeRoutine.Monitor();
  646. if (ret == RState.Failed || ret == RState.Timeout)
  647. {
  648. PostMsg(SRDMSG.ProcessError);
  649. //记录LotTrack
  650. _runRecipeCompleteTime = DateTime.Now;
  651. _processRecipeRoutine.SRDLotTrackHeaderDatas.ProcessTime = (_runRecipeCompleteTime - _runRecipeStartTime).TotalSeconds.ToString("F2");
  652. SRDLotTrackUtil.ExportSRDLotTrack(Module.ToString(), _processRecipeRoutine.SRDLotTrackDatas,
  653. _processRecipeRoutine.SRDLotTrackHeaderDatas, IsAuto);
  654. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  655. {
  656. AlarmList alarmList = new AlarmList(Module.ToString(), ((SRDState)fsm.State).ToString(), (int)SRDMSG.ProcessRecipe,
  657. _processRecipeRoutine.ErrorMsg, _processRecipeRoutine.ErrorStep, (int)AlarmType.Error);
  658. AlarmListManager.Instance.AddAlarm(alarmList);
  659. }
  660. if (_currentRecipe != null)
  661. {
  662. FaModuleNotifier.Instance.NotifySRDRecipeFailed(Module, _currentRecipe.Ppid);
  663. }
  664. return false;
  665. }
  666. bool result = ret == RState.End;
  667. if (result)
  668. {
  669. double elapsedMilliseconds = _processRecipeRoutine.ElapsedMilliseconds;
  670. int recipeTime = (int)Math.Floor(elapsedMilliseconds / _cycle / 1000);
  671. CellItemRecipeTimeManager.Instance.UpdateRecipeTime(_currentRecipe.Ppid, recipeTime);
  672. //记录LotTrack
  673. _runRecipeCompleteTime = DateTime.Now;
  674. _processRecipeRoutine.SRDLotTrackHeaderDatas.ProcessTime = (_runRecipeCompleteTime - _runRecipeStartTime).TotalSeconds.ToString("F2");
  675. SRDLotTrackUtil.ExportSRDLotTrack(Module.ToString(), _processRecipeRoutine.SRDLotTrackDatas,
  676. _processRecipeRoutine.SRDLotTrackHeaderDatas, IsAuto);
  677. if (_currentRecipe != null)
  678. {
  679. FaModuleNotifier.Instance.NotifySRDRecipeEnd(Module, _currentRecipe.Ppid);
  680. }
  681. _currentRecipe = null;
  682. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), SRDState.ProcessReciping.ToString());
  683. }
  684. return result;
  685. }
  686. /// <summary>
  687. /// Abort Recipe
  688. /// </summary>
  689. /// <param name="param"></param>
  690. /// <returns></returns>
  691. private bool AbortProcessRecipe(object[] param)
  692. {
  693. _processRecipeRoutine.Abort();
  694. //记录LotTrack
  695. _runRecipeCompleteTime = DateTime.Now;
  696. _processRecipeRoutine.SRDLotTrackHeaderDatas.ProcessTime = (_runRecipeCompleteTime - _runRecipeStartTime).TotalSeconds.ToString("F2");
  697. SRDLotTrackUtil.ExportSRDLotTrack(Module.ToString(), _processRecipeRoutine.SRDLotTrackDatas,
  698. _processRecipeRoutine.SRDLotTrackHeaderDatas, IsAuto);
  699. return true;
  700. }
  701. /// <summary>
  702. /// 计算剩余时间
  703. /// </summary>
  704. /// <returns></returns>
  705. private double CalculateTimeRemain()
  706. {
  707. if (IsBusy)
  708. {
  709. return _recipeTime != 0 ? (_recipeTime - Math.Floor((double)_processRecipeRoutine.ElapsedMilliseconds / 1000)) : 0;
  710. }
  711. else
  712. {
  713. return 0;
  714. }
  715. }
  716. /// <summary>
  717. /// ProcessError
  718. /// </summary>
  719. /// <param name="param"></param>
  720. /// <returns></returns>
  721. private bool ProcessError(object[] param)
  722. {
  723. return _processErrorRoutine.Start(param)==RState.Running;
  724. }
  725. /// <summary>
  726. /// Process Error监控
  727. /// </summary>
  728. /// <param name="param"></param>
  729. /// <returns></returns>
  730. private bool ProcessErrorMonitor(object[] param)
  731. {
  732. RState state = _processErrorRoutine.Monitor();
  733. if (state == RState.End||state==RState.Failed||state==RState.Timeout)
  734. {
  735. return true;
  736. }
  737. return false;
  738. }
  739. /// <summary>
  740. /// Retry RunRecipe
  741. /// </summary>
  742. /// <param name="param"></param>
  743. /// <returns></returns>
  744. private bool RetryRunRecipe(object[] param)
  745. {
  746. int stepIndex = (int)param[0];
  747. bool result = _processRecipeRoutine.Retry(stepIndex) == RState.Running;
  748. if (result)
  749. {
  750. if (_currentRecipe != null)
  751. {
  752. if (CellItemRecipeTimeManager.Instance.ContainRecipe(_currentRecipe.Ppid))
  753. {
  754. _recipeTime = _cycle * CellItemRecipeTimeManager.Instance.GetRecipeTotalTime(_currentRecipe.Ppid);
  755. }
  756. else
  757. {
  758. _recipeTime = 0;
  759. }
  760. _runRecipeStartTime = DateTime.Now;
  761. }
  762. }
  763. return result;
  764. }
  765. /// <summary>
  766. /// 确认ProcessRecipe是否完成
  767. /// </summary>
  768. /// <param name="param"></param>
  769. /// <returns></returns>
  770. private bool ConfirmProcessRecipe(object[] param)
  771. {
  772. int stepIdex = (int)param[0];
  773. bool result = _processRecipeRoutine.CheckCompleteCondition(stepIdex);
  774. if (!result)
  775. {
  776. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  777. {
  778. AlarmList alarmList = new AlarmList(Module.ToString(), ((SRDState)fsm.State).ToString(), (int)SRDMSG.ProcessRecipe,
  779. _processRecipeRoutine.ErrorMsg, _processRecipeRoutine.ErrorStep, (int)AlarmType.Error);
  780. AlarmListManager.Instance.AddAlarm(alarmList);
  781. }
  782. PostMsg(SRDMSG.Error);
  783. }
  784. else
  785. {
  786. if (Singleton<RouteManager>.Instance.IsAutoRunning)
  787. {
  788. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), SRDState.ProcessReciping.ToString());
  789. }
  790. }
  791. return result;
  792. }
  793. #endregion
  794. #region AWC Cycle
  795. /// <summary>
  796. /// AWC Cycle
  797. /// </summary>
  798. /// <returns></returns>
  799. private bool AWCCycle(object[] param)
  800. {
  801. return _awcCycleRoutine.Start(param) == RState.Running;
  802. }
  803. /// <summary>
  804. /// AWC Cycle超时
  805. /// </summary>
  806. /// <param name="param"></param>
  807. /// <returns></returns>
  808. private bool AWCCycleTimeout(object[] param)
  809. {
  810. RState ret = _awcCycleRoutine.Monitor();
  811. if (ret == RState.Failed || ret == RState.Timeout)
  812. {
  813. _isAWCCycling = false;
  814. PostMsg(SRDMSG.Error);
  815. return false;
  816. }
  817. //设置IsPresenceTesting
  818. if (ret == RState.Running)
  819. {
  820. _isAWCCycling = true;
  821. }
  822. else
  823. {
  824. _isAWCCycling = false;
  825. }
  826. return ret == RState.End;
  827. }
  828. /// <summary>
  829. /// Abort AWC Cycle
  830. /// </summary>
  831. /// <param name="param"></param>
  832. /// <returns></returns>
  833. private bool AbortAWCCycle(object[] param)
  834. {
  835. _awcCycleRoutine.Abort();
  836. return true;
  837. }
  838. #endregion
  839. #region InitializeHome
  840. /// <summary>
  841. /// InitializeHome
  842. /// </summary>
  843. /// <param name="param"></param>
  844. /// <returns></returns>
  845. private bool InitializeHome(object[] param)
  846. {
  847. _isHomed = false;
  848. //return _initializeHomeRoutine.Start() == RState.Running;
  849. return true;
  850. }
  851. /// <summary>
  852. /// InitializeHome超时
  853. /// </summary>
  854. /// <param name="param"></param>
  855. /// <returns></returns>
  856. private bool InitializeHomeTimeout(object[] param)
  857. {
  858. //RState ret = _initializeHomeRoutine.Monitor();
  859. //if (ret == RState.Failed || ret == RState.Timeout)
  860. //{
  861. // PostMsg(SRDMSG.Error);
  862. // return false;
  863. //}
  864. //bool result = ret == RState.End;
  865. //if (result)
  866. //{
  867. // _isHomed = true;
  868. //}
  869. //return result;
  870. return true;
  871. }
  872. #endregion
  873. #region RunRecipeRetry
  874. /// <summary>
  875. /// Retry
  876. /// </summary>
  877. /// <param name="param"></param>
  878. /// <returns></returns>
  879. private bool SRDRetry(object[] param)
  880. {
  881. AlarmList alarmList = AlarmListManager.Instance.GetAlarmListByModule(Module.ToString());
  882. if (alarmList != null)
  883. {
  884. CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), alarmList.ModuleCmd,
  885. alarmList.ModuleStep);
  886. }
  887. return false;
  888. }
  889. #endregion
  890. #region ConfirmComplete
  891. /// <summary>
  892. /// 确认是否完成
  893. /// </summary>
  894. /// <param name="param"></param>
  895. /// <returns></returns>
  896. private bool ConfirmComplete(object[] param)
  897. {
  898. AlarmList alarmList = AlarmListManager.Instance.GetAlarmListByModule(Module.ToString());
  899. if (alarmList != null)
  900. {
  901. if (alarmList.ModuleState == SRDState.ProcessReciping.ToString())
  902. {
  903. CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.ProcessRecipe, alarmList.ModuleStep);
  904. }
  905. else
  906. {
  907. PostMsg(SRDState.Error);
  908. }
  909. }
  910. return false;
  911. }
  912. /// <summary>
  913. /// 清除报警
  914. /// </summary>
  915. /// <param name="param"></param>
  916. /// <returns></returns>
  917. private bool ClearModuleAlarm(object[] param)
  918. {
  919. AlarmList alarmList = AlarmListManager.Instance.GetAlarmListByModule(Module.ToString());
  920. if (alarmList != null)
  921. {
  922. AlarmListManager.Instance.CheckModuleAlamAndRemove(Module.ToString(), "");
  923. }
  924. return true;
  925. }
  926. #endregion
  927. #region Loader
  928. /// <summary>
  929. /// SRD Loader Wafer
  930. /// </summary>
  931. /// <param name="param"></param>
  932. /// <returns></returns>
  933. private bool LoaderWafer(object[] param)
  934. {
  935. return _loaderRoutine.Start(param) == RState.Running;
  936. }
  937. /// <summary>
  938. /// SRD Loader Wafer Monitor
  939. /// </summary>
  940. /// <param name="param"></param>
  941. /// <returns></returns>
  942. private bool LoaderWaferMonitor(object[] param)
  943. {
  944. RState state = _loaderRoutine.Monitor();
  945. if (state == RState.End || state == RState.Failed || state == RState.Timeout)
  946. {
  947. _isLoaded = state == RState.End;
  948. return true;
  949. }
  950. return false;
  951. }
  952. #endregion
  953. #region Unloader
  954. /// <summary>
  955. /// SRD Unloader Wafer
  956. /// </summary>
  957. /// <param name="param"></param>
  958. /// <returns></returns>
  959. private bool UnloaderWafer(object[] param)
  960. {
  961. return _unloaderRoutine.Start(param) == RState.Running;
  962. }
  963. /// <summary>
  964. /// SRD Unloader Wafer Monitor
  965. /// </summary>
  966. /// <param name="param"></param>
  967. /// <returns></returns>
  968. private bool UnloaderWaferMonitor(object[] param)
  969. {
  970. RState state = _unloaderRoutine.Monitor();
  971. if (state == RState.End || state == RState.Failed || state == RState.Timeout)
  972. {
  973. _isLoaded = !(state == RState.End);
  974. return true;
  975. }
  976. return false;
  977. }
  978. #endregion
  979. public bool Check(int msg, out string reason, params object[] args)
  980. {
  981. reason = "";
  982. return false;
  983. }
  984. public bool CheckAcked(int msg)
  985. {
  986. return false;
  987. }
  988. public int Invoke(string function, params object[] args)
  989. {
  990. switch (function)
  991. {
  992. case "HomeAll":
  993. if (IsIdle)
  994. {
  995. return (int)FSM_MSG.NONE;
  996. }
  997. if (CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.InitializeHome))
  998. {
  999. return (int)SRDMSG.Initialize;
  1000. }
  1001. else
  1002. {
  1003. return (int)FSM_MSG.NONE;
  1004. }
  1005. case "Retry":
  1006. if (CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.Retry, args))
  1007. {
  1008. return (int)SRDMSG.Retry;
  1009. }
  1010. else
  1011. {
  1012. return (int)FSM_MSG.NONE;
  1013. }
  1014. case "ConfirmComplete":
  1015. if (CheckToPostMessage<SRDState, SRDMSG>(eEvent.ERR_SRD, Module.ToString(), (int)SRDMSG.ConfirmComplete, args))
  1016. {
  1017. return (int)SRDMSG.ConfirmComplete;
  1018. }
  1019. else
  1020. {
  1021. return (int)FSM_MSG.NONE;
  1022. }
  1023. }
  1024. return (int)FSM_MSG.NONE;
  1025. }
  1026. #region GoToPosition
  1027. /// <summary>
  1028. /// Go to Position
  1029. /// </summary>
  1030. /// <param name="param"></param>
  1031. /// <returns></returns>
  1032. private bool GotoPosition(object[] param)
  1033. {
  1034. string axis = param[0].ToString();
  1035. object[] objs = (object[])param[1];
  1036. string position = objs[1].ToString();
  1037. var result = CheckGotoPositionPreCondition(axis, position);
  1038. if (result.result)
  1039. {
  1040. return _positionRoutine.Start(result.axis, position) == RState.Running;
  1041. }
  1042. else
  1043. {
  1044. return false;
  1045. }
  1046. }
  1047. /// <summary>
  1048. /// 检验GotoPosition前置条件
  1049. /// </summary>
  1050. /// <param name="axis"></param>
  1051. /// <param name="position"></param>
  1052. /// <returns></returns>
  1053. private (bool result, JetAxisBase axis) CheckGotoPositionPreCondition(string axis, string position)
  1054. {
  1055. switch (axis)
  1056. {
  1057. case "Rotation":
  1058. return (_rotationAxis.CheckGotoPosition(position), _rotationAxis);
  1059. case "Arm":
  1060. return (_armAxis.CheckGotoPosition(position), _armAxis);
  1061. default:
  1062. return (false, null);
  1063. }
  1064. }
  1065. /// <summary>
  1066. /// GotoPosition超时
  1067. /// </summary>
  1068. /// <param name="param"></param>
  1069. /// <returns></returns>
  1070. private bool GotoPositionTimeout(object[] param)
  1071. {
  1072. RState ret = _positionRoutine.Monitor();
  1073. if (ret == RState.Failed || ret == RState.Timeout)
  1074. {
  1075. return true;
  1076. }
  1077. return ret == RState.End;
  1078. }
  1079. #endregion
  1080. #region 旋转
  1081. /// <summary>
  1082. /// 开始旋转
  1083. /// </summary>
  1084. /// <param name="param"></param>
  1085. /// <returns></returns>
  1086. private bool StartRotation(object[] param)
  1087. {
  1088. string axis = param[0].ToString();
  1089. object[] objs = (object[])param[1];
  1090. double time = double.Parse(objs[0].ToString());
  1091. double speed = double.Parse(objs[1].ToString());
  1092. return _rotationRoutine.Start(_rotationAxis, time, speed) == RState.Running;
  1093. }
  1094. /// <summary>
  1095. /// RotationTimeout
  1096. /// </summary>
  1097. /// <param name="param"></param>
  1098. /// <returns></returns>
  1099. private bool RotationTimeout(object[] param)
  1100. {
  1101. RState ret = _rotationRoutine.Monitor();
  1102. if (ret == RState.Failed || ret == RState.Timeout)
  1103. {
  1104. //PostMsg(SRDMSG.Error);
  1105. return true;
  1106. }
  1107. return ret == RState.End;
  1108. }
  1109. /// <summary>
  1110. /// 停止旋转
  1111. /// </summary>
  1112. /// <param name="param"></param>
  1113. /// <returns></returns>
  1114. private bool StopRotation(object[] param)
  1115. {
  1116. _rotationAxis.StopPositionOperation();
  1117. return _rotationAxis.Status == RState.Running;
  1118. }
  1119. /// <summary>
  1120. /// 停止旋转监控
  1121. /// </summary>
  1122. /// <param name="param"></param>
  1123. /// <returns></returns>
  1124. private bool StopRotationTimeout(object[] param)
  1125. {
  1126. RState ret = _rotationAxis.Status;
  1127. if (ret == RState.Failed || ret == RState.Timeout)
  1128. {
  1129. //PostMsg(SRDMSG.Error);
  1130. return true;
  1131. }
  1132. return ret == RState.End;
  1133. }
  1134. #endregion
  1135. #region PresenceTest
  1136. private bool PresenceTest(object[] param)
  1137. {
  1138. _recipeTime = 0;
  1139. return _presenceTestRoutine.Start(param) == RState.Running;
  1140. }
  1141. private bool PresenceTestTimeout(object[] param)
  1142. {
  1143. RState ret = _presenceTestRoutine.Monitor();
  1144. if (ret == RState.Failed || ret == RState.Timeout)
  1145. {
  1146. _isPresenceTesting = false;
  1147. PostMsg(SRDMSG.Error);
  1148. return false;
  1149. }
  1150. //设置IsPresenceTesting
  1151. if (ret == RState.Running)
  1152. {
  1153. _isPresenceTesting = true;
  1154. }
  1155. else
  1156. {
  1157. _isPresenceTesting = false;
  1158. }
  1159. return ret == RState.End;
  1160. }
  1161. /// <summary>
  1162. /// Abort PresenceTest
  1163. /// </summary>
  1164. /// <param name="param"></param>
  1165. /// <returns></returns>
  1166. private bool AbortPresenceTest(object[] param)
  1167. {
  1168. _presenceTestRoutine.Abort();
  1169. return true;
  1170. }
  1171. #endregion
  1172. /// <summary>
  1173. /// 获取当前子状态机
  1174. /// </summary>
  1175. private string GetCurrentStateMachine()
  1176. {
  1177. string state = "";
  1178. switch ((SRDState)fsm.State)
  1179. {
  1180. case SRDState.Init:
  1181. state = "Init";
  1182. break;
  1183. case SRDState.Initializing:
  1184. state = _initializeRoutine.CurrentStateMachine;
  1185. break;
  1186. case SRDState.Homing:
  1187. state = _homeRoutine.CurrentStateMachine;
  1188. break;
  1189. case SRDState.SwitchOning:
  1190. state = _switchOnRoutine.CurrentStateMachine;
  1191. break;
  1192. case SRDState.SwitchOffing:
  1193. state = _switchOffRoutine.CurrentStateMachine;
  1194. break;
  1195. case SRDState.Positioning:
  1196. state = _positionRoutine.CurrentStateMachine;
  1197. break;
  1198. case SRDState.Rotating:
  1199. state = _rotationRoutine.CurrentStateMachine;
  1200. break;
  1201. case SRDState.PresenceTesting:
  1202. state = _presenceTestRoutine.CurrentStateMachine;
  1203. break;
  1204. case SRDState.ProcessReciping:
  1205. state = _processRecipeRoutine.CurrentStateMachine;
  1206. break;
  1207. case SRDState.AWCCycling:
  1208. state = _awcCycleRoutine.CurrentStateMachine;
  1209. break;
  1210. default:
  1211. state = Enum.GetName(typeof(SRDState),fsm.State);
  1212. break;
  1213. }
  1214. return state;
  1215. }
  1216. /// <summary>
  1217. /// 设置IsAWCCycling
  1218. /// </summary>
  1219. /// <param name="flag"></param>
  1220. public void SetIsAWCCycling(bool flag)
  1221. {
  1222. _isAWCCycling = flag;
  1223. }
  1224. }
  1225. public enum SRDMSG
  1226. {
  1227. Initialize,
  1228. InitializeHome,
  1229. ProcessRecipe,
  1230. ResumeError,
  1231. SwitchOn,
  1232. SwitchOff,
  1233. HomeAll,
  1234. Error,
  1235. GoToSavedPosition,
  1236. Abort,
  1237. StartRotation,
  1238. StopRotation,
  1239. PresenceTestStart,
  1240. PresenceTestStop,
  1241. AWCCycleStart,
  1242. Init,
  1243. ProcessError,
  1244. Retry,
  1245. ConfirmComplete,
  1246. Loader,
  1247. Unloader
  1248. }
  1249. }