| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221 | 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;namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot{    public enum RobotType    {        SR100,        NX100,        MAG7,    }    public class Robot : BaseDevice, IDevice    {        public event Action<ModuleName, string> OnSlotMapRead;        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 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;        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;            }                       _commErr = false;            _socket.Connect(this._addr);            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}", 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, "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(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;            });            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}.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);            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)            {                _commErr = false;                _socket.Connect(this._addr);            }            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;        }        #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(out string reason)        {            reason = string.Empty;            lock (_locker)            {                _foregroundHandler = null;                _backgroundHandler = null;            }            return execute(_factory.Stop(), 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 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))            {                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))            {                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 (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 (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))            {                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))            {                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);        }        #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));                _exceuteErr = false;            }            catch (InvalidPackageException e)            {                EV.PostMessage("Robot", EventEnum.DefaultWarning, string.Format("recive invalid package. {0}", e.Message));            }            catch (System.Exception ex)            {                _commErr = true;                LOG.Write("Eobot failed:" + ex.ToString());            }        }        private void OnErrorHandler(ErrorEventArgs args)        {            _commErr = true;            Initalized = false;            EV.PostMessage(Module, EventEnum.CommunicationError, Display, args.Reason);            //LOG.Error(string.Format("{0} communication failed,检查通讯连接.{1}", Name, args.Reason));        }        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 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;            }        }    }}  
 |