SunWayRobot.cs 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Collections;
  7. using CyberX8_Core;
  8. using CyberX8_RT.Modules;
  9. using MECF.Framework.Common.CommonData;
  10. using MECF.Framework.Common.Equipment;
  11. using MECF.Framework.Common.SubstrateTrackings;
  12. using Aitex.Sorter.Common;
  13. using Aitex.Core.Common;
  14. using Aitex.Core.RT.SCCore;
  15. using Aitex.Core.RT.Log;
  16. using Aitex.Core.Util;
  17. using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot;
  18. using CyberX8_RT.Devices.YASKAWA;
  19. using System.Collections.Concurrent;
  20. using System.Diagnostics;
  21. using System.Data.SqlTypes;
  22. using System.Windows.Media.Media3D;
  23. using System.ComponentModel;
  24. using MECF.Framework.Common.Beckhoff.Station;
  25. using System.Runtime.Remoting.Contexts;
  26. using System.Windows.Markup;
  27. using CyberX8_RT.Modules.LPs;
  28. using MECF.Framework.Common.ToolLayout;
  29. namespace CyberX8_RT.Devices.EFEM
  30. {
  31. public class SunWayRobot : EfemBase
  32. {
  33. #region 常量
  34. private const string NONE = "None";
  35. #endregion
  36. private RState _status;
  37. private bool _IsHomed;
  38. private bool _bIsUnloadClamp;
  39. private RobotMoveInfo _robotMoveInfo = new RobotMoveInfo();
  40. private readonly SignalTower _signalT = new SignalTower();
  41. private readonly AsyncSocket _socket;
  42. private EfemMessage _currentMessage;
  43. private string _error;
  44. private bool _LiftIsUp = false;
  45. private bool _LiftIsDown = false;
  46. private R_TRIG _busyTrig = new R_TRIG();
  47. private Stopwatch _busyWatch = new Stopwatch();
  48. private Dictionary<string, int> _moduleStationNumberDictionary = new Dictionary<string, int>();
  49. private Dictionary<Hand, string> _armString = new Dictionary<Hand, string>
  50. {
  51. [Hand.Blade1] = "A",
  52. [Hand.Blade2] = "B"
  53. };
  54. public override RState Status
  55. {
  56. get
  57. {
  58. _busyTrig.CLK = _status == RState.Running;
  59. if (_busyTrig.Q)
  60. {
  61. _busyWatch.Restart();
  62. }
  63. else if (_busyTrig.M)
  64. {
  65. int timeOut = 5000;
  66. if (
  67. _currentMessage.Operation == EfemOperation.Home ||
  68. _currentMessage.Operation == EfemOperation.Map ||
  69. _currentMessage.Operation == EfemOperation.Pick ||
  70. _currentMessage.Operation == EfemOperation.Place)
  71. {
  72. timeOut = 30000;
  73. }
  74. if (_busyWatch.ElapsedMilliseconds > timeOut)
  75. {
  76. _busyWatch.Stop();
  77. _status = RState.Timeout;
  78. }
  79. }
  80. return _status;
  81. }
  82. }
  83. public override bool IsHomed { get { return _IsHomed; } }
  84. public override RobotMoveInfo TMRobotMoveInfo { get { return _robotMoveInfo; } }
  85. public override bool LiftIsUp { get { return _LiftIsUp; } }
  86. public override bool LiftIsDown { get { return _LiftIsDown; } }
  87. private BlockingCollection<RobotAnimationData> blockingCollection = new BlockingCollection<RobotAnimationData>();
  88. private string _address = "";
  89. public SunWayRobot()
  90. {
  91. _socket = new AsyncSocket("","",DataType.Ascii,true);
  92. try
  93. {
  94. _address = SC.GetStringValue($"EFEM.IPAddress");
  95. _socket.Connect(_address);
  96. _socket.OnConnect += Socket_OnConnect;
  97. _socket.OnDataChanged += OnReceiveMessage;
  98. _socket.OnErrorHappened += OnErrorHappen;
  99. }
  100. catch(Exception ex)
  101. {
  102. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, "EFEM", ex.Message);
  103. }
  104. _status = RState.Init;
  105. _IsHomed = false;
  106. _busyTrig.RST = true;
  107. InitializeModuleStation(ModuleName.LP1);
  108. InitializeModuleStation(ModuleName.LP2);
  109. InitializeModuleStation(ModuleName.LP3);
  110. InitializeModuleStation(ModuleName.Dummy1);
  111. InitializeModuleStation(ModuleName.Dummy2);
  112. InitializeModuleStation(ModuleName.Aligner1);
  113. InitializeModuleStation(ModuleName.SRD1);
  114. InitializeModuleStation(ModuleName.SRD2);
  115. InitializeModuleStation(ModuleName.PUF1);
  116. CarrierManager.Instance.SubscribeLocation(ModuleName.LP1.ToString(), 1);
  117. CarrierManager.Instance.SubscribeLocation(ModuleName.LP2.ToString(), 1);
  118. CarrierManager.Instance.SubscribeLocation(ModuleName.LP3.ToString(), 1);
  119. WaferManager.Instance.SubscribeLocation(ModuleName.EfemRobot, 2);
  120. WaferManager.Instance.SubscribeLocation(ModuleName.Aligner1, 1);
  121. WaferManager.Instance.SubscribeLocation(ModuleName.LP1, SC.GetValue<int>("EFEM.LoadPort.SlotNumber"));
  122. WaferManager.Instance.SubscribeLocation(ModuleName.LP2, SC.GetValue<int>("EFEM.LoadPort.SlotNumber"));
  123. WaferManager.Instance.SubscribeLocation(ModuleName.LP3, SC.GetValue<int>("EFEM.LoadPort.SlotNumber"));
  124. Task.Run(() =>
  125. {
  126. foreach (var data in blockingCollection.GetConsumingEnumerable())
  127. {
  128. _robotMoveInfo.Action = data.Action;
  129. _robotMoveInfo.ArmTarget = data.Hand == Hand.Blade1 ? RobotArm.ArmA : (data.Hand == Hand.Both ? RobotArm.Both : RobotArm.ArmB);
  130. _robotMoveInfo.BladeTarget = $"{_robotMoveInfo.ArmTarget}.{data.Target}";
  131. System.Threading.Thread.Sleep(600);
  132. }
  133. });
  134. }
  135. /// <summary>
  136. /// 初始化Module Station
  137. /// </summary>
  138. /// <param name="module"></param>
  139. private void InitializeModuleStation(ModuleName module)
  140. {
  141. int cassete200Station = SC.GetValue<int>($"EFEM.{module}.Cassete200Station");
  142. _moduleStationNumberDictionary[$"{module}_200"] = cassete200Station;
  143. int cassete150Station = SC.GetValue<int>($"EFEM.{module}.Cassete150Station");
  144. _moduleStationNumberDictionary[$"{module}_150"] = cassete150Station;
  145. int cassete100Station = SC.GetValue<int>($"EFEM.{module}.Cassete100Station");
  146. _moduleStationNumberDictionary[$"{module}_100"]=cassete100Station;
  147. }
  148. private void Socket_OnConnect()
  149. {
  150. Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.CommReady);
  151. LOG.WriteLog(eEvent.EV_EFEM_COMMON_INFO, Module.ToString(), $"connect {_address} success");
  152. }
  153. private void OnErrorHappen(ErrorEventArgs args)
  154. {
  155. _status = RState.Failed;
  156. if (_error != args.Reason)
  157. {
  158. _error = args.Reason;
  159. LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, Module, $"{Module} {_error}");
  160. }
  161. Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.Error);
  162. }
  163. public override void Monitor()
  164. {
  165. }
  166. public override void Terminate()
  167. {
  168. }
  169. public override void Reset()
  170. {
  171. _status = RState.End;
  172. _currentMessage = null;
  173. }
  174. public override void SetOnline(bool online)
  175. {
  176. }
  177. public override void SetOnline(ModuleName mod, bool online)
  178. {
  179. }
  180. public override void SetBusy(ModuleName mod, bool online)
  181. {
  182. _status = RState.Running;
  183. }
  184. public override bool HomeAll()
  185. {
  186. if (_status == RState.Running&&_currentMessage!=null)
  187. {
  188. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot home All");
  189. return false;
  190. }
  191. //判断socket是否链接
  192. if (!_socket.IsConnected)
  193. {
  194. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  195. return false ;
  196. }
  197. _status = RState.Running;
  198. string data = "HOME ALL\r";
  199. _currentMessage =new EfemMessage(){
  200. Operation= EfemOperation.Home,
  201. Module=ModuleName.EFEM
  202. };
  203. //SetRobotMovingInfo(RobotAction.Homing, Hand.Both, ModuleName.EFEM);
  204. return WriteCommand(data);
  205. }
  206. public override bool Home(ModuleName mod)
  207. {
  208. if (_status == RState.Running && _currentMessage!= null)
  209. {
  210. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot home {mod}");
  211. return false;
  212. }
  213. if (mod != ModuleName.Aligner1&&mod!=ModuleName.EfemRobot)
  214. {
  215. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{mod} can not support home method");
  216. return false;
  217. }
  218. //判断socket是否链接
  219. if (!_socket.IsConnected)
  220. {
  221. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  222. return false;
  223. }
  224. if(mod == ModuleName.EfemRobot) SetRobotMovingInfo(RobotAction.Homing, Hand.Blade1, ModuleName.EfemRobot);
  225. _status = RState.Running;
  226. string cmd = "Home ALL\r";
  227. if (mod == ModuleName.Aligner1)
  228. {
  229. cmd = "ALIGNER HOME\r";
  230. }
  231. _currentMessage = new EfemMessage()
  232. {
  233. Operation = EfemOperation.Home,
  234. Module = ModuleName.Aligner1
  235. };
  236. return WriteCommand(cmd);
  237. }
  238. public override bool OriginalSearch(ModuleName mod)
  239. {
  240. return true;
  241. }
  242. public override bool CheckWaferPresence()
  243. {
  244. if (_status == RState.Running && _currentMessage != null)
  245. {
  246. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot check wafer");
  247. return false;
  248. }
  249. //判断socket是否链接
  250. if (!_socket.IsConnected)
  251. {
  252. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  253. return false;
  254. }
  255. if (!CheckEfemStatus())
  256. return false;
  257. _currentMessage = new EfemMessage()
  258. {
  259. Operation = EfemOperation.StateTrack,
  260. Module = ModuleName.EfemRobot
  261. };
  262. _status = RState.Running;
  263. string cmd = $"RQ LOAD {_armString[Hand.Blade1]}\r";
  264. return WriteCommand(cmd);
  265. }
  266. public override string GetWaferPresence()
  267. {
  268. return "";
  269. }
  270. public override bool Halt()
  271. {
  272. //判断socket是否链接
  273. if (!_socket.IsConnected)
  274. {
  275. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  276. return false;
  277. }
  278. _currentMessage = new EfemMessage()
  279. {
  280. Operation = EfemOperation.Abort,
  281. Module = ModuleName.EfemRobot
  282. };
  283. SetRobotMovingInfo(RobotAction.None, Hand.Both, ModuleName.EFEM);
  284. string cmd = "HALT\r";
  285. return WriteCommand(cmd);
  286. }
  287. public override bool ClearError()
  288. {
  289. return true;
  290. }
  291. public override bool CloseBuzzer()
  292. {
  293. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.TurnOffBuzzer]}");
  294. return false;
  295. }
  296. public override bool PickExtend(ModuleName chamber, int slot, Hand hand)
  297. {
  298. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  299. return false;
  300. }
  301. public override bool PickRetract(ModuleName chamber, int slot, Hand hand)
  302. {
  303. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  304. return false;
  305. }
  306. public override bool PlaceExtend(ModuleName chamber, int slot, Hand hand)
  307. {
  308. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  309. return false;
  310. }
  311. public override bool PlaceRetract(ModuleName chamber, int slot, Hand hand)
  312. {
  313. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  314. return false;
  315. }
  316. public override bool Pick(ModuleName station, int slot, Hand hand)
  317. {
  318. if (_status == RState.Running && _currentMessage != null)
  319. {
  320. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot pick");
  321. return false;
  322. }
  323. //判断socket是否链接
  324. if (!_socket.IsConnected)
  325. {
  326. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  327. return false;
  328. }
  329. //判断Loadport的门是否打开
  330. //if (ModuleHelper.IsLoadPort(station) && !GetLoadPort(station).IsDoorOpened)
  331. //{
  332. // LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station}'s Door is Closed, Cannot Execute Pick Action");
  333. // return false;
  334. //}
  335. if (!CheckEfemStatus())
  336. return false;
  337. int waferSize = GetModuleSlotWaferSize(station,slot);
  338. if (waferSize == 0)
  339. {
  340. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station} slot {slot} wafer size is 0, Cannot Execute Pick Action");
  341. return false;
  342. }
  343. string strModuleWaferSize = $"{station}_{waferSize}";
  344. if (!_moduleStationNumberDictionary.ContainsKey(strModuleWaferSize))
  345. {
  346. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station}'s number is not exist, Cannot Execute Pick Action");
  347. return false;
  348. }
  349. int stationNumber= _moduleStationNumberDictionary[strModuleWaferSize];
  350. string cmd = $"PICK {stationNumber} SLOT {slot+1} ARM {_armString[hand]}\r";
  351. if(ModuleHelper.IsPUF(station)||ModuleHelper.IsAligner(station)||ModuleHelper.IsSRD(station))
  352. {
  353. cmd = $"PICK {stationNumber} SLOT 1 ARM {_armString[hand]}\r";
  354. }
  355. _currentMessage = new EfemMessage()
  356. {
  357. Operation=EfemOperation.Pick
  358. };
  359. _status = RState.Running;
  360. SetRobotMovingInfo(RobotAction.Picking, hand, station);
  361. return WriteCommand(cmd);
  362. }
  363. private Loadport GetLoadPort(ModuleName station)
  364. {
  365. LoadPortModule loadPortModule = Singleton<RouteManager>.Instance.EFEM.GetLoadportModule(station - ModuleName.LP1);
  366. return loadPortModule.LPDevice;
  367. }
  368. public override bool Place(ModuleName station, int slot, Hand hand)
  369. {
  370. if (_status == RState.Running && _currentMessage != null)
  371. {
  372. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot place");
  373. return false;
  374. }
  375. //判断socket是否链接
  376. if (!_socket.IsConnected)
  377. {
  378. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  379. return false;
  380. }
  381. //判断Loadport的门是否打开
  382. //if (ModuleHelper.IsLoadPort(station) && !GetLoadPort(station).IsDoorOpened)
  383. //{
  384. // LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station}'s Door is Closed, Cannot Execute Pick Action");
  385. // return false;
  386. //}
  387. if (!CheckEfemStatus())
  388. return false;
  389. int waferSize = GetModuleSlotWaferSize(ModuleName.EfemRobot, (int)hand);
  390. if (waferSize == 0)
  391. {
  392. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station} slot {slot} wafer size is 0, Cannot Execute Place Action");
  393. return false;
  394. }
  395. string strModuleWaferSize = $"{station}_{waferSize}";
  396. _currentMessage = new EfemMessage()
  397. {
  398. Operation = EfemOperation.Place
  399. };
  400. _status = RState.Running;
  401. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  402. string cmd = $"PLACE {stationNumber} SLOT {slot+1} ARM {_armString[hand]}\r";
  403. if (ModuleHelper.IsPUF(station)||ModuleHelper.IsSRD(station))
  404. {
  405. cmd = $"PLACE {stationNumber} SLOT 1 ARM {_armString[hand]}\r";
  406. }
  407. if (ModuleHelper.IsAligner(station))
  408. {
  409. cmd = $"PLACE {stationNumber} PHOME\r";
  410. }
  411. SetRobotMovingInfo(RobotAction.Placing, hand, station);
  412. return WriteCommand(cmd);
  413. }
  414. public override bool Goto(ModuleName station, Hand hand, string updown = "UP")
  415. {
  416. if (_status == RState.Running && _currentMessage != null)
  417. {
  418. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot goto");
  419. return false;
  420. }
  421. if (!CheckEfemStatus())
  422. return false;
  423. //判断socket是否链接
  424. if (!_socket.IsConnected)
  425. {
  426. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  427. return false;
  428. }
  429. _currentMessage = new EfemMessage()
  430. {
  431. Operation = EfemOperation.Goto
  432. };
  433. int waferSize = GetModuleNameWaferSize(station);
  434. if (waferSize == 0)
  435. {
  436. return false;
  437. }
  438. string strModuleWaferSize = $"{station}_{waferSize}";
  439. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  440. string cmd = $"GOTO N {stationNumber} R EX Z {updown} ARM SLOT 1 {_armString[hand]}\r";
  441. _status = RState.Running;
  442. return WriteCommand(cmd);
  443. }
  444. public override bool Grip(Hand blade, bool isGrip)
  445. {
  446. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Grip]}");
  447. return false;
  448. }
  449. public override bool GotoMap(ModuleName mod,Hand hand,string extend="EX")
  450. {
  451. if (_status == RState.Running && _currentMessage != null)
  452. {
  453. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot goto map");
  454. return false;
  455. }
  456. //判断socket是否链接
  457. if (!_socket.IsConnected)
  458. {
  459. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  460. return false;
  461. }
  462. if (!CheckEfemStatus())
  463. return false;
  464. int waferSize = GetModuleNameWaferSize(mod);
  465. if (waferSize == 0)
  466. {
  467. return false;
  468. }
  469. string strModuleWaferSize = $"{mod}_{waferSize}";
  470. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  471. string cmd = $"GOTO N {stationNumber} MAP {extend} ARM {_armString[hand]}\r";
  472. _currentMessage = new EfemMessage()
  473. {
  474. Operation = EfemOperation.Goto,
  475. Module= mod
  476. };
  477. _status = RState.Running;
  478. return WriteCommand(cmd);
  479. }
  480. public override bool Map(ModuleName mod)
  481. {
  482. if (_status == RState.Running && _currentMessage != null)
  483. {
  484. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot map");
  485. return false;
  486. }
  487. //判断socket是否链接
  488. if (!_socket.IsConnected)
  489. {
  490. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  491. return false;
  492. }
  493. if (!CheckEfemStatus())
  494. return false;
  495. int waferSize = GetModuleNameWaferSize(mod);
  496. if (waferSize == 0)
  497. {
  498. return false;
  499. }
  500. string strModuleWaferSize = $"{mod}_{waferSize}";
  501. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  502. _currentMessage = new EfemMessage()
  503. {
  504. Operation = EfemOperation.Home,
  505. Module = mod
  506. };
  507. string cmd = $"MAP {stationNumber} ARM {_armString[Hand.Blade1]}\r";
  508. _status = RState.Running;
  509. return WriteCommand(cmd);
  510. }
  511. public override bool RequestMapResult(ModuleName mod)
  512. {
  513. if (_status == RState.Running && _currentMessage != null)
  514. {
  515. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot request map");
  516. return false;
  517. }
  518. //判断socket是否链接
  519. if (!_socket.IsConnected)
  520. {
  521. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  522. return false;
  523. }
  524. if (!CheckEfemStatus())
  525. return false;
  526. int waferSize = GetModuleNameWaferSize(mod);
  527. if (waferSize == 0)
  528. {
  529. return false;
  530. }
  531. string strModuleWaferSize = $"{mod}_{waferSize}";
  532. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  533. _currentMessage = new EfemMessage()
  534. {
  535. Operation = EfemOperation.RequestMapResult,
  536. Module = mod
  537. };
  538. string cmd = $"RSR {stationNumber} ARM {_armString[Hand.Blade1]}\r";
  539. _status = RState.Running;
  540. return WriteCommand(cmd);
  541. }
  542. public override bool Vacuum(ModuleName mod,bool VacuumState)
  543. {
  544. if (_status == RState.Running && _currentMessage != null)
  545. {
  546. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot vacuum");
  547. return false;
  548. }
  549. //判断socket是否链接
  550. if (!_socket.IsConnected)
  551. {
  552. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  553. return false;
  554. }
  555. _currentMessage = new EfemMessage()
  556. {
  557. Operation = EfemOperation.Vacuum,
  558. Module = mod
  559. };
  560. _status = RState.Running;
  561. string strVacuum = VacuumState ? "ON" : "OFF";
  562. string cmd = "";
  563. if (ModuleName.Aligner1 == mod)
  564. {
  565. cmd = $"ALIGNER VAC {strVacuum}\r";
  566. }
  567. else
  568. {
  569. cmd = $"VAC {strVacuum} ARM {_armString[Hand.Blade1]}\r";
  570. }
  571. return WriteCommand(cmd);
  572. }
  573. public override bool GetWaferSize(ModuleName mod)
  574. {
  575. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support GetWaferSize");
  576. return false;
  577. }
  578. public override bool SetWaferSize(ModuleName mod, int WaferSize)
  579. {
  580. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support SetWaferSize");
  581. return false;
  582. }
  583. public override bool SetPinUp(ModuleName mod)
  584. {
  585. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Lift]}");
  586. return false;
  587. }
  588. public override bool SetPinDown(ModuleName mod)
  589. {
  590. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Lift]}");
  591. return false;
  592. }
  593. public override bool SetAlignAngle(ModuleName mod, double angle)
  594. {
  595. if (_status == RState.Running && _currentMessage != null)
  596. {
  597. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot Align Angle");
  598. return false;
  599. }
  600. if (!CheckEfemStatus())
  601. return false;
  602. //判断socket是否链接
  603. if (!_socket.IsConnected)
  604. {
  605. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  606. return false;
  607. }
  608. _currentMessage = new EfemMessage()
  609. {
  610. Operation = EfemOperation.Align,
  611. };
  612. string cmd = $"SET ALIGNER POSTPOS 1 POS {angle*1000}\r";
  613. _status = RState.Running;
  614. return WriteCommand(cmd);
  615. }
  616. public override bool SetRobotSpeed(ModuleName mod, int speed)
  617. {
  618. if (_status == RState.Running && _currentMessage != null)
  619. {
  620. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot Speed");
  621. return false;
  622. }
  623. //判断socket是否链接
  624. if (!_socket.IsConnected)
  625. {
  626. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  627. return false;
  628. }
  629. _currentMessage = new EfemMessage()
  630. {
  631. Operation = EfemOperation.Speed
  632. };
  633. string cmd = $"SET ACTION SPEEDS {speed}\r";
  634. _status = RState.Running;
  635. return WriteCommand(cmd);
  636. }
  637. public override bool RobotPowerOn(ModuleName mod, bool Status)
  638. {
  639. if (_status == RState.Running && _currentMessage != null)
  640. {
  641. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot PowerOn");
  642. return false;
  643. }
  644. //判断socket是否链接
  645. if (!_socket.IsConnected)
  646. {
  647. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  648. return false;
  649. }
  650. string status = Status? "ON":"OFF";
  651. _currentMessage = new EfemMessage()
  652. {
  653. Operation = EfemOperation.PowerOn
  654. };
  655. string cmd = $"SET SERVOS {status}\r";
  656. _status = RState.Running;
  657. return WriteCommand(cmd);
  658. }
  659. public override bool Align(ModuleName mod, double angle, float delayTime, WaferSize size)
  660. {
  661. if (_status == RState.Running && _currentMessage != null)
  662. {
  663. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot Align");
  664. return false;
  665. }
  666. //判断socket是否链接
  667. if (!_socket.IsConnected)
  668. {
  669. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  670. return false;
  671. }
  672. if (!CheckEfemStatus())
  673. return false;
  674. _currentMessage = new EfemMessage()
  675. {
  676. Operation = EfemOperation.Align
  677. };
  678. _status = RState.Running;
  679. string cmd = "ALIGNER ALGN\r";
  680. return WriteCommand(cmd);
  681. }
  682. public override bool SetLamp(LightType light, LightStatus status)
  683. {
  684. return false;
  685. }
  686. public override bool Load(ModuleName mod)
  687. {
  688. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Load");
  689. return false;
  690. }
  691. public override bool Unload(ModuleName mod)
  692. {
  693. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Unload");
  694. return false;
  695. }
  696. public override bool ReadCarrierId(ModuleName mod)
  697. {
  698. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support ReadCarrierId");
  699. return false;
  700. }
  701. public override bool WriteCarrierId(ModuleName mod, string id)
  702. {
  703. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support WriteCarrierId");
  704. return false;
  705. }
  706. public override bool ReadTagData(ModuleName mod)
  707. {
  708. return ReadCarrierId(mod);
  709. }
  710. public override bool WriteTagData(ModuleName mod, string tagData)
  711. {
  712. return WriteCarrierId(mod, tagData);
  713. }
  714. public override bool Dock(ModuleName mod)
  715. {
  716. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Dock");
  717. return false;
  718. }
  719. public override bool Undock(ModuleName mod)
  720. {
  721. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Undock");
  722. return false;
  723. }
  724. public override bool Clamp(ModuleName mod, bool isUnloadClamp)
  725. {
  726. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Clamp");
  727. return false;
  728. }
  729. public override bool Unclamp(ModuleName mod)
  730. {
  731. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Unclamp");
  732. return false;
  733. }
  734. public override bool SetThickness(ModuleName mod, string thickness)
  735. {
  736. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.SetThickness]}");
  737. return false;
  738. }
  739. public override void SetRobotMovingInfo(RobotAction action, Hand hand, ModuleName target)
  740. {
  741. blockingCollection.Add(new RobotAnimationData(action, hand, target));
  742. }
  743. private void OnReceiveMessage(string msg)
  744. {
  745. LOG.WriteLog(eEvent.EV_EFEM_COMMON_INFO, Module.ToString(), msg.Replace("\r",""));
  746. if (_currentMessage == null)
  747. {
  748. return;
  749. }
  750. if(msg.StartsWith("_ERR"))
  751. {
  752. string error = msg.Replace("_ERR", "").Trim();
  753. OnErrorOccurred(error);
  754. _currentMessage = null;
  755. SetRobotMovingInfo(RobotAction.None, Hand.Both, ModuleName.EFEM);
  756. return;
  757. }
  758. else if(msg.StartsWith("_RDY"))
  759. {
  760. _status = RState.End;
  761. switch (_currentMessage.Operation)
  762. {
  763. case EfemOperation.Home:
  764. SetRobotMovingInfo(RobotAction.Homing, Hand.Both, ModuleName.EFEM);
  765. break;
  766. case EfemOperation.Map:
  767. case EfemOperation.GotoMap:
  768. if (ModuleHelper.IsLoadPort(_currentMessage.Module))
  769. {
  770. GetLoadPort(_currentMessage.Module).OnMaped();
  771. }
  772. break;
  773. case EfemOperation.Pick:
  774. case EfemOperation.Place:
  775. SetRobotMovingInfo(RobotAction.None, Hand.Both, ModuleName.EfemRobot);
  776. break;
  777. }
  778. }
  779. else
  780. {
  781. switch (_currentMessage.Operation)
  782. {
  783. case EfemOperation.StateTrack:
  784. DealStateTrack(msg);
  785. break;
  786. case EfemOperation.RequestMapResult:
  787. DealMapResult(msg);
  788. break;
  789. }
  790. _status = RState.End;
  791. _currentMessage = null;
  792. }
  793. }
  794. /// <summary>
  795. /// 处理StateTrack结果
  796. /// </summary>
  797. /// <param name="msg"></param>
  798. private void DealStateTrack(string msg)
  799. {
  800. if (msg.StartsWith("LOAD"))
  801. {
  802. string[] strAry = msg.Trim().Split(' ');
  803. if (strAry.Length >= 2)
  804. {
  805. bool hasWafer = strAry[2] == "ON" ? true : false;
  806. if (strAry[1] == _armString[Hand.Blade1])
  807. {
  808. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, 0)&& hasWafer)
  809. {
  810. WaferManager.Instance.CreateWafer(ModuleName.EfemRobot, 0, WaferStatus.Normal);
  811. }
  812. }
  813. else if (strAry[1] == _armString[Hand.Blade2])
  814. {
  815. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, 1) && hasWafer)
  816. {
  817. WaferManager.Instance.CreateWafer(ModuleName.EfemRobot, 1, WaferStatus.Normal);
  818. }
  819. }
  820. }
  821. }
  822. }
  823. /// <summary>
  824. /// 处理Map结果
  825. /// </summary>
  826. /// <param name="msg"></param>
  827. private void DealMapResult(string msg)
  828. {
  829. if (_currentMessage.Operation != EfemOperation.RequestMapResult)
  830. {
  831. return;
  832. }
  833. if(!msg.StartsWith("MAP"))
  834. {
  835. return;
  836. }
  837. string[] sWaferInfo = msg.Split(new char[] { ' ', '\r', '\n' });
  838. if (sWaferInfo.Length <= 2)
  839. {
  840. return;
  841. }
  842. int slotMap = SC.GetValue<int>("EFEM.LoadPort.SlotNumber");
  843. WaferType waferType = WaferType.Production;
  844. if (ModuleHelper.IsDummy(_currentMessage.Module))
  845. {
  846. DummyCassetteItem item = DummyCasseteItemManager.Instance.GetDummyCassetteItem(_currentMessage.Module.ToString());
  847. if (item != null)
  848. {
  849. slotMap = item.MaxNumberOfSlots;
  850. }
  851. waferType = WaferType.Assit;
  852. }
  853. int waferSize = GetModuleNameWaferSize(_currentMessage.Module);
  854. //Map 结果(1 1 1 1 1 1 1 ...0)
  855. int startIndex = 1;
  856. int count = slotMap >= sWaferInfo.Length-startIndex? sWaferInfo.Length-startIndex : slotMap;
  857. bool result = true;
  858. for (int index = startIndex; index <= count; index++)
  859. {
  860. string strState = sWaferInfo[index];
  861. int waferState = 0;
  862. //合理的映射到内部支持的叠片/交叉片
  863. if (strState == "1") waferState = (int)WaferStatus.Normal;
  864. else if (strState == "2") waferState = (int)WaferStatus.Double;
  865. else if (strState == "3") waferState = (int)WaferStatus.Crossed;
  866. else if (strState == "5") waferState = (int)WaferStatus.Thin;
  867. else if(strState=="?") waferState=(int)WaferStatus.Unknown;
  868. WaferStatus st = (WaferStatus)waferState;
  869. if (st != WaferStatus.Empty)
  870. {
  871. WaferManager.Instance.CreateWafer(_currentMessage.Module, index-startIndex, st,(WaferSize)waferSize,waferType);
  872. if (st != WaferStatus.Normal)
  873. {
  874. result = false;
  875. }
  876. }
  877. else
  878. {
  879. WaferManager.Instance.DeleteWafer(_currentMessage.Module, index-startIndex);
  880. }
  881. }
  882. if (!result)
  883. {
  884. LOG.WriteLog(eEvent.ERROR_EFEM_ERROR_WAFER, Module.ToString(), $"{_currentMessage.Module} slot map failed {msg}");
  885. }
  886. if (ModuleHelper.IsLoadPort(_currentMessage.Module))
  887. {
  888. GetLoadPort(_currentMessage.Module).UpdateMapResult(result);
  889. }
  890. }
  891. private void OnErrorOccurred(string errorCode)
  892. {
  893. _status = RState.Failed;
  894. string description = errorCode;
  895. if (SumWayRobotErrorCode.ErrorCodeDescription.ContainsKey(errorCode))
  896. {
  897. description=SumWayRobotErrorCode.ErrorCodeDescription[errorCode];
  898. }
  899. Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.Error, description);
  900. if (_currentMessage != null)
  901. {
  902. LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, ModuleName.EFEM, $"current operation {_currentMessage.Operation} failed,{description}");
  903. }
  904. _currentMessage=null;
  905. }
  906. private bool WriteCommand(string cmd)
  907. {
  908. LOG.WriteLog(eEvent.EV_EFEM_COMMON_INFO, Module.ToString(), cmd.Replace("\r", ""));
  909. return _socket.Write(cmd);
  910. }
  911. /// <summary>
  912. /// 获取模块Wafer尺寸
  913. /// </summary>
  914. /// <param name="moduleName"></param>
  915. /// <returns></returns>
  916. private int GetModuleNameWaferSize(ModuleName moduleName)
  917. {
  918. if (ModuleHelper.IsLoadPort(moduleName))
  919. {
  920. Loadport loadport = GetLoadPort(moduleName);
  921. if (!loadport.HasCassette)
  922. {
  923. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
  924. return 0;
  925. }
  926. return (int)loadport.WaferSize;
  927. }
  928. else if (ModuleHelper.IsDummy(moduleName))
  929. {
  930. DummyDevice dummyDevice = Singleton<RouteManager>.Instance.EFEM.GetDummyDevice(moduleName - ModuleName.Dummy1);
  931. if (!dummyDevice.HasCassette)
  932. {
  933. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
  934. return 0;
  935. }
  936. return (int)dummyDevice.WaferSize;
  937. }
  938. return 0;
  939. }
  940. /// <summary>
  941. /// 获取模块尺寸
  942. /// </summary>
  943. /// <param name="moduleName"></param>
  944. /// <returns></returns>
  945. private int GetModuleSlotWaferSize(ModuleName moduleName,int slotNumber)
  946. {
  947. if(WaferManager.Instance.CheckHasWafer(moduleName,slotNumber))
  948. {
  949. WaferInfo waferInfo=WaferManager.Instance.GetWafer(moduleName, slotNumber);
  950. return (int)waferInfo.Size;
  951. }
  952. else
  953. {
  954. return 0;
  955. }
  956. }
  957. }
  958. }