123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- using Aitex.Core.RT.Device;
- using Aitex.Core.RT.Routine;
- using Aitex.Core.Util;
- using Aitex.Sorter.Common;
- using Aitex.Sorter.RT.EFEMs.Servers;
- using MECF.Framework.Common.Equipment;
- using MECF.Framework.Common.SubstrateTrackings;
- using MECF.Framework.RT.EquipmentLibrary.HardwareUnits.Robot;
- namespace Aitex.Sorter.RT.EFEMs.Tasks
- {
- public class TransferTask : RobotImp, ITask
- {
- public TransferTask()
- {
- }
- public bool Execute(out string result, params string[] args)
- {
- string device = DeviceName.Robot;
- IServerModule entity = GetEntity(device);
- ModuleName source = ModuleName.System;
- int sourceSlot = 1;
- if (!ParseMoveTarget(args[0], out source, out sourceSlot))
- {
- result = PARAM_NG;
- return false;
- }
- Hand placearm = Hand.Blade2;
- if (!ParseMoveArm(args[1], out placearm))
- {
- result = PARAM_NG;
- return false;
- }
- Hand pickarm = Hand.Blade2;
- if (!ParseMoveArm(args[2], out pickarm))
- {
- result = PARAM_NG;
- return false;
- }
- ModuleName destination = ModuleName.System;
- int destinationSlot = 1;
- if (!ParseMoveTarget(args[3], out destination, out destinationSlot))
- {
- result = PARAM_NG;
- return false;
- }
- if (!Check<NoReadyPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<NoInitCompletedPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<NoOriginCompletedPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<VacPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<EMSPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<ErrorPolicy>(device, out result))
- {
- return false;
- }
- if (ModuleHelper.IsLoadPort(source))
- {
- if (!Check<NoWaferMappingCompletedPolicy>(source.ToString(), out result))
- {
- return false;
- }
- }
- if (ModuleHelper.IsLoadPort(destination))
- {
- if (!Check<NoWaferMappingCompletedPolicy>(destination.ToString(), out result))
- {
- return false;
- }
- }
- if (!ModuleHelper.IsLoadLock(destination) && !Singleton<WaferManager>.Instance.CheckNoWafer(destination,destinationSlot - 1))
- {
- result = "WAFER";
- return false;
- }
- if (!ModuleHelper.IsLoadLock(source) && !Singleton<WaferManager>.Instance.CheckHasWafer(source,sourceSlot - 1))
- {
- result = "NONWAF";
- return false;
- }
- if (!Check<BusyPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<HoldPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<RemovePolicy>(device, out result))
- {
- return false;
- }
- if (!Check<MaintenancePolicy>(device, out result))
- {
- return false;
- }
- if (!Check<LinkPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<PowerDownPolicy>(device, out result))
- {
- return false;
- }
- if (!Check<NoWaferMappingCompletedPolicy>(source.ToString(), out result) || !Check<NoWaferMappingCompletedPolicy>(destination.ToString(), out result))
- {
- return false;
- }
- if (!Check<NoPodPolicy>(source.ToString(), out result) || !Check<NoPodPolicy>(destination.ToString(), out result))
- {
- return false;
- }
- if (!Check<ClosePolicy>(source.ToString(), out result) || !Check<ClosePolicy>(destination.ToString(), out result))
- {
- return false;
- }
- //MoveType type = MoveType.Move;
- //MoveOption option = MoveOption)args[1];
- //Hand blade = (Hand)args[2];
- //ModuleName schamber1 = (ModuleName)args[3];
- //int sslot1 = (int)args[4];
- //ModuleName dchamber1 = (ModuleName)args[5];
- //int dslot1 = (int)args[6];
- //ModuleName schamber2 = (ModuleName)args[3];
- //int sslot2 = (int)args[4];
- //ModuleName dchamber2 = (ModuleName)args[5];
- //int dslot2 = (int)args[6];
- //if (type != MoveType.Move)
- //{
- // schamber2 = (ModuleName)args[7];
- // sslot2 = (int)args[8];
- // dchamber2 = (ModuleName)args[9];
- // dslot2 = (int)args[10];
- //}
- object[] parameters = new object[10];
- parameters[0] = MoveType.Move;
- parameters[1] = MoveOption.None;
- parameters[2] = pickarm;
- parameters[3] = source;
- parameters[4] = sourceSlot - 1;
- parameters[5] = destination;
- parameters[6] = destinationSlot - 1;
- Singleton<EfemEntity>.Instance.EfemDevice.InvokeMoveWafer("MoveWafer", parameters);
- return true;
- }
- public bool? Monitor(out string result, params string[] args)
- {
- result = string.Empty;
- if (Singleton<EfemEntity>.Instance.EfemDevice.IsError)
- {
- result = "ERROR";
- return false;
- }
- if (Singleton<EfemEntity>.Instance.EfemDevice.IsIdle &&
- Singleton<EfemEntity>.Instance.EfemDevice.CheckAcked(_token))
- {
- return true;
- }
- return null;
- }
- }
- }
|