SunWayRobot.cs 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007
  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. if (_status == RState.Running && _currentMessage != null)
  273. {
  274. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot halt");
  275. return false;
  276. }
  277. //判断socket是否链接
  278. if (!_socket.IsConnected)
  279. {
  280. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  281. return false;
  282. }
  283. _currentMessage = new EfemMessage()
  284. {
  285. Operation = EfemOperation.Abort,
  286. Module = ModuleName.EfemRobot
  287. };
  288. string cmd = "HALT\r";
  289. return WriteCommand(cmd);
  290. }
  291. public override bool ClearError()
  292. {
  293. return true;
  294. }
  295. public override bool CloseBuzzer()
  296. {
  297. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.TurnOffBuzzer]}");
  298. return false;
  299. }
  300. public override bool PickExtend(ModuleName chamber, int slot, Hand hand)
  301. {
  302. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  303. return false;
  304. }
  305. public override bool PickRetract(ModuleName chamber, int slot, Hand hand)
  306. {
  307. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  308. return false;
  309. }
  310. public override bool PlaceExtend(ModuleName chamber, int slot, Hand hand)
  311. {
  312. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  313. return false;
  314. }
  315. public override bool PlaceRetract(ModuleName chamber, int slot, Hand hand)
  316. {
  317. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Extend]}");
  318. return false;
  319. }
  320. public override bool Pick(ModuleName station, int slot, Hand hand)
  321. {
  322. if (_status == RState.Running && _currentMessage != null)
  323. {
  324. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot pick");
  325. return false;
  326. }
  327. //判断socket是否链接
  328. if (!_socket.IsConnected)
  329. {
  330. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  331. return false;
  332. }
  333. //判断Loadport的门是否打开
  334. //if (ModuleHelper.IsLoadPort(station) && !GetLoadPort(station).IsDoorOpened)
  335. //{
  336. // LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station}'s Door is Closed, Cannot Execute Pick Action");
  337. // return false;
  338. //}
  339. if (!CheckEfemStatus())
  340. return false;
  341. int waferSize = GetModuleSlotWaferSize(station,slot);
  342. if (waferSize == 0)
  343. {
  344. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station} slot {slot} wafer size is 0, Cannot Execute Pick Action");
  345. return false;
  346. }
  347. string strModuleWaferSize = $"{station}_{waferSize}";
  348. if (!_moduleStationNumberDictionary.ContainsKey(strModuleWaferSize))
  349. {
  350. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{station}'s number is not exist, Cannot Execute Pick Action");
  351. return false;
  352. }
  353. int stationNumber= _moduleStationNumberDictionary[strModuleWaferSize];
  354. string cmd = $"PICK {stationNumber} SLOT {slot+1} ARM {_armString[hand]}\r";
  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. SetRobotMovingInfo(RobotAction.Placing, hand, station);
  404. return WriteCommand(cmd);
  405. }
  406. public override bool Goto(ModuleName station, Hand hand, string updown = "UP")
  407. {
  408. if (_status == RState.Running && _currentMessage != null)
  409. {
  410. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot goto");
  411. return false;
  412. }
  413. if (!CheckEfemStatus())
  414. return false;
  415. //判断socket是否链接
  416. if (!_socket.IsConnected)
  417. {
  418. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  419. return false;
  420. }
  421. _currentMessage = new EfemMessage()
  422. {
  423. Operation = EfemOperation.Goto
  424. };
  425. int waferSize = GetModuleNameWaferSize(station);
  426. if (waferSize == 0)
  427. {
  428. return false;
  429. }
  430. string strModuleWaferSize = $"{station}_{waferSize}";
  431. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  432. string cmd = $"GOTO N {stationNumber} R EX Z {updown} ARM SLOT 1 {_armString[hand]}\r";
  433. _status = RState.Running;
  434. return WriteCommand(cmd);
  435. }
  436. public override bool Grip(Hand blade, bool isGrip)
  437. {
  438. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Grip]}");
  439. return false;
  440. }
  441. public override bool GotoMap(ModuleName mod,Hand hand,string extend="EX")
  442. {
  443. if (_status == RState.Running && _currentMessage != null)
  444. {
  445. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot goto map");
  446. return false;
  447. }
  448. //判断socket是否链接
  449. if (!_socket.IsConnected)
  450. {
  451. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  452. return false;
  453. }
  454. if (!CheckEfemStatus())
  455. return false;
  456. int waferSize = GetModuleNameWaferSize(mod);
  457. if (waferSize == 0)
  458. {
  459. return false;
  460. }
  461. string strModuleWaferSize = $"{mod}_{waferSize}";
  462. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  463. string cmd = $"GOTO N {stationNumber} MAP {extend} ARM {_armString[hand]}\r";
  464. _currentMessage = new EfemMessage()
  465. {
  466. Operation = EfemOperation.Goto,
  467. Module= mod
  468. };
  469. _status = RState.Running;
  470. return WriteCommand(cmd);
  471. }
  472. public override bool Map(ModuleName mod)
  473. {
  474. if (_status == RState.Running && _currentMessage != null)
  475. {
  476. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot map");
  477. return false;
  478. }
  479. //判断socket是否链接
  480. if (!_socket.IsConnected)
  481. {
  482. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  483. return false;
  484. }
  485. if (!CheckEfemStatus())
  486. return false;
  487. int waferSize = GetModuleNameWaferSize(mod);
  488. if (waferSize == 0)
  489. {
  490. return false;
  491. }
  492. string strModuleWaferSize = $"{mod}_{waferSize}";
  493. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  494. _currentMessage = new EfemMessage()
  495. {
  496. Operation = EfemOperation.Home,
  497. Module = mod
  498. };
  499. string cmd = $"MAP {stationNumber} ARM {_armString[Hand.Blade1]}\r";
  500. _status = RState.Running;
  501. return WriteCommand(cmd);
  502. }
  503. public override bool RequestMapResult(ModuleName mod)
  504. {
  505. if (_status == RState.Running && _currentMessage != null)
  506. {
  507. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot request map");
  508. return false;
  509. }
  510. //判断socket是否链接
  511. if (!_socket.IsConnected)
  512. {
  513. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  514. return false;
  515. }
  516. if (!CheckEfemStatus())
  517. return false;
  518. int waferSize = GetModuleNameWaferSize(mod);
  519. if (waferSize == 0)
  520. {
  521. return false;
  522. }
  523. string strModuleWaferSize = $"{mod}_{waferSize}";
  524. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  525. _currentMessage = new EfemMessage()
  526. {
  527. Operation = EfemOperation.RequestMapResult,
  528. Module = mod
  529. };
  530. string cmd = $"RSR {stationNumber} ARM {_armString[Hand.Blade1]}\r";
  531. _status = RState.Running;
  532. return WriteCommand(cmd);
  533. }
  534. public override bool Vacuum(ModuleName mod,bool VacuumState)
  535. {
  536. if (_status == RState.Running && _currentMessage != null)
  537. {
  538. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot vacuum");
  539. return false;
  540. }
  541. //判断socket是否链接
  542. if (!_socket.IsConnected)
  543. {
  544. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  545. return false;
  546. }
  547. _currentMessage = new EfemMessage()
  548. {
  549. Operation = EfemOperation.Vacuum,
  550. Module = mod
  551. };
  552. _status = RState.Running;
  553. string strVacuum = VacuumState ? "ON" : "OFF";
  554. string cmd = "";
  555. if (ModuleName.Aligner1 == mod)
  556. {
  557. cmd = $"ALIGN VAC {strVacuum}\r";
  558. }
  559. else
  560. {
  561. cmd = $"VAC {strVacuum} ARM {_armString[Hand.Blade1]}\r";
  562. }
  563. return WriteCommand(cmd);
  564. }
  565. public override bool GetWaferSize(ModuleName mod)
  566. {
  567. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support GetWaferSize");
  568. return false;
  569. }
  570. public override bool SetWaferSize(ModuleName mod, int WaferSize)
  571. {
  572. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support SetWaferSize");
  573. return false;
  574. }
  575. public override bool SetPinUp(ModuleName mod)
  576. {
  577. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Lift]}");
  578. return false;
  579. }
  580. public override bool SetPinDown(ModuleName mod)
  581. {
  582. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Lift]}");
  583. return false;
  584. }
  585. public override bool SetAlignAngle(ModuleName mod, double angle)
  586. {
  587. if (_status == RState.Running && _currentMessage != null)
  588. {
  589. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot Align Angle");
  590. return false;
  591. }
  592. if (!CheckEfemStatus())
  593. return false;
  594. //判断socket是否链接
  595. if (!_socket.IsConnected)
  596. {
  597. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  598. return false;
  599. }
  600. _currentMessage = new EfemMessage()
  601. {
  602. Operation = EfemOperation.Align,
  603. };
  604. string cmd = $"SET ALIGNER CCDPOS {angle}\r";
  605. _status = RState.Running;
  606. return WriteCommand(cmd);
  607. }
  608. public override bool SetRobotSpeed(ModuleName mod, int speed)
  609. {
  610. if (_status == RState.Running && _currentMessage != null)
  611. {
  612. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot Speed");
  613. return false;
  614. }
  615. //判断socket是否链接
  616. if (!_socket.IsConnected)
  617. {
  618. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  619. return false;
  620. }
  621. _currentMessage = new EfemMessage()
  622. {
  623. Operation = EfemOperation.Speed
  624. };
  625. string cmd = $"SET ACTION SPEEDS {speed}\r";
  626. _status = RState.Running;
  627. return WriteCommand(cmd);
  628. }
  629. public override bool RobotPowerOn(ModuleName mod, bool Status)
  630. {
  631. if (_status == RState.Running && _currentMessage != null)
  632. {
  633. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot PowerOn");
  634. return false;
  635. }
  636. //判断socket是否链接
  637. if (!_socket.IsConnected)
  638. {
  639. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  640. return false;
  641. }
  642. string status = Status? "ON":"OFF";
  643. _currentMessage = new EfemMessage()
  644. {
  645. Operation = EfemOperation.PowerOn
  646. };
  647. string cmd = $"SET SERVOS {status}\r";
  648. _status = RState.Running;
  649. return WriteCommand(cmd);
  650. }
  651. public override bool Align(ModuleName mod, double angle, float delayTime, WaferSize size)
  652. {
  653. if (_status == RState.Running && _currentMessage != null)
  654. {
  655. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot Align");
  656. return false;
  657. }
  658. //判断socket是否链接
  659. if (!_socket.IsConnected)
  660. {
  661. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  662. return false;
  663. }
  664. if (!CheckEfemStatus())
  665. return false;
  666. _currentMessage = new EfemMessage()
  667. {
  668. Operation = EfemOperation.Align
  669. };
  670. _status = RState.Running;
  671. string cmd = "ALIGNER ALGN\r";
  672. return WriteCommand(cmd);
  673. }
  674. public override bool SetLamp(LightType light, LightStatus status)
  675. {
  676. return false;
  677. }
  678. public override bool Load(ModuleName mod)
  679. {
  680. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Load");
  681. return false;
  682. }
  683. public override bool Unload(ModuleName mod)
  684. {
  685. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Unload");
  686. return false;
  687. }
  688. public override bool ReadCarrierId(ModuleName mod)
  689. {
  690. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support ReadCarrierId");
  691. return false;
  692. }
  693. public override bool WriteCarrierId(ModuleName mod, string id)
  694. {
  695. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support WriteCarrierId");
  696. return false;
  697. }
  698. public override bool ReadTagData(ModuleName mod)
  699. {
  700. return ReadCarrierId(mod);
  701. }
  702. public override bool WriteTagData(ModuleName mod, string tagData)
  703. {
  704. return WriteCarrierId(mod, tagData);
  705. }
  706. public override bool Dock(ModuleName mod)
  707. {
  708. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Dock");
  709. return false;
  710. }
  711. public override bool Undock(ModuleName mod)
  712. {
  713. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Undock");
  714. return false;
  715. }
  716. public override bool Clamp(ModuleName mod, bool isUnloadClamp)
  717. {
  718. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Clamp");
  719. return false;
  720. }
  721. public override bool Unclamp(ModuleName mod)
  722. {
  723. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support Unclamp");
  724. return false;
  725. }
  726. public override bool SetThickness(ModuleName mod, string thickness)
  727. {
  728. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.SetThickness]}");
  729. return false;
  730. }
  731. public override void SetRobotMovingInfo(RobotAction action, Hand hand, ModuleName target)
  732. {
  733. blockingCollection.Add(new RobotAnimationData(action, hand, target));
  734. }
  735. private void OnReceiveMessage(string msg)
  736. {
  737. LOG.WriteLog(eEvent.EV_EFEM_COMMON_INFO, Module.ToString(), msg.Replace("\r",""));
  738. if (_currentMessage == null)
  739. {
  740. return;
  741. }
  742. if(msg.StartsWith("_ERR"))
  743. {
  744. string error = msg.Replace("_ERR", "").Trim();
  745. OnErrorOccurred(error);
  746. _currentMessage = null;
  747. return;
  748. }
  749. else if(msg.StartsWith("_RDY"))
  750. {
  751. _status = RState.End;
  752. switch (_currentMessage.Operation)
  753. {
  754. case EfemOperation.Home:
  755. SetRobotMovingInfo(RobotAction.Homing, Hand.Both, ModuleName.EFEM);
  756. break;
  757. case EfemOperation.Map:
  758. case EfemOperation.GotoMap:
  759. if (ModuleHelper.IsLoadPort(_currentMessage.Module))
  760. {
  761. GetLoadPort(_currentMessage.Module).OnMaped();
  762. }
  763. break;
  764. case EfemOperation.Pick:
  765. case EfemOperation.Place:
  766. SetRobotMovingInfo(RobotAction.None, Hand.Both, ModuleName.EfemRobot);
  767. break;
  768. }
  769. }
  770. else
  771. {
  772. switch (_currentMessage.Operation)
  773. {
  774. case EfemOperation.StateTrack:
  775. DealStateTrack(msg);
  776. break;
  777. case EfemOperation.RequestMapResult:
  778. DealMapResult(msg);
  779. break;
  780. }
  781. _status = RState.End;
  782. _currentMessage = null;
  783. }
  784. }
  785. /// <summary>
  786. /// 处理StateTrack结果
  787. /// </summary>
  788. /// <param name="msg"></param>
  789. private void DealStateTrack(string msg)
  790. {
  791. if (msg.StartsWith("LOAD"))
  792. {
  793. string[] strAry = msg.Trim().Split(' ');
  794. if (strAry.Length >= 2)
  795. {
  796. bool hasWafer = strAry[2] == "ON" ? true : false;
  797. if (strAry[1] == _armString[Hand.Blade1])
  798. {
  799. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, 0)&& hasWafer)
  800. {
  801. WaferManager.Instance.CreateWafer(ModuleName.EfemRobot, 0, WaferStatus.Normal);
  802. }
  803. }
  804. else if (strAry[1] == _armString[Hand.Blade2])
  805. {
  806. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, 1) && hasWafer)
  807. {
  808. WaferManager.Instance.CreateWafer(ModuleName.EfemRobot, 1, WaferStatus.Normal);
  809. }
  810. }
  811. }
  812. }
  813. }
  814. /// <summary>
  815. /// 处理Map结果
  816. /// </summary>
  817. /// <param name="msg"></param>
  818. private void DealMapResult(string msg)
  819. {
  820. if (_currentMessage.Operation != EfemOperation.RequestMapResult)
  821. {
  822. return;
  823. }
  824. if(!msg.StartsWith("MAP"))
  825. {
  826. return;
  827. }
  828. string[] sWaferInfo = msg.Split(new char[] { ' ', '\r', '\n' });
  829. if (sWaferInfo.Length <= 2)
  830. {
  831. return;
  832. }
  833. int slotMap = SC.GetValue<int>("EFEM.LoadPort.SlotNumber");
  834. WaferType waferType = WaferType.Production;
  835. if (ModuleHelper.IsDummy(_currentMessage.Module))
  836. {
  837. DummyCassetteItem item = DummyCasseteItemManager.Instance.GetDummyCassetteItem(_currentMessage.Module.ToString());
  838. if (item != null)
  839. {
  840. slotMap = item.MaxNumberOfSlots;
  841. }
  842. waferType = WaferType.Assit;
  843. }
  844. int waferSize = GetModuleNameWaferSize(_currentMessage.Module);
  845. //Map 结果(1 1 1 1 1 1 1 ...0)
  846. int startIndex = 1;
  847. int count = slotMap >= sWaferInfo.Length-startIndex? sWaferInfo.Length-startIndex : slotMap;
  848. bool result = true;
  849. for (int index = startIndex; index <= count; index++)
  850. {
  851. int waferState = int.Parse(sWaferInfo[index]);
  852. //合理的映射到内部支持的叠片/交叉片
  853. if (waferState >= 7) waferState = 7;
  854. else if (waferState >= 2) waferState = 3;
  855. WaferStatus st = (WaferStatus)waferState;
  856. if (st != WaferStatus.Empty)
  857. {
  858. WaferManager.Instance.CreateWafer(_currentMessage.Module, index-startIndex, st,(WaferSize)waferSize,waferType);
  859. if (st != WaferStatus.Normal)
  860. {
  861. result = false;
  862. }
  863. }
  864. else
  865. {
  866. WaferManager.Instance.DeleteWafer(_currentMessage.Module, index-startIndex);
  867. }
  868. }
  869. if (ModuleHelper.IsLoadPort(_currentMessage.Module))
  870. {
  871. GetLoadPort(_currentMessage.Module).UpdateMapResult(result);
  872. }
  873. }
  874. private void OnErrorOccurred(string errorCode)
  875. {
  876. _status = RState.Failed;
  877. string description = errorCode;
  878. if (SumWayRobotErrorCode.ErrorCodeDescription.ContainsKey(errorCode))
  879. {
  880. description=SumWayRobotErrorCode.ErrorCodeDescription[errorCode];
  881. }
  882. Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.Error, description);
  883. if (_currentMessage != null)
  884. {
  885. LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, ModuleName.EFEM, $"current operation {_currentMessage.Operation} failed,{description}");
  886. }
  887. _currentMessage=null;
  888. }
  889. private bool WriteCommand(string cmd)
  890. {
  891. LOG.WriteLog(eEvent.EV_EFEM_COMMON_INFO, Module.ToString(), cmd.Replace("\r", ""));
  892. return _socket.Write(cmd);
  893. }
  894. /// <summary>
  895. /// 获取模块Wafer尺寸
  896. /// </summary>
  897. /// <param name="moduleName"></param>
  898. /// <returns></returns>
  899. private int GetModuleNameWaferSize(ModuleName moduleName)
  900. {
  901. if (ModuleHelper.IsLoadPort(moduleName))
  902. {
  903. Loadport loadport = GetLoadPort(moduleName);
  904. if (!loadport.HasCassette)
  905. {
  906. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
  907. return 0;
  908. }
  909. return (int)loadport.WaferSize;
  910. }
  911. else if (ModuleHelper.IsDummy(moduleName))
  912. {
  913. DummyDevice dummyDevice = Singleton<RouteManager>.Instance.EFEM.GetDummyDevice(moduleName - ModuleName.Dummy1);
  914. if (!dummyDevice.HasCassette)
  915. {
  916. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
  917. return 0;
  918. }
  919. return (int)dummyDevice.WaferSize;
  920. }
  921. return 0;
  922. }
  923. /// <summary>
  924. /// 获取模块尺寸
  925. /// </summary>
  926. /// <param name="moduleName"></param>
  927. /// <returns></returns>
  928. private int GetModuleSlotWaferSize(ModuleName moduleName,int slotNumber)
  929. {
  930. if(WaferManager.Instance.CheckHasWafer(moduleName,slotNumber))
  931. {
  932. WaferInfo waferInfo=WaferManager.Instance.GetWafer(moduleName, slotNumber);
  933. return (int)waferInfo.Size;
  934. }
  935. else
  936. {
  937. return 0;
  938. }
  939. }
  940. }
  941. }