|
@@ -8,6 +8,7 @@ using MECF.Framework.Simulator.Core.Driver;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.IO;
|
|
|
+using System.Net;
|
|
|
|
|
|
namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
@@ -29,7 +30,11 @@ namespace CyberX8_Simulator.Devices
|
|
|
/// <summary>
|
|
|
/// 数据(DOName - index)
|
|
|
/// </summary>
|
|
|
- private Dictionary<string, FestoDO> _festoNameIndexDic = new Dictionary<string, FestoDO>();
|
|
|
+ public Dictionary<string, FestoDO> FestoNameIndexDic = new Dictionary<string, FestoDO>();
|
|
|
+ /// <summary>
|
|
|
+ /// 数据字典(DOName - value)
|
|
|
+ /// </summary>
|
|
|
+ public Dictionary<string, bool> FestoNameValueDic = new Dictionary<string, bool>();//***********
|
|
|
/// <summary>
|
|
|
/// do 索引对象字典(key-地址索引-bit,value--do名称)
|
|
|
/// </summary>
|
|
@@ -177,9 +182,9 @@ namespace CyberX8_Simulator.Devices
|
|
|
/// <param name="value"></param>
|
|
|
public void UpdataDOBytes(string name, int value)
|
|
|
{
|
|
|
- if (_festoNameIndexDic.ContainsKey(name))
|
|
|
+ if (FestoNameIndexDic.ContainsKey(name))
|
|
|
{
|
|
|
- FestoDO festoDO = _festoNameIndexDic[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);
|
|
@@ -191,11 +196,11 @@ namespace CyberX8_Simulator.Devices
|
|
|
/// <param name="address"></param>
|
|
|
/// <param name="value"></param>
|
|
|
/// <returns></returns>
|
|
|
- private (string, bool) DecodeDOData(ushort address, short value, out bool flag)
|
|
|
+ private (string, bool) DecodeDOData(ushort address, short value, out bool flag, bool check = false)
|
|
|
{
|
|
|
flag = true;
|
|
|
int index = (address - FESTO_DO_START_ADDRESS) * 2;
|
|
|
- if (_festoOutputDataDic[index] == value)
|
|
|
+ if (!check &&_festoOutputDataDic[index] == value)
|
|
|
{
|
|
|
flag = false;
|
|
|
return ("", false);
|
|
@@ -206,6 +211,18 @@ namespace CyberX8_Simulator.Devices
|
|
|
return (_doNameDictionary[str], valueBool);
|
|
|
}
|
|
|
/// <summary>
|
|
|
+ /// 获取当前DO数据
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="doName"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public int GetDOData(string doName)
|
|
|
+ {
|
|
|
+ FestoDO data = FestoNameIndexDic[doName];
|
|
|
+ int result = 0;
|
|
|
+ result = (_festoOutputDataDic[(data.Address - FESTO_DO_START_ADDRESS) * 2] & (short)(1 << data.Bit)) == 0 ? 0 : 1;
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
/// 初始化
|
|
|
/// </summary>
|
|
|
private void InitData(int port)
|
|
@@ -229,7 +246,7 @@ namespace CyberX8_Simulator.Devices
|
|
|
{
|
|
|
foreach (FestoDO item in config.FestoDoes)
|
|
|
{
|
|
|
- _festoNameIndexDic[item.Name] = item;
|
|
|
+ FestoNameIndexDic[item.Name] = item;
|
|
|
string str = $"{item.Address}-{item.Bit}";
|
|
|
_doNameDictionary[str] = item.Name;
|
|
|
}
|