123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using System;
- using System.IO;
- using Aitex.Core.RT.Device;
- using Aitex.Core.RT.OperationCenter;
- using Aitex.Core.RT.SCCore;
- using MECF.Framework.Common.Equipment;
- using SorterRT.Modules;
- using Virgo_DRT.Devices;
- namespace Virgo_DRT.Instances
- {
- public class DeviceEntity : DeviceEntityT<DeviceManager>
- {
- public DeviceEntity()
- {
- }
- }
- public class DeviceManager : DeviceManagerBase
- {
- private readonly string device_model_file;
- public DeviceManager()
- {
- device_model_file = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Config\\", RtInstance.DeviceModelFileName);
- }
- public override bool Initialize()
- {
- if (SC.GetValue<bool>("System.PMAIsInstalled"))
- InitPM(ModuleName.PMA);
- if (SC.GetValue<bool>("System.PMBIsInstalled"))
- InitPM(ModuleName.PMB);
- OP.Subscribe("DeviceOperation", this.Invoke);
- return true;
- }
- private void InitPM(ModuleName mod)
- {
- Initialize(device_model_file, RtInstance.SystemName, mod, mod.ToString());
- if (SC.GetValue<int>($"{mod}.Rf.CommunicationType") == (int)CommunicationType.RS232 &&
- SC.GetValue<int>($"{mod}.Rf.MFG") == (int)GeneratorMFG.AdTec)
- {
- AddCustomModuleDevice(new AdTecGenerator(mod));
- }
- if (SC.GetValue<bool>($"{mod}.match.EnableMatch") &&
- SC.GetValue<int>($"{mod}.match.CommunicationType") == (int)CommunicationType.RS232 &&
- SC.GetValue<int>($"{mod}.match.MFG") == (int)MatchMFG.AdTec)
- {
- AddCustomModuleDevice(new AdTecMatch(mod));
- }
- if (SC.GetValue<int>($"{mod}.DryPump.CommunicationType") == (int)CommunicationType.RS232)
- {
- if (SC.GetValue<int>($"{mod}.DryPump.MFG") == (int)DryPumpMFG.SKY)
- {
- AddCustomModuleDevice(new SkyPump(mod));
- }
- else if (SC.GetValue<int>($"{mod}.DryPump.MFG") == (int)DryPumpMFG.Edwards)
- {
- AddCustomModuleDevice(new EdwardsPump(mod));
- }
- }
- AddCustomDevice(new JetPM(mod));
- }
- private bool Invoke(string arg1, object[] args)
- {
- string name = (string)args[0];
- string func = (string)args[1];
- object[] param = new object[args.Length - 2];
- for (int i = 2; i < args.Length; i++)
- param[i - 2] = args[i].ToString();
- DEVICE.Do(string.Format("{0}.{1}", name, func), 0, true, param);
- return true;
- }
- }
- }
|