| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448 | 
							- using System;
 
- using System.Text.RegularExpressions;
 
- using Aitex.Core.Common;
 
- using Aitex.Core.RT.Log;
 
- using Aitex.Core.RT.Event;
 
- using Aitex.Core.RT.DataCenter;
 
- using Aitex.Core.Util;
 
- using Aitex.Sorter.Common;
 
- using TSC = Aitex.Sorter.Common;
 
- using Aitex.Core.RT.Device;
 
- using Aitex.Core.RT.SCCore;
 
- using MECF.Framework.Common.Equipment;
 
- using MECF.Framework.Common.SubstrateTrackings;
 
- using Aitex.Core.RT.OperationCenter;
 
- using MECF.Framework.Common.Communications;
 
- namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot
 
- {
 
-     public enum RobotType
 
-     {
 
-         SR100,
 
-         NX100,
 
-         MAG7,
 
-     }
 
-     public class Robot : BaseDevice, IDevice, IConnection
 
-     {
 
-         public event Action<ModuleName, string> OnSlotMapRead;
 
-         public string Address
 
-         {
 
-             get { return _addr; }
 
-         }
 
-         public bool IsConnected
 
-         {
 
-             get { return _socket.IsConnected; }
 
-         }
 
-         public bool Disconnect()
 
-         {
 
-             return true;
 
-         }
 
-         public const string delimiter = "\r";
 
-         public int LastErrorCode { get; set; }
 
-         public int Status { get; set; }
 
-         public int ErrorCode { get; set; }
 
-         public int ElapseTime { get; set; }
 
-         public int Speed { get; set; }
 
-         public int Rotation { get;  set; }
 
-         public int Extension { get;  set; }
 
-         public int Wrist1 { get;  set; }
 
-         public int Wrist2 { get;  set; }
 
-         public int Evevation { get;  set; }
 
-         public bool StateWaferOnBlade1 { get; set; }
 
-         public bool StateWaferOnBlade2 { get; set; }
 
-         public bool StateBlade1Gripped { get; set; }
 
-         public bool StateBlade2Gripped { get; set; }
 
-         public bool StateInterlock1 { get; set; }
 
-         public bool StateInterlock2 { get; set; }
 
-         public bool StateInterlock3 { get; set; }
 
-         public bool StateInterlock4 { get; set; }
 
-         public bool StateInterlock5 { get; set; }
 
-         public bool StateInterlock6 { get; set; }
 
-         public bool StateInterlock7 { get; set; }
 
-         public bool StateInterlock8 { get; set; }
 
-         public bool Swap { get; set; }
 
-         public Hand PlaceBalde { get; set; }
 
-         public ModuleName Blade1Target
 
-         {
 
-             get;
 
-             set;
 
-         }
 
-         public ModuleName Blade2Target { get; set; }
 
-         //naming follow PM1.A LL1.A PM2.B
 
-         public string CmdBladeTarget { get; set; }
 
-         //naming follow 0 1
 
-         public string CmdBlade1Extend { get; set; }
 
-         //naming follow 0 1
 
-         public string CmdBlade2Extend { get; set; }
 
-         public bool Blade1Enable
 
-         {
 
-             get
 
-             {
 
-                 if (SC.ContainsItem($"{Name}.Blade1Enable"))
 
-                 {
 
-                     return SC.GetValue<bool>($"{Name}.Blade1Enable");
 
-                 }
 
-                 return SC.GetValue<bool>($"Robot.Blade1Enable");
 
-             }
 
-             set
 
-             {
 
-                 if (SC.ContainsItem($"{Name}.Blade1Enable"))
 
-                 {
 
-                     SC.SetItemValue($"{Name}.Blade1Enable", value);
 
-                 }else if (SC.ContainsItem($"Robot.Blade1Enable"))
 
-                 {
 
-                     SC.SetItemValue($"Robot.Blade1Enable", value);
 
-                 }
 
-             }
 
-         }
 
-         public bool Blade2Enable
 
-         {
 
-             get
 
-             {
 
-                 if (SC.ContainsItem($"{Name}.Blade2Enable"))
 
-                 {
 
-                     return SC.GetValue<bool>($"{Name}.Blade2Enable");
 
-                 }
 
-                 return SC.GetValue<bool>($"Robot.Blade2Enable");
 
-             }
 
-             set
 
-             {
 
-                 if (SC.ContainsItem($"{Name}.Blade2Enable"))
 
-                 {
 
-                     SC.SetItemValue($"{Name}.Blade2Enable", value);
 
-                 }
 
-                 else if (SC.ContainsItem($"Robot.Blade2Enable"))
 
-                 {
 
-                     SC.SetItemValue($"Robot.Blade2Enable", value);
 
-                 }
 
-             }
 
-         }
 
-         public int Blade2Slots
 
-         {
 
-             get
 
-             {
 
-                 if (SC.ContainsItem($"{Name}.Blade2Slots"))
 
-                 {
 
-                     return Math.Max(SC.GetValue<int>($"{Name}.Blade2Slots"), 1);
 
-                 }
 
-                 if (SC.ContainsItem($"Robot.Blade2Slots"))
 
-                 {
 
-                     return Math.Max(SC.GetValue<int>($"Robot.Blade2Slots"), 1);
 
-                 }
 
-                 return 1;                 
 
-             }
 
-         }
 
-         public bool Initalized { get; set; }
 
-         public bool Communication
 
-         {
 
-             get
 
-             {
 
-                 return !_commErr;
 
-             }
 
-         }
 
-         public bool Busy
 
-         {
 
-             get { return _backgroundHandler != null || _foregroundHandler != null; }
 
-         }
 
-         public bool Moving
 
-         {
 
-             get { return _backgroundHandler != null; }
 
-         }
 
-         public bool Error
 
-         {
 
-             get
 
-             {
 
-                 return ErrorCode > 0 || _commErr || _exceuteErr;
 
-             }
 
-         }
 
-         public DeviceState State
 
-         {
 
-             get
 
-             {
 
-                 if (!Initalized)
 
-                 {
 
-                     return DeviceState.Unknown;
 
-                 }
 
-                 if (Error)
 
-                 {
 
-                     return DeviceState.Error;
 
-                 }
 
-                 if (Busy)
 
-                     return DeviceState.Busy;
 
-                 return DeviceState.Idle;
 
-             }
 
-         }
 
-         //public string ErrorMessage
 
-         //{
 
-         //    get
 
-         //    {
 
-         //        return _factory.GetError(LastErrorCode);
 
-         //    }
 
-         //}
 
-       
 
-         public bool WaferOnBlade1 { get { return (Status & (int)StateBit.WaferOnBlade1) > 0; } }
 
-         public bool WaferOnBlade2 { get { return (Status & (int)StateBit.WaferOnBlade2) > 0; } }
 
-         public bool WaferPresentOnBlade1 { get; set; }
 
-         public bool WaferPresentOnBlade2 { get; set; }
 
-         public Hand TransferBlade { 
 
-             get 
 
-             {
 
-                 if (!Blade1Enable) return Hand.Blade2;
 
-                 if (!Blade2Enable) return Hand.Blade1;
 
-                 return Hand.Both;
 
-             }
 
-         }
 
-         
 
-         protected static Object _locker = new Object();
 
-         protected AsyncSocket _socket;
 
-         protected IHandler _eventHandler = null;
 
-         protected IHandler _backgroundHandler = null;  //moving
 
-         protected IHandler _foregroundHandler = null;  //current handler
 
-         private IRobotHandlerFactory _factory = null;
 
-         private DeviceTimer _timerQuery = new DeviceTimer();
 
-         //private int _queryPeriod = 5000;    //ms
 
-         //private bool _queryState = true;
 
-         protected bool _exceuteErr = false;
 
-         protected bool _commErr = false;
 
-         protected string _addr;
 
-         protected RobotType _type = RobotType.SR100;
 
-         private string AlarmRobotError = "RobotError";
 
-         public Robot(string module, string name, string display, string deviceId, string address, RobotType type = RobotType.SR100)
 
-             : base(module, name, display, deviceId)
 
-         {
 
-             _addr = address;
 
-             _socket = new AsyncSocket(address);
 
-             _type = type;
 
-             _socket.OnDataChanged += new AsyncSocket.MessageHandler(OnDataChanged);
 
-             _socket.OnErrorHappened += new AsyncSocket.ErrorHandler(OnErrorHandler);
 
-             Initalized = false;
 
-             WaferManager.Instance.SubscribeLocation(name, 1+ Blade2Slots);
 
-         }
 
-         public Robot(string module, string name,  string address, RobotType type = RobotType.SR100)
 
-             : this(module, name, name, name, address, type)
 
-         {
 
-         }
 
-         public bool Initialize()
 
-         {
 
-             switch (_type)
 
-             {
 
-                 case RobotType.NX100:
 
-                     _factory = new NX100.NX100RobotHandlerFactory(this);
 
-                     break;
 
-                 case RobotType.SR100:
 
-                     _factory = new SR100.SR100RobotHandlerFactory(this);
 
-                     break;
 
-                 case RobotType.MAG7:
 
-                     _factory = new MAG7.Mag7RobotHandlerFactory(this);
 
-                     break;
 
-             }
 
-             ConnectionManager.Instance.Subscribe(Name, this);
 
-             
 
-             Connect();
 
-             DEVICE.Register(String.Format("{0}.{1}", ModuleName.Robot.ToString(), "Init"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 bool ret = Init(out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Initializing");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", ModuleName.Robot.ToString(), "Home"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 bool ret = Home(out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Homing");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", ModuleName.Robot.ToString(), "RobotHome"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 bool ret = Home(out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Homing");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Reset"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 bool ret = Clear(out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Reset");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "RobotReset"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 bool ret = Clear(out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Reset");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Grip"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[0], true);
 
-                 bool ret = Grip(hand,out reason);
 
-                 //bool ret = WaferMapping(ModuleName.LP1, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Grip");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Release"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[0], true);
 
-                 bool ret = Release(hand, out reason);
 
-                 //bool ret = QueryWaferMap(ModuleName.LP1, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Release");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Stop"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 bool ret = Stop(false, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Stopping");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Pick"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 ModuleName chamber = (ModuleName)Enum.Parse(typeof(ModuleName), (string)param[0], true);
 
-                 int slot = int.Parse((string)param[1]);
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[2], true);
 
-                 bool ret = Pick(chamber, slot, hand, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Pick wafer");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Place"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 ModuleName chamber = (ModuleName)Enum.Parse(typeof(ModuleName), (string)param[0], true);
 
-                 int slot = int.Parse((string)param[1]);
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[2], true);
 
-                 bool ret = Place(chamber, slot, hand, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Place wafer");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Exchange"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 ModuleName chamber = (ModuleName)Enum.Parse(typeof(ModuleName), (string)param[0], true);
 
-                 int slot = int.Parse((string)param[1]);
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[2], true);
 
-                 bool ret = Exchange(chamber, slot, hand, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0} {1}", Name, "Swap wafer");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "Goto"), (out string reason, int time, object[] param) =>
 
-             {
 
-                 ModuleName chamber = (ModuleName)Enum.Parse(typeof(ModuleName), (string)param[0], true);
 
-                 int slot = int.Parse((string)param[1]);
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[2], true);
 
-                 Motion next = (Motion)Enum.Parse(typeof(Motion), (string)param[3], true);
 
-                 int x = int.Parse((string)param[4]);
 
-                 int y = int.Parse((string)param[5]);
 
-                 int z = int.Parse((string)param[6]);
 
-                 bool ret = Goto(chamber, slot, next, hand, x,y,z, out reason);
 
-  
 
-                
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0}{1}", Name, "Goto");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             DEVICE.Register(String.Format("{0}.{1}", Name, "BladeEnable"), (out string reason, int time, object[] param) =>
 
-             {    
 
-                 Hand hand = (Hand)Enum.Parse(typeof(Hand), (string)param[0], true);
 
-                 bool bEnable = bool.Parse((string)param[1]);
 
-                 bool ret = Enable(hand, bEnable, out reason);
 
-                 if (ret)
 
-                 {
 
-                     reason = string.Format("{0}{1}", Name, "Disable robot arm");
 
-                     return true;
 
-                 }
 
-                 return false;
 
-             });
 
-             OP.Subscribe($"{Name}.Reconnect", (string cmd, object[] args) =>
 
-             {
 
-                 return Connect();
 
-             });
 
-             DATA.Subscribe($"{Name}.State", () => State);
 
-             DATA.Subscribe($"{Name}.Busy", () => Busy);
 
-             DATA.Subscribe($"{Name}.ErrorCode", () => ErrorCode);
 
-             DATA.Subscribe($"{Name}.Blade1Target", () => Blade1Target);
 
-             DATA.Subscribe($"{Name}.Blade2Target", () => Blade2Target);
 
-             
 
-             DATA.Subscribe($"{Name}.Blade1Enable", () => Blade1Enable);
 
-             DATA.Subscribe($"{Name}.Blade2Enable", () => Blade2Enable);
 
-             DATA.Subscribe($"{Name}.Swap", () => Swap);
 
-             DATA.Subscribe($"{Name}.PlaceBalde", () => PlaceBalde);
 
-             
 
-             DATA.Subscribe($"{Name}.Speed", () => Speed);
 
-             DATA.Subscribe($"{Name}.RobotSpeed", () => Speed.ToString());
 
-             DATA.Subscribe($"{Name}.RobotState", () => State.ToString());
 
-             DATA.Subscribe($"{Name}.Rotation", () => Rotation);
 
-             DATA.Subscribe($"{Name}.Extension", () => Extension);
 
-             DATA.Subscribe($"{Name}.Wrist1", () => Wrist1);
 
-             DATA.Subscribe($"{Name}.Wrist2", () => Wrist2);
 
-             DATA.Subscribe($"{Name}.Evevation", () => Evevation);
 
-             DATA.Subscribe($"{Name}.CmdBladeTarget", () => CmdBladeTarget);
 
-             DATA.Subscribe($"{Name}.CmdBlade1Extend", () => CmdBlade1Extend);
 
-             DATA.Subscribe($"{Name}.CmdBlade2Extend", () => CmdBlade2Extend);
 
-  
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotBusy", () => Busy);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotError", () => ErrorCode);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotBlade1Traget", () => Blade1Target);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotBlade2Traget", () => Blade2Target);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotBlade1Enabled", () => Blade1Enable);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotBlade2Enabled", () => Blade2Enable);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotSwap", () => Swap);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotSwapPlaceBalde", () => PlaceBalde);
 
-  
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotPosRotationAxis", () => Rotation);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotPosExtensionAxis", () => Extension);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotPosWrist1Axis", () => Wrist1);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotPosWrist2Axis", () => Wrist2);
 
-             DATA.Subscribe(ModuleName.Robot.ToString(), "RobotPosEvevationAxis", () => Evevation);
 
-             DATA.Subscribe($"{Name}.CommunicationStatus", () => _socket == null ? false : _socket.IsConnected);
 
-             EV.Subscribe(new EventItem("Event", AlarmRobotError, "Robot error", EventLevel.Alarm, Aitex.Core.RT.Event.EventType.HostNotification));
 
-             Reset();
 
-             string str = string.Empty;
 
-             _eventHandler = _factory.Event();
 
-             return true;
 
-         }
 
-         public void Terminate()
 
-         {
 
-         }
 
-         public void Monitor()
 
-         {
 
-         }
 
-         public void Reset()
 
-         {
 
-             lock (_locker)
 
-             {
 
-                 _foregroundHandler = null;
 
-                 _backgroundHandler = null;
 
-             }
 
-              
 
-             _exceuteErr = false;
 
-             if (_commErr)
 
-             {               
 
-                 Connect();
 
-             }
 
-             Swap = false;
 
-         }
 
-         public bool Enable(Hand hand, bool bEnable, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (hand == Hand.Blade1)
 
-             {
 
-                 Blade2Enable = bEnable;
 
-             }
 
-             else if (hand == Hand.Blade2)
 
-             {
 
-                 Blade2Enable = bEnable;
 
-             }
 
-             else
 
-             {
 
-                 reason = "Can't disable all blade";
 
-                 return false;
 
-             }
 
-             return true;
 
-         }
 
-         public virtual bool Connect()
 
-         {
 
-             _commErr = false;
 
-             _socket.Connect(this._addr);
 
-             return true;
 
-         }
 
-         #region Command
 
-         public bool Init(out string reason)
 
-         {
 
-             lock (_locker)
 
-             {
 
-                 _foregroundHandler = null;
 
-                 _backgroundHandler = null;
 
-             }
 
-             reason = string.Empty;
 
-             return execute(_factory.Init(), out reason);
 
-         }
 
-         public bool Home(out string reason)
 
-         {          
 
-             lock (_locker)
 
-             {
 
-                 _foregroundHandler = null;
 
-                 _backgroundHandler = null;
 
-             }
 
-             reason = string.Empty;
 
-             return execute(_factory.Home(), out reason);
 
-         }
 
-         public bool Grip(Hand hand,out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.Grip(hand), out reason);
 
-         }
 
-         public bool Release(Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.Release(hand), out reason);
 
-         }
 
-         public bool WaferMapping(ModuleName loadport, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.WaferMapping(loadport), out reason);
 
-         }
 
-         public bool QueryWaferMap(ModuleName loadport, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.QueryWaferMap(loadport), out reason);
 
-         }
 
-         public bool QueryState(out string reason)
 
-         {  
 
-             reason = string.Empty;
 
-             return execute(_factory.QueryState(), out reason);
 
-         }
 
-         public bool QueryPosition(out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.QueryPosition(), out reason);
 
-         }
 
-         public bool Clear(out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.Clear(), out reason);
 
-         }
 
-  
 
-         public bool Stop(bool isEmergency, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             lock (_locker)
 
-             {
 
-                 _foregroundHandler = null;
 
-                 _backgroundHandler = null;
 
-             }
 
-             return execute(_factory.Stop(isEmergency), out reason);
 
-         }
 
-         public bool Resume( out string reason)
 
-         {
 
-             reason = string.Empty;
 
-  
 
-             return execute(_factory.Resume(), out reason);
 
-         }
 
-         public bool SetSpeed(int speed, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.SetSpeed(speed), out reason);
 
-         }
 
-         public bool SetCommunication( out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.SetCommunication(), out reason);
 
-         }
 
-         public bool SetLoad(Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.SetLoad(hand), out reason);
 
-         }
 
-         public bool CheckLoad(ModuleName chamber, int slot, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.CheckLoad(chamber, slot), out reason);
 
-         }
 
-         public bool RequestWaferPresent( out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             return execute(_factory.RequestWaferPresent(), out reason);
 
-         }
 
-         public bool Goto(ModuleName chamber, int slot, Motion motion,Hand hand, int x, int y, int z,out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Pick invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if(hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {                    
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Pick invalid parameter, double pick,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.Goto( chamber, slot, motion, hand, x,y,z), out reason);
 
-         }
 
-         public bool MoveTo(ModuleName chamber, int slot, Hand hand, bool isPick, int x, int y, int z,out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Pick invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if(hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {                    
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Pick invalid parameter, double pick,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.MoveTo( chamber, slot, hand, isPick, x,y,z), out reason);
 
-         }
 
- 		
 
-         public bool Extend(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Extend invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Extend invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Extend invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Extend invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Extend invalid parameter, double pick,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.Extend(chamber, slot, hand), out reason);
 
-         }
 
-         public bool Retract(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Retract invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Retract invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Retract invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Retract invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Retract invalid parameter, double pick,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.Retract(chamber, slot, hand), out reason);
 
-         }
 
-         public bool PickExtend(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber.ToString() == Name || chamber == ModuleName.System || ModuleHelper.IsLoadPort(chamber) || ModuleHelper.IsBuffer(chamber))
 
-             {
 
-                 reason = $"Pick extend target not support, chamber is {chamber.ToString()}, slot is {slot}";
 
-                 return false;
 
-             }
 
-             if (hand == Hand.Both)
 
-             {
 
-                 reason = string.Format("Pick extend invalid parameter, do not support double arm extend ,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             return execute(_factory.PickExtend(chamber, slot, hand), out reason);
 
-         }
 
-         public bool PickRetract(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber.ToString() == Name || chamber == ModuleName.System || ModuleHelper.IsLoadPort(chamber) || ModuleHelper.IsBuffer(chamber))
 
-             {
 
-                 reason = $"Pick retract target not support, chamber is {chamber.ToString()}, slot is {slot}";
 
-                 return false;
 
-             }
 
-             if (hand == Hand.Both)
 
-             {
 
-                 reason = string.Format("Pick retract invalid parameter, do not support double arm retract ,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             return execute(_factory.PickRetract(chamber, slot, hand), out reason);
 
-         }
 
-         public bool Pick(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Pick invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else if(ModuleHelper.IsBuffer(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 6 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 6 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 6, slot))
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Pick invalid parameter, double pick,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-              return execute(_factory.Pick(chamber, slot, hand), out reason);
 
-         }
 
-  
 
-         public bool Place(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Place invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Place invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Place invalid parameter,place, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else if (ModuleHelper.IsBuffer(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 6 - Blade2Slots, slot))   //0-6
 
-                     {
 
-                         reason = string.Format("Place invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 6 - Blade2Slots + 1, slot))   //0 - 6
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 6, slot))
 
-                     {
 
-                         reason = string.Format("Place invalid parameter,place, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Place invalid parameter, double place,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.Place(chamber, slot, hand), out reason);
 
-         }
 
-         public bool PlaceExtend(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber.ToString() == Name || chamber == ModuleName.System || ModuleHelper.IsLoadPort(chamber) || ModuleHelper.IsBuffer(chamber))
 
-             {
 
-                 reason = $"Place extend target not support, chamber is {chamber.ToString()}, slot is {slot}";
 
-                 return false;
 
-             }
 
-             if (hand == Hand.Both)
 
-             {
 
-                 reason =
 
-                     $"Place extend invalid parameter, do not support double arm extend ,chamber is {chamber.ToString()}, slot is {slot}";
 
-                 return false;
 
-             }
 
-             return execute(_factory.PlaceExtend(chamber, slot, hand), out reason);
 
-         }
 
-         public bool PlaceRetract(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber.ToString() == Name || chamber == ModuleName.System || ModuleHelper.IsLoadPort(chamber) ||ModuleHelper.IsBuffer(chamber) )
 
-             {
 
-                 reason = $"Place retract target not support, chamber is {chamber.ToString()}, slot is {slot}";
 
-                 return false;
 
-             }
 
-             if (hand == Hand.Both)
 
-             {
 
-                 reason =
 
-                     $"Place retract invalid parameter, do not support double arm extend ,chamber is {chamber.ToString()}, slot is {slot}";
 
-                 return false;
 
-             }
 
-             return execute(_factory.PlaceRetract(chamber, slot, hand), out reason);
 
-         }
 
-         public bool Exchange(ModuleName chamber, int slot, Hand hand, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Exchange invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (Blade2Slots > 1)
 
-             {
 
-                 reason = string.Format("this robot don't support exchange operation.");
 
-                 return false;
 
-             }
 
-             if (hand == Hand.Both)
 
-             {
 
-                 reason = string.Format("Exchange invalid parameter,double hand");
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (!checkslot(0, 25, slot))
 
-                 {
 
-                     reason = string.Format("Exchange invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.Exchange(chamber, slot, hand), out reason);
 
-         }
 
-         public bool PickEx(ModuleName chamber, int slot, Hand hand, int x, int y, int z, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Pick invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Pick invalid parameter, double pick,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.PickEx(chamber, slot, hand, x,y,z), out reason);
 
-         }
 
-         public bool PlaceEx(ModuleName chamber, int slot, Hand hand, int x, int y, int z, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Place invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots, slot))   //0-20 | 20,21,22,23,24
 
-                     {
 
-                         reason = string.Format("Place invalid parameter,double hand, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else if (hand == Hand.Blade2)
 
-                 {
 
-                     if (!checkslot(0, 25 - Blade2Slots + 1, slot))   //0 - 21| 21,22,23,24
 
-                     {
 
-                         reason = string.Format("Pick invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-                 else
 
-                 {
 
-                     if (!checkslot(0, 25, slot))
 
-                     {
 
-                         reason = string.Format("Place invalid parameter,place, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                         return false;
 
-                     }
 
-                 }
 
-             }
 
-             else
 
-             {
 
-                 if (hand == Hand.Both)
 
-                 {
 
-                     reason = string.Format("Place invalid parameter, double place,chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.PlaceEx(chamber, slot, hand,x,y,z), out reason);
 
-         }
 
-         
 
-         public bool ExchangeEx(ModuleName chamber, int slot, Hand hand, int x, int y, int z, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             if (chamber == ModuleName.Robot)
 
-             {
 
-                 reason = string.Format("Exchange invalid parameter, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                 return false;
 
-             }
 
-             if (Blade2Slots > 1)
 
-             {
 
-                 reason = string.Format("this robot don't support exchange operation.");
 
-                 return false;
 
-             }
 
-             if (hand == Hand.Both)
 
-             {
 
-                 reason = string.Format("Exchange invalid parameter,double hand");
 
-                 return false;
 
-             }
 
-             if (ModuleHelper.IsLoadPort(chamber))
 
-             {
 
-                 if (!checkslot(0, 25, slot))
 
-                 {
 
-                     reason = string.Format("Exchange invalid parameter,pick, chamber is {0}, slot is {1}", chamber.ToString(), slot);
 
-                     return false;
 
-                 }
 
-             }
 
-             return execute(_factory.ExchangeEx(chamber, slot, hand, x, y, z), out reason);
 
-         }
 
-         #endregion
 
-         public virtual bool execute(IHandler handler, out string reason)
 
-         {
 
-             reason = string.Empty;
 
-             lock (_locker)
 
-             {
 
-                 if (_foregroundHandler != null)
 
-                 {
 
-                     reason = "System busy, please wait or reset system.";
 
-                     EV.PostMessage(Name, EventEnum.DefaultWarning, string.Format("{0} {1} {2}", this.DeviceID, handler.ToString(), reason));
 
-                     return false;
 
-                 }
 
-                 if (_backgroundHandler != null && handler.IsBackground)
 
-                 {
 
-                     reason = "System busy,one background command is running, please wait or reset system.";
 
-                     EV.PostMessage(Name, EventEnum.DefaultWarning, string.Format("{0} {1} {2}", this.DeviceID, handler.ToString(), reason)); reason = "系统忙,后台命令正在处理,暂时不能处理新的后台命令";
 
-                     return false;
 
-                 }
 
-                 handler.Unit = (int)Unit.Robot;
 
-                 if(!handler.Execute(ref _socket))
 
-                 {
 
-                     reason = "Communication error,please check it.";
 
-                     return false;
 
-                 }
 
-                 if (handler.IsBackground)
 
-                     _backgroundHandler = handler;
 
-                 else
 
-                     _foregroundHandler = handler;
 
-             }
 
-             return true;
 
-         }
 
-         public virtual void OnDataChanged(string package)
 
-         {
 
-             try
 
-             {
 
-                 if (!package.Contains("Gb") && !package.Contains("Pb"))
 
-                     package = package.ToUpper();
 
-                 string[] msgs = Regex.Split(package, delimiter);
 
-                 foreach (string msg in msgs)
 
-                 {
 
-                     if (msg.Length > 0)
 
-                     {
 
-                         bool completed = false;
 
-                         string resp = msg;
 
-                         lock (_locker)
 
-                         {
 
-                             if (_foregroundHandler != null && _foregroundHandler.OnMessage(ref _socket, resp, out completed))
 
-                             {
 
-                                 _foregroundHandler = null;
 
-                             }
 
-                             else if (_backgroundHandler != null && _backgroundHandler.OnMessage(ref _socket, resp, out completed))
 
-                             {
 
-                                 if (completed)
 
-                                 {
 
-                                     string reason = string.Empty;
 
-                                     QueryState(out reason);
 
-                                     _backgroundHandler = null;
 
-                                 }
 
-                             }
 
-                             else
 
-                             {
 
-                                 if (_eventHandler != null)
 
-                                 {
 
-                                     if (_eventHandler.OnMessage(ref _socket, resp, out completed))
 
-                                     {
 
-                                         if (completed)
 
-                                         {
 
-                                             EV.PostMessage("Robot", EventEnum.DefaultWarning, string.Format(" has error. {0:X}", ErrorCode));
 
-                                             _exceuteErr = true;
 
-                                         }
 
-                                     }
 
-                                 }
 
-                             }
 
-                         }
 
-                     }
 
-                 }
 
-             }
 
-             catch (ExcuteFailedException e)
 
-             {
 
-                 EV.PostMessage("Robot", EventEnum.DefaultWarning, string.Format("executed failed. {0}",e.Message));
 
-                 OnError();
 
-                 _exceuteErr = false;
 
-             }
 
-             catch (InvalidPackageException e)
 
-             {
 
-                 EV.PostMessage("Robot", EventEnum.DefaultWarning, string.Format("receive invalid package. {0}", e.Message));
 
-                 OnError();
 
-             }
 
-             catch (System.Exception ex)
 
-             {
 
-                 _commErr = true;
 
-                 LOG.WriteExeption("Robot failed:", ex);
 
-             }
 
-         }
 
-         private void OnErrorHandler(ErrorEventArgs args)
 
-         {
 
-             _commErr = true;
 
-             Initalized = false;
 
-             EV.PostMessage(Module, EventEnum.CommunicationError, Display, args.Reason);
 
-             OnError();
 
-         }
 
-         private bool checkslot(int min, int max, int slot)
 
-         {
 
-             return slot >= min && slot < max;
 
-         }
 
-         public void NotifySlotMapResult(ModuleName module, string slotMap)
 
-         {
 
-             if (OnSlotMapRead != null)
 
-             {
 
-                 OnSlotMapRead(module, slotMap);
 
-             }
 
-         }
 
-         public void OnError()
 
-         {
 
-             EV.Notify(AlarmRobotError);
 
-         }
 
- 		
 
-         public void NotifyWaferPresent(Hand hand, WaferStatus status)
 
-         {
 
-             if (status == WaferStatus.Empty)
 
-             {
 
-                 if (hand == Hand.Blade1)
 
-                 {
 
-                     WaferPresentOnBlade1 = status == WaferStatus.Empty;
 
-                 }
 
-                 if (hand == Hand.Blade2)
 
-                 {
 
-                     WaferPresentOnBlade2 = status == WaferStatus.Empty;
 
-                 }
 
-             }
 
-             if (status == WaferStatus.Unknown)
 
-             {
 
-                 EV.PostWarningLog(Module, "Wafer present unknown");
 
-                 return;
 
-             }
 
-             if (hand == Hand.Blade1)
 
-             {
 
-                 WaferPresentOnBlade1 = status == WaferStatus.Normal;
 
-             }
 
-             if (hand == Hand.Blade2)
 
-             {
 
-                 WaferPresentOnBlade2 = status == WaferStatus.Normal;
 
-             }
 
-         }
 
-     }
 
- }
 
-   
 
 
  |