SunWayRobot.cs 40 KB

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