|
@@ -1,11 +1,14 @@
|
|
|
-using MECF.Framework.Common.Net;
|
|
|
+using Aitex.Core.RT.Device;
|
|
|
+using MECF.Framework.Common.Net;
|
|
|
using MECF.Framework.Simulator.Core.Driver;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
+using System.Diagnostics.Eventing.Reader;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading;
|
|
|
using System.Threading.Tasks;
|
|
|
+using System.Timers;
|
|
|
|
|
|
namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
@@ -15,14 +18,13 @@ namespace CyberX8_Simulator.Devices
|
|
|
private const short WRITE_AO_STARTADDRESS = 0x0200;
|
|
|
|
|
|
//键是名字,值是对应数据所在的位置 注意:要和WagoControlCfg里面的地址顺序对上
|
|
|
- private Dictionary<string, int> DONameIndexDic = new Dictionary<string, int>
|
|
|
- {{"DO0",0 },{"c_LoaderA_LS_Vacuum",1} };
|
|
|
- private Dictionary<string, int> DINameIndexDic = new Dictionary<string, int>
|
|
|
- {{"r_DRIP_TRAY_FLUID_DETECTION",19 },{"DI1",1} };
|
|
|
- private Dictionary<string, int> AINameIndexDic = new Dictionary<string, int>
|
|
|
- {{"r_LoaderA_LS_Vacuum_anlg",0 },{"AI1",1} };
|
|
|
- private Dictionary<string, int> AONameIndexDic = new Dictionary<string, int>
|
|
|
- {{"AO0",0 },{"AO1",1} };
|
|
|
+ private Dictionary<string, int> DONameIndexDic;
|
|
|
+
|
|
|
+ private Dictionary<string, int> DINameIndexDic;
|
|
|
+
|
|
|
+ private Dictionary<string, int> AINameIndexDic;
|
|
|
+
|
|
|
+ private Dictionary<string, int> AONameIndexDic;
|
|
|
|
|
|
private IByteTransform byteTransform = new BigEndianByteTransformBase();
|
|
|
|
|
@@ -34,8 +36,6 @@ namespace CyberX8_Simulator.Devices
|
|
|
|
|
|
private short[] AIShorts = new short[50];
|
|
|
|
|
|
-
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 写DO锁
|
|
|
/// </summary>
|
|
@@ -47,16 +47,123 @@ namespace CyberX8_Simulator.Devices
|
|
|
|
|
|
public WagoSocketSimulator(int port):base(port)
|
|
|
{
|
|
|
- InitializeData();
|
|
|
- }
|
|
|
-
|
|
|
+ SimulatorCommManager.Instance.OnUpdateVariableValueChanged += UpdataDataCausedByOtherModule;
|
|
|
+ InitializeData(port);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void UpdataDataCausedByOtherModule(string name,bool value)
|
|
|
+ {
|
|
|
+ if (AINameIndexDic.ContainsKey(name))
|
|
|
+ {
|
|
|
+ if (value)
|
|
|
+ {
|
|
|
+ AIShorts[AINameIndexDic[name]] = 0x2710;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ AIShorts[AINameIndexDic[name]] = 0x00;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
/// <summary>
|
|
|
- /// 初始化数组数据
|
|
|
+ /// 初始化字典
|
|
|
/// </summary>
|
|
|
- private void InitializeData()
|
|
|
+ private void InitializeData(int port)
|
|
|
{
|
|
|
- AIShorts[0] = 0x1388;
|
|
|
- }
|
|
|
+ DONameIndexDic = new Dictionary<string, int>
|
|
|
+ {{"c_System_Alarm",0 },
|
|
|
+ {"c_Pole_Red",1},
|
|
|
+ {"c_Pole_Amber",2},
|
|
|
+ {"c_Pole_Green",3},
|
|
|
+ {"c_Pole_Blue",4},
|
|
|
+ {"c_System_Alarm2",5},
|
|
|
+ {"c_BACKSIDE_PRESSURE_TEST",6},
|
|
|
+ {"c_VACUUM_TEST",7},
|
|
|
+ {"DO8",8},
|
|
|
+ {"DO9",9},
|
|
|
+ {"DO10",10},
|
|
|
+ {"DO11",11},
|
|
|
+ {"DO12",12},
|
|
|
+ {"DO13",13},
|
|
|
+ {"DO14",14},
|
|
|
+ {"DO15",15},
|
|
|
+ {"DO16",16},
|
|
|
+ {"DO17",17},
|
|
|
+ {"DO18",18},
|
|
|
+ {"DO19",19},
|
|
|
+ {"DO20",20},
|
|
|
+ {"DO21",21}};
|
|
|
+
|
|
|
+ DINameIndexDic = new Dictionary<string, int>
|
|
|
+ {{"r_Cassette_1_150",0 },
|
|
|
+ {"r_Cassette_1_100",1},
|
|
|
+ {"r_Cassette_1_200",2},
|
|
|
+ {"r_Cassette_2_150",3},
|
|
|
+ {"r_Cassette_2_100",4},
|
|
|
+ {"r_Cassette_2_200",5},
|
|
|
+ {"r_Cassette_3_150",6},
|
|
|
+ {"r_Cassette_3_100",7},
|
|
|
+ {"r_Cassette_3_200",8 },
|
|
|
+ {"r_Dummy_1_150",9},
|
|
|
+ {"r_Dummy_1_100",10},
|
|
|
+ {"r_Dummy_1_200",11},
|
|
|
+ {"r_Dummy_2_150",12},
|
|
|
+ {"r_Dummy_2_100",13},
|
|
|
+ {"r_Dummy_2_200",14},
|
|
|
+ {"DI15",15},
|
|
|
+ {"r_LoaderA_Wafer_Present",16},
|
|
|
+ {"r_LoaderB_Wafer_Present",17},
|
|
|
+ {"r_Cathode_Present",18},
|
|
|
+ {"DI19",19},
|
|
|
+ {"DI20",20},
|
|
|
+ {"DI21",21},
|
|
|
+ {"DI22",22},
|
|
|
+ {"DI23",23},
|
|
|
+ {"DI24",24},
|
|
|
+ {"DI25",25},
|
|
|
+ {"r_LOADERA_CRS_CURTAIN_1",26},
|
|
|
+ {"r_LOADERA_CRS_CURTAIN_2",27},
|
|
|
+ {"r_LOADERA_CRS_CURTAIN_3",28},
|
|
|
+ {"r_LOADERA_CRS_CURTAIN_4",29},
|
|
|
+ {"r_LOADERA_CRS_CURTAIN_5",30},
|
|
|
+ {"r_LOADERA_CRS_CURTAIN_6",31}};
|
|
|
+
|
|
|
+ AINameIndexDic = new Dictionary<string, int>
|
|
|
+ {{"AI1",0 },
|
|
|
+ {"AI2",1},
|
|
|
+ {"AI3",2},
|
|
|
+ {"AI4",3},
|
|
|
+ {"r_LoaderA_LS_Vacuum_anlg",4},
|
|
|
+ {"r_LoaderB_LS_Vacuum_anlg",5},
|
|
|
+ {"AI6",6},
|
|
|
+ {"r_LOADER_GasFlowSensor_FLOW",7},
|
|
|
+ {"r_LOADERA_BERNOULLI_PRESSURE",8},
|
|
|
+ {"r_LOADERB_BERNOULLI_PRESSURE",9},
|
|
|
+ {"r_LOADERA_CHUCK_BLADDER",10},
|
|
|
+ {"r_LOADERB_CHUCK_BLADDER",11},
|
|
|
+ {"r_LOADERA_WS_BLADDER_PRESSURE",12},
|
|
|
+ {"r_LOADERB_WS_BLADDER_PRESSURE",13},
|
|
|
+ {"r_SPUF_VAC",14},
|
|
|
+ {"r_LOADER_GasFlowSensor_VACUUM",15},};
|
|
|
+
|
|
|
+ AONameIndexDic = new Dictionary<string, int>
|
|
|
+ {{"AO1",0},
|
|
|
+ {"AO2",1},
|
|
|
+ {"AO3",2},
|
|
|
+ {"AO4",3},
|
|
|
+ {"AO5",4},
|
|
|
+ {"AO6",5},
|
|
|
+ {"AO7",6},
|
|
|
+ {"AO8",7},
|
|
|
+ {"AO9",8},
|
|
|
+ {"AO10",9},
|
|
|
+ {"AO11",10},
|
|
|
+ {"AO12",11},
|
|
|
+ {"AO13",12},
|
|
|
+ {"AO14",13},
|
|
|
+ {"AO15",14},
|
|
|
+ {"AO16",15}};
|
|
|
+ }
|
|
|
|
|
|
#region 公共方法
|
|
|
public void UpdataDOBytes(string name,int value)
|