|
@@ -1,7 +1,15 @@
|
|
|
-using MECF.Framework.Common.Net;
|
|
|
+using Aitex.Common.Util;
|
|
|
+using Aitex.Core.RT.Device;
|
|
|
+using Aitex.Core.RT.IOCore;
|
|
|
+using Aitex.Core.Util;
|
|
|
+using MECF.Framework.Common.Device.Festo;
|
|
|
+using MECF.Framework.Common.Net;
|
|
|
using MECF.Framework.Simulator.Core.Driver;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
+using System.IO;
|
|
|
+using System.Net;
|
|
|
+using Xceed.Wpf.Toolkit.PropertyGrid.Attributes;
|
|
|
|
|
|
namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
@@ -23,8 +31,11 @@ namespace CyberX8_Simulator.Devices
|
|
|
/// <summary>
|
|
|
/// 数据(DOName - index)
|
|
|
/// </summary>
|
|
|
- private Dictionary<string, int> _festoNameIndexDic = new Dictionary<string, int>();
|
|
|
-
|
|
|
+ private Dictionary<string, FestoDO> _festoNameIndexDic = new Dictionary<string, FestoDO>();
|
|
|
+ /// <summary>
|
|
|
+ /// do 索引对象字典(key-地址索引-bit,value--do名称)
|
|
|
+ /// </summary>
|
|
|
+ private Dictionary<string, string> _doNameDictionary = new Dictionary<string, string>();
|
|
|
/// <summary>
|
|
|
/// 构造函数
|
|
|
/// </summary>
|
|
@@ -35,7 +46,21 @@ namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
|
_festoOutputDataDic[i] = 0x00;
|
|
|
}
|
|
|
-
|
|
|
+ string oldXmlPath = PathManager.GetCfgDir();
|
|
|
+ string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\FestoControllerCfg-Simulator.xml";
|
|
|
+ FestoControllerCfg cfg = CustomXmlSerializer.Deserialize<FestoControllerCfg>(new FileInfo(newXmlPath));
|
|
|
+ foreach (FestoDeviceConfig config in cfg.FestoDeviceConfigs)
|
|
|
+ {
|
|
|
+ if(port == config.Port)
|
|
|
+ {
|
|
|
+ foreach (FestoDO item in config.FestoDoes)
|
|
|
+ {
|
|
|
+ _festoNameIndexDic[item.Name] = item;
|
|
|
+ string str = $"{item.Address}-{item.Bit}";
|
|
|
+ _doNameDictionary[str] = item.Name;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 解析信息
|
|
@@ -72,9 +97,12 @@ namespace CyberX8_Simulator.Devices
|
|
|
|
|
|
if(startAddress >= FESTO_DO_START_ADDRESS)
|
|
|
{
|
|
|
+ //通知相关数据变化
|
|
|
+ var result = DecodeDOData(startAddress, value);
|
|
|
+ SimulatorCommManager.Instance.CheckDataChanged(result.Item1, result.Item2);
|
|
|
//modbus起始地址n为数据,n+1为诊断数据,取地址n下的数据
|
|
|
- int index = (startAddress - FESTO_DO_START_ADDRESS) * 2;
|
|
|
- _festoOutputDataDic[index] = value;
|
|
|
+ _festoOutputDataDic[(startAddress - FESTO_DO_START_ADDRESS) * 2] = value;
|
|
|
+
|
|
|
OnWriteMessage(CreateWriteResponse(flag, channel, command, startAddress, value));
|
|
|
}
|
|
|
else
|
|
@@ -158,6 +186,34 @@ namespace CyberX8_Simulator.Devices
|
|
|
bytes[8] = error;
|
|
|
return bytes;
|
|
|
}
|
|
|
-
|
|
|
+ /// <summary>
|
|
|
+ /// 更新DI数据
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="name"></param>
|
|
|
+ /// <param name="value"></param>
|
|
|
+ public void UpdataDOBytes(string name, int value)
|
|
|
+ {
|
|
|
+ if (_festoNameIndexDic.ContainsKey(name))
|
|
|
+ {
|
|
|
+ FestoDO festoDO = _festoNameIndexDic[name];
|
|
|
+ short byteValue = (short) (_festoOutputDataDic[(festoDO.Address - FESTO_DO_START_ADDRESS) * 2] & ~(1 << festoDO.Bit));
|
|
|
+ short tmp = (short)(value << festoDO.Bit);
|
|
|
+ _festoOutputDataDic[(festoDO.Address - FESTO_DO_START_ADDRESS) * 2] = (short)(byteValue | tmp);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 解析数据
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="address"></param>
|
|
|
+ /// <param name="value"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ private (string, bool) DecodeDOData(ushort address, short value)
|
|
|
+ {
|
|
|
+ int index = (address - FESTO_DO_START_ADDRESS) * 2;
|
|
|
+ int bitNum = (int)Math.Log(_festoOutputDataDic[index] ^ value, 2);
|
|
|
+ bool valueBool = (value & (1 << bitNum)) != 0 ? true : false;
|
|
|
+ string str = $"{address}-{bitNum}";
|
|
|
+ return (_doNameDictionary[str], valueBool);
|
|
|
+ }
|
|
|
}
|
|
|
}
|