SunWayRobot.cs 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028
  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. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"wafersize is 0");
  437. return false;
  438. }
  439. string strModuleWaferSize = $"{station}_{waferSize}";
  440. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  441. string cmd = $"GOTO N {stationNumber} R EX Z {updown} ARM SLOT 1 {_armString[hand]}\r";
  442. _status = RState.Running;
  443. return WriteCommand(cmd);
  444. }
  445. public override bool Grip(Hand blade, bool isGrip)
  446. {
  447. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"System cannot support {EfemConstant.OperationString[EfemOperation.Grip]}");
  448. return false;
  449. }
  450. public override bool GotoMap(ModuleName mod,Hand hand,string extend="EX")
  451. {
  452. if (_status == RState.Running && _currentMessage != null)
  453. {
  454. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot goto map");
  455. return false;
  456. }
  457. //判断socket是否链接
  458. if (!_socket.IsConnected)
  459. {
  460. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  461. return false;
  462. }
  463. if (!CheckEfemStatus())
  464. return false;
  465. int waferSize = GetModuleNameWaferSize(mod);
  466. if (waferSize == 0)
  467. {
  468. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"wafersize is 0");
  469. return false;
  470. }
  471. string strModuleWaferSize = $"{mod}_{waferSize}";
  472. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  473. string cmd = $"GOTO N {stationNumber} MAP {extend} ARM {_armString[hand]}\r";
  474. _currentMessage = new EfemMessage()
  475. {
  476. Operation = EfemOperation.Goto,
  477. Module= mod
  478. };
  479. _status = RState.Running;
  480. return WriteCommand(cmd);
  481. }
  482. public override bool Map(ModuleName mod)
  483. {
  484. if (_status == RState.Running && _currentMessage != null)
  485. {
  486. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot map");
  487. return false;
  488. }
  489. //判断socket是否链接
  490. if (!_socket.IsConnected)
  491. {
  492. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  493. return false;
  494. }
  495. if (!CheckEfemStatus())
  496. return false;
  497. int waferSize = GetModuleNameWaferSize(mod);
  498. if (waferSize == 0)
  499. {
  500. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"wafersize is 0");
  501. return false;
  502. }
  503. string strModuleWaferSize = $"{mod}_{waferSize}";
  504. int stationNumber = _moduleStationNumberDictionary[strModuleWaferSize];
  505. _currentMessage = new EfemMessage()
  506. {
  507. Operation = EfemOperation.Home,
  508. Module = mod
  509. };
  510. string cmd = $"MAP {stationNumber} ARM {_armString[Hand.Blade1]}\r";
  511. _status = RState.Running;
  512. return WriteCommand(cmd);
  513. }
  514. public override bool RequestMapResult(ModuleName mod)
  515. {
  516. if (_status == RState.Running && _currentMessage != null)
  517. {
  518. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"Current Msg {_currentMessage.Operation} is Running,cannot request map");
  519. return false;
  520. }
  521. //判断socket是否链接
  522. if (!_socket.IsConnected)
  523. {
  524. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"Socket is not Conntected");
  525. return false;
  526. }
  527. if (!CheckEfemStatus())
  528. return false;
  529. int waferSize = GetModuleNameWaferSize(mod);
  530. if (waferSize == 0)
  531. {
  532. LOG.WriteLog(eEvent.ERROR_EFEM_COMMUNICATION, Module.ToString(), $"wafersize is 0");
  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 = $"ALIGNER 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 POSTPOS 1 POS {angle*1000}\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. SetRobotMovingInfo(RobotAction.None, Hand.Both, ModuleName.EFEM);
  760. return;
  761. }
  762. else if(msg.StartsWith("_RDY"))
  763. {
  764. _status = RState.End;
  765. switch (_currentMessage.Operation)
  766. {
  767. case EfemOperation.Home:
  768. SetRobotMovingInfo(RobotAction.Homing, Hand.Both, ModuleName.EFEM);
  769. break;
  770. case EfemOperation.Map:
  771. case EfemOperation.GotoMap:
  772. if (ModuleHelper.IsLoadPort(_currentMessage.Module))
  773. {
  774. GetLoadPort(_currentMessage.Module).OnMaped();
  775. }
  776. break;
  777. case EfemOperation.Pick:
  778. case EfemOperation.Place:
  779. SetRobotMovingInfo(RobotAction.None, Hand.Both, ModuleName.EfemRobot);
  780. break;
  781. }
  782. }
  783. else
  784. {
  785. switch (_currentMessage.Operation)
  786. {
  787. case EfemOperation.StateTrack:
  788. DealStateTrack(msg);
  789. break;
  790. case EfemOperation.RequestMapResult:
  791. DealMapResult(msg);
  792. break;
  793. }
  794. _status = RState.End;
  795. _currentMessage = null;
  796. }
  797. }
  798. /// <summary>
  799. /// 处理StateTrack结果
  800. /// </summary>
  801. /// <param name="msg"></param>
  802. private void DealStateTrack(string msg)
  803. {
  804. if (msg.StartsWith("LOAD"))
  805. {
  806. string[] strAry = msg.Trim().Split(' ');
  807. if (strAry.Length >= 2)
  808. {
  809. bool hasWafer = strAry[2] == "ON" ? true : false;
  810. if (strAry[1] == _armString[Hand.Blade1])
  811. {
  812. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, 0)&& hasWafer)
  813. {
  814. WaferManager.Instance.CreateWafer(ModuleName.EfemRobot, 0, WaferStatus.Normal);
  815. }
  816. }
  817. else if (strAry[1] == _armString[Hand.Blade2])
  818. {
  819. if (WaferManager.Instance.CheckNoWafer(ModuleName.EfemRobot, 1) && hasWafer)
  820. {
  821. WaferManager.Instance.CreateWafer(ModuleName.EfemRobot, 1, WaferStatus.Normal);
  822. }
  823. }
  824. }
  825. }
  826. }
  827. /// <summary>
  828. /// 处理Map结果
  829. /// </summary>
  830. /// <param name="msg"></param>
  831. private void DealMapResult(string msg)
  832. {
  833. if (_currentMessage.Operation != EfemOperation.RequestMapResult)
  834. {
  835. return;
  836. }
  837. if(!msg.StartsWith("MAP"))
  838. {
  839. return;
  840. }
  841. string[] sWaferInfo = msg.Split(new char[] { ' ', '\r', '\n' });
  842. if (sWaferInfo.Length <= 2)
  843. {
  844. return;
  845. }
  846. int slotMap = SC.GetValue<int>("EFEM.LoadPort.SlotNumber");
  847. WaferType waferType = WaferType.Production;
  848. if (ModuleHelper.IsDummy(_currentMessage.Module))
  849. {
  850. DummyCassetteItem item = DummyCasseteItemManager.Instance.GetDummyCassetteItem(_currentMessage.Module.ToString());
  851. if (item != null)
  852. {
  853. slotMap = item.MaxNumberOfSlots;
  854. }
  855. waferType = WaferType.Assit;
  856. }
  857. int waferSize = GetModuleNameWaferSize(_currentMessage.Module);
  858. //Map 结果(1 1 1 1 1 1 1 ...0)
  859. int startIndex = 1;
  860. int count = slotMap >= sWaferInfo.Length-startIndex? sWaferInfo.Length-startIndex : slotMap;
  861. bool result = true;
  862. for (int index = startIndex; index <= count; index++)
  863. {
  864. string strState = sWaferInfo[index];
  865. int waferState = 0;
  866. //合理的映射到内部支持的叠片/交叉片
  867. if (strState == "1") waferState = (int)WaferStatus.Normal;
  868. else if (strState == "2") waferState = (int)WaferStatus.Double;
  869. else if (strState == "3") waferState = (int)WaferStatus.Crossed;
  870. else if (strState == "5") waferState = (int)WaferStatus.Thin;
  871. else if(strState=="?") waferState=(int)WaferStatus.Unknown;
  872. WaferStatus st = (WaferStatus)waferState;
  873. if (st != WaferStatus.Empty)
  874. {
  875. WaferManager.Instance.CreateWafer(_currentMessage.Module, index-startIndex, st,(WaferSize)waferSize,waferType);
  876. if (st != WaferStatus.Normal)
  877. {
  878. result = false;
  879. }
  880. }
  881. else
  882. {
  883. WaferManager.Instance.DeleteWafer(_currentMessage.Module, index-startIndex);
  884. }
  885. }
  886. if (!result)
  887. {
  888. LOG.WriteLog(eEvent.ERROR_EFEM_ERROR_WAFER, Module.ToString(), $"{_currentMessage.Module} slot map failed {msg}");
  889. }
  890. if (ModuleHelper.IsLoadPort(_currentMessage.Module))
  891. {
  892. GetLoadPort(_currentMessage.Module).UpdateMapResult(result);
  893. }
  894. }
  895. private void OnErrorOccurred(string errorCode)
  896. {
  897. _status = RState.Failed;
  898. string description = errorCode;
  899. if (SumWayRobotErrorCode.ErrorCodeDescription.ContainsKey(errorCode))
  900. {
  901. description=SumWayRobotErrorCode.ErrorCodeDescription[errorCode];
  902. }
  903. Singleton<RouteManager>.Instance.EFEM.PostMsg(EfemEntity.MSG.Error, description);
  904. if (_currentMessage != null)
  905. {
  906. LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, ModuleName.EFEM, $"current operation {_currentMessage.Operation} failed,{description}");
  907. }
  908. _currentMessage=null;
  909. }
  910. private bool WriteCommand(string cmd)
  911. {
  912. LOG.WriteLog(eEvent.EV_EFEM_COMMON_INFO, Module.ToString(), cmd.Replace("\r", ""));
  913. return _socket.Write(cmd);
  914. }
  915. /// <summary>
  916. /// 获取模块Wafer尺寸
  917. /// </summary>
  918. /// <param name="moduleName"></param>
  919. /// <returns></returns>
  920. private int GetModuleNameWaferSize(ModuleName moduleName)
  921. {
  922. if (ModuleHelper.IsLoadPort(moduleName))
  923. {
  924. Loadport loadport = GetLoadPort(moduleName);
  925. if (!loadport.HasCassette)
  926. {
  927. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
  928. return 0;
  929. }
  930. return (int)loadport.WaferSize;
  931. }
  932. else if (ModuleHelper.IsDummy(moduleName))
  933. {
  934. DummyDevice dummyDevice = Singleton<RouteManager>.Instance.EFEM.GetDummyDevice(moduleName - ModuleName.Dummy1);
  935. if (!dummyDevice.HasCassette)
  936. {
  937. LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
  938. return 0;
  939. }
  940. return (int)dummyDevice.WaferSize;
  941. }
  942. return 0;
  943. }
  944. /// <summary>
  945. /// 获取模块尺寸
  946. /// </summary>
  947. /// <param name="moduleName"></param>
  948. /// <returns></returns>
  949. private int GetModuleSlotWaferSize(ModuleName moduleName,int slotNumber)
  950. {
  951. if(WaferManager.Instance.CheckHasWafer(moduleName,slotNumber))
  952. {
  953. WaferInfo waferInfo=WaferManager.Instance.GetWafer(moduleName, slotNumber);
  954. return (int)waferInfo.Size;
  955. }
  956. else
  957. {
  958. return 0;
  959. }
  960. }
  961. }
  962. }