12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using Aitex.Core.RT.Device;
- using Aitex.Sorter.Common;
- using MECF.Framework.Common.Equipment;
- using MECF.Framework.Common.SubstrateTrackings;
- using MECF.Framework.RT.EquipmentLibrary.LogicUnits;
- using MECF.Framework.RT.ModuleLibrary.Commons;
- namespace MECF.Framework.RT.ModuleLibrary.TMModules
- {
- public abstract class TMModuleBase : ModuleFsmDevice, ITransferRobot, IModuleDevice
- {
- private int _slot = 2;
- public TMModuleBase(int slot)
- {
- _slot = slot;
- }
- public override bool Initialize()
- {
- WaferManager.Instance.SubscribeLocation(Module, _slot);
- return base.Initialize();
- }
- //IModuleDevice
- public abstract bool IsReady { get; }
- public abstract bool IsError { get; }
- public abstract bool IsInit { get; }
- public abstract bool Home(out string reason);
- //ITransferRobot
- public abstract bool Pick(ModuleName target, Hand blade, int targetSlot, out string reason);
- public abstract bool Place(ModuleName target, Hand blade, int targetSlot, out string reason);
- public abstract bool Pick(ModuleName target, Hand blade, Pan pan, int[] targetSlot, double temp1, double temp2, bool EnableCheck, out string reason);
- public abstract bool Place(ModuleName target, Hand blade, Pan pan, int[] targetSlot, double temp1, double temp2, bool EnableCheck, out string reason);
- public abstract bool PickAndPlace(ModuleName pickTarget, Hand pickHand, Pan pickPan, int[] pickSlot, ModuleName placeTarget, Hand placeHand, Pan placePan, int[] placeSlot, double temp1, double temp2, out string reason);
- public abstract bool Goto(ModuleName target, Hand blade, int[] targetSlot, out string reason, Pan pickPan);
- public abstract bool Map(ModuleName target, out string reason);
- public virtual bool PickAndPlace(ModuleName pickTarget, Hand pickHand, int pickSlot, ModuleName placeTarget, Hand placeHand, int placeSlot, out string reason)
- {
- reason = string.Empty;
- return false;
- }
- public virtual bool Goto(ModuleName target, Hand blade, int targetSlot, out string reason)
- {
- reason = string.Empty;
- return false;
- }
- }
- }
|