WagoSocketSimulator.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. using Aitex.Common.Util;
  2. using Aitex.Core.RT.Device;
  3. using Aitex.Core.RT.Log;
  4. using Aitex.Core.Util;
  5. using MECF.Framework.Common.Device.Wago;
  6. using MECF.Framework.Common.Net;
  7. using MECF.Framework.Simulator.Core.Driver;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.IO;
  11. namespace CyberX8_Simulator.Devices
  12. {
  13. public class WagoSocketSimulator : SocketDeviceSimulator
  14. {
  15. private const short WRITE_DO_STARTADDRESS = 0x0200;
  16. private const short WRITE_AO_STARTADDRESS = 0x0200;
  17. //键是名字,值是对应数据所在的位置 注意:要和WagoControlCfg里面的地址顺序对上
  18. public Dictionary<string, int> DONameIndexDic;
  19. public Dictionary<string, int> DINameIndexDic;
  20. public Dictionary<string, int> AINameIndexDic;
  21. public Dictionary<string, int> AONameIndexDic;
  22. private IByteTransform byteTransform = new BigEndianByteTransformBase();
  23. //存储模拟器数据的数组
  24. public byte[] DOBytes = new byte[100];
  25. public short[] AOShorts = new short[50];
  26. public byte[] DIBytes = new byte[100];
  27. public short[] AIShorts = new short[50];
  28. /// <summary>
  29. /// 写DO锁
  30. /// </summary>
  31. private object _writeDOLocker = new object();
  32. /// <summary>
  33. /// 写AO锁
  34. /// </summary>
  35. private object _writeAOLocker = new object();
  36. public WagoSocketSimulator(int port):base(port)
  37. {
  38. SimulatorCommManager.Instance.OnUpdateVariableValueChanged += UpdataDataCausedByOtherModule;
  39. InitializeData(port);
  40. }
  41. private void UpdataDataCausedByOtherModule(string name,bool value)
  42. {
  43. if (AINameIndexDic.ContainsKey(name))
  44. {
  45. switch (name)
  46. {
  47. case "r_LoaderA_LS_Vacuum_anlg":
  48. case "r_LoaderB_LS_Vacuum_anlg":
  49. AIShorts[AINameIndexDic[name]] = value ? (short)0x2AF8 : (short)0x32C8;
  50. break;
  51. case "r_DPUF_A_CHUCK_A_VAC":
  52. case "r_DPUF_A_CHUCK_B_VAC":
  53. AIShorts[AINameIndexDic[name]] = !value ? (short)0x2AF8 : (short)0x32C8;
  54. break;
  55. case "r_LOADERA_BERNOULLI_PRESSURE":
  56. case "r_LOADERB_BERNOULLI_PRESSURE":
  57. case "r_LOADERA_CHUCK_BLADDER":
  58. case "r_LOADERB_CHUCK_BLADDER":
  59. case "r_LOADERA_WS_BLADDER_PRESSURE":
  60. case "r_LOADERB_WS_BLADDER_PRESSURE":
  61. AIShorts[AINameIndexDic[name]] = value ? (short)0x2AF8 : (short)0x00;
  62. break;
  63. default:
  64. break;
  65. }
  66. }
  67. }
  68. /// <summary>
  69. /// 触发Wago对应数据更新
  70. /// </summary>
  71. /// <param name="position"></param>
  72. /// <param name="value"></param>
  73. private void UpdateDataCausedByWago(int position, bool value)
  74. {
  75. if (position == DONameIndexDic["c_PUF_CHUCK"])
  76. {
  77. UpdataDIBytes("r_PUF_A_CHUCK_OUT", value ? 1 : 0);
  78. UpdataDIBytes("r_PUF_B_CHUCK_OUT", value ? 1 : 0);
  79. UpdataDIBytes("r_PUF_A_CHUCK_IN", !value ? 1 : 0);
  80. UpdataDIBytes("r_PUF_B_CHUCK_IN", !value ? 1 : 0);
  81. }
  82. }
  83. /// <summary>
  84. /// 初始化字典
  85. /// </summary>
  86. private void InitializeData(int port) //端口用于初始化不同Wago设备的字典
  87. {
  88. //加载对应配置文件 WagoControllerCfg-Simulator.xml
  89. try
  90. {
  91. string oldXmlPath = PathManager.GetCfgDir();
  92. string newXmlPath = oldXmlPath.Replace("CyberX8_Simulator", "CyberX8_RT") + "Devices\\WagoControllerCfg-Simulator.xml";
  93. WagoControllerCfg cfg = CustomXmlSerializer.Deserialize<WagoControllerCfg>(new FileInfo(newXmlPath));
  94. if (cfg != null)
  95. {
  96. foreach (WagoDeviceConfig config in cfg.WagoDeviceConfigs)
  97. {
  98. if (port == config.Port)
  99. {
  100. //加载DO
  101. int i = 0;
  102. DONameIndexDic = new Dictionary<string, int>();
  103. foreach (var group in config.WagoDigOut.WagoDOGroups)
  104. {
  105. foreach (var item in group.WagoDOs)
  106. {
  107. DONameIndexDic[item.Name] = i;
  108. }
  109. }
  110. //加载DI
  111. i = 0;
  112. DINameIndexDic = new Dictionary<string, int>();
  113. foreach (var group in config.WagoDigIn.WagoDIGroups)
  114. {
  115. foreach(var item in group.WagoDIs)
  116. {
  117. DINameIndexDic[item.Name] = i;
  118. i++;
  119. }
  120. }
  121. //加载AO
  122. i = 0;
  123. AONameIndexDic = new Dictionary<string, int>();
  124. foreach (var group in config.WagoAnoOut.WagoAOGroups)
  125. {
  126. foreach (var item in group.WagoAOs)
  127. {
  128. AONameIndexDic[item.Name] = i;
  129. i++;
  130. }
  131. }
  132. //加载AI
  133. i = 0;
  134. AINameIndexDic = new Dictionary<string, int>();
  135. foreach (var group in config.WagoAnoIn.WagoAIGroups)
  136. {
  137. foreach (var item in group.WagoAIs)
  138. {
  139. AINameIndexDic[item.Name] = i;
  140. i++;
  141. }
  142. }
  143. }
  144. }
  145. }
  146. }
  147. catch
  148. {
  149. LOG.WriteLog(eEvent.ERR_WAGO, "Wago", "Load wago WagoControllerCfg-Simulator.xml failed");
  150. }
  151. //设置IO变量默认值
  152. if(AINameIndexDic.ContainsKey("r_LoaderA_LS_Vacuum_anlg")) AIShorts[AINameIndexDic["r_LoaderA_LS_Vacuum_anlg"]] = 0x32C8;
  153. if(AINameIndexDic.ContainsKey("r_LoaderB_LS_Vacuum_anlg")) AIShorts[AINameIndexDic["r_LoaderB_LS_Vacuum_anlg"]] = 0x32C8;
  154. }
  155. #region 公共方法
  156. public void UpdataDOBytes(string name,int value)
  157. {
  158. if (DONameIndexDic.ContainsKey(name))
  159. {
  160. if (DONameIndexDic[name] < DOBytes.Length)
  161. {
  162. DOBytes[DONameIndexDic[name]] = value == 0 ? (byte)0 : (byte)1;
  163. }
  164. }
  165. }
  166. public void UpdataDIBytes(string name, int value)
  167. {
  168. if (DINameIndexDic.ContainsKey(name))
  169. {
  170. if (DINameIndexDic[name] < DIBytes.Length)
  171. {
  172. DIBytes[DINameIndexDic[name]] = value == 0 ? (byte)0 : (byte)1;
  173. }
  174. }
  175. }
  176. public void UpdataAOShorts(string name, int value)
  177. {
  178. if (AONameIndexDic.ContainsKey(name))
  179. {
  180. string hexValue = value.ToString("X2");
  181. try
  182. {
  183. short result = Convert.ToInt16(hexValue, 16);
  184. if (AONameIndexDic[name] < AOShorts.Length)
  185. {
  186. AOShorts[AONameIndexDic[name]] = result;
  187. }
  188. }
  189. catch (FormatException)
  190. {
  191. }
  192. }
  193. }
  194. public void UpdataAIShorts(string name, int value)
  195. {
  196. if (AINameIndexDic.ContainsKey(name))
  197. {
  198. string hexValue = value.ToString("X2");
  199. try
  200. {
  201. short result = Convert.ToInt16(hexValue, 16);
  202. if(AINameIndexDic[name] < AIShorts.Length)
  203. {
  204. AIShorts[AINameIndexDic[name]] = result;
  205. }
  206. }
  207. catch (FormatException)
  208. {
  209. }
  210. }
  211. }
  212. #endregion
  213. #region 功能方法
  214. /// <summary>
  215. /// 将长度为8的二进制byte数组转成对应十六进制byte值(大端模式)
  216. /// </summary>
  217. /// <param name="byteArray"></param>
  218. /// <returns></returns>
  219. public byte ConvertByteArrayToHex(byte[] byteArray)
  220. {
  221. byte result = 0;
  222. // 先将 byte 数组转换为二进制数
  223. int binaryValue = 0;
  224. for (int i = 0; i < 8; i++)
  225. {
  226. binaryValue |= (byteArray[i] << (7 - i));
  227. }
  228. // 逆转二进制数
  229. int reversedValue = 0;
  230. for (int i = 0; i < 8; i++)
  231. {
  232. reversedValue |= ((binaryValue >> i) & 1) << (7 - i);
  233. }
  234. // 转换为十六进制byte
  235. if (byte.TryParse(reversedValue.ToString("X2"), System.Globalization.NumberStyles.HexNumber, null, out result))
  236. {
  237. return result;
  238. }
  239. return 0;
  240. }
  241. /// <summary>
  242. /// 将short数组转成长度两倍的byte数组
  243. /// </summary>
  244. /// <param name="shortArray"></param>
  245. /// <returns></returns>
  246. private byte[] ConvertShortArrayToByteArray(short[] shortArray)
  247. {
  248. byte[] byteArray = new byte[shortArray.Length * 2];
  249. for (int i = 0; i < shortArray.Length; i++)
  250. {
  251. byte[] tempBytes = BitConverter.GetBytes(shortArray[i]);
  252. Array.Reverse(tempBytes);
  253. Array.Copy(tempBytes, 0, byteArray, i * 2, 2);
  254. }
  255. return byteArray;
  256. }
  257. #endregion
  258. protected override void ProcessUnsplitMessage(byte[] data)
  259. {
  260. byte command = data[7];
  261. if (command == 0x01) //读DO
  262. {
  263. short flag = byteTransform.TransInt16(data, 0);
  264. byte channel = data[6];
  265. short startAddress = byteTransform.TransInt16(data, 8);
  266. short bitCount = byteTransform.TransInt16(data, 10);
  267. byte byteCount = (byte)(bitCount / 8 + 1);
  268. byte[] bytes = new byte[byteCount];
  269. for(int i = 0; i < byteCount;i++)
  270. {
  271. byte[] tempbytes = new byte[8];
  272. Array.Copy(DOBytes,8 * i, tempbytes, 0, 8);
  273. bytes[i] = ConvertByteArrayToHex(tempbytes);
  274. }
  275. OnWriteMessage(CreateReadDigitalResponse(flag, channel, command, byteCount, bytes));
  276. return;
  277. }
  278. else if(command == 0x03)//读AO
  279. {
  280. short flag = byteTransform.TransInt16(data, 0);
  281. byte channel = data[6];
  282. short startAddress = byteTransform.TransInt16(data, 8);
  283. short registerCount = byteTransform.TransInt16(data, 10);
  284. short[] shorts = new short[registerCount];//获取指定寄存器里的内容
  285. Array.Copy(AOShorts, 0, shorts, 0, registerCount);
  286. byte[] bytes = new byte[registerCount * 2];
  287. bytes = ConvertShortArrayToByteArray(shorts); //转入长度为shorts数组长度两倍的bytes数组中
  288. OnWriteMessage(CreateReadAnalogyResponse(flag, channel, command, (byte)registerCount, bytes));
  289. return;
  290. }
  291. else if (command == 0x02)//读DI
  292. {
  293. short flag = byteTransform.TransInt16(data, 0);
  294. byte channel = data[6];
  295. short startAddress = byteTransform.TransInt16(data, 8);
  296. short bitCount = byteTransform.TransInt16(data, 10);
  297. byte byteCount = (byte)(bitCount / 8 + 1);
  298. byte[] bytes = new byte[byteCount];
  299. for (int i = 0; i < byteCount; i++)
  300. {
  301. byte[] tempbytes = new byte[8];
  302. Array.Copy(DIBytes, 8 * i, tempbytes, 0, 8);
  303. bytes[i] = ConvertByteArrayToHex(tempbytes);
  304. }
  305. OnWriteMessage(CreateReadDigitalResponse(flag, channel, command, byteCount, bytes));
  306. return;
  307. }
  308. else if (command == 0x04)//读AI
  309. {
  310. short flag = byteTransform.TransInt16(data, 0);
  311. byte channel = data[6];
  312. short startAddress = byteTransform.TransInt16(data, 8);
  313. short registerCount = byteTransform.TransInt16(data, 10);
  314. short[] shorts = new short[registerCount];//获取指定寄存器里的内容
  315. Array.Copy(AIShorts, 0, shorts, 0, registerCount);
  316. byte[] bytes = new byte[registerCount * 2];
  317. bytes = ConvertShortArrayToByteArray(shorts); //转入长度为shorts数组两倍的bytes数组中
  318. OnWriteMessage(CreateReadAnalogyResponse(flag, channel, command, (byte)registerCount, bytes));
  319. return;
  320. }
  321. else if (command == 0x05)//写DO
  322. {
  323. short startAddress = byteTransform.TransInt16(data, 8);
  324. if (startAddress > 0x03FF || startAddress < WRITE_DO_STARTADDRESS)
  325. {
  326. short flag = byteTransform.TransInt16(data, 0);
  327. byte channel = data[6];
  328. OnWriteMessage(CreateError(flag, channel, command, 0x02)); //地址错误
  329. return;
  330. }
  331. int position = startAddress - WRITE_DO_STARTADDRESS;
  332. bool status = data[10] == 0xFF ? true : false;
  333. lock (_writeDOLocker)
  334. {
  335. DOBytes[position] = status ? (byte)1 : (byte)0;
  336. }
  337. OnWriteMessage(data); //原消息返回
  338. //触发Wago对应数据更新
  339. UpdateDataCausedByWago(position, status);
  340. return;
  341. }
  342. else if (command == 0x06)//写AO
  343. {
  344. short startAddress = byteTransform.TransInt16(data, 8);
  345. if(startAddress > 0x02FF || startAddress < WRITE_AO_STARTADDRESS)
  346. {
  347. short flag = byteTransform.TransInt16(data, 0);
  348. byte channel = data[6];
  349. OnWriteMessage(CreateError(flag, channel, command, 0x02)); //地址错误
  350. return;
  351. }
  352. int position = startAddress - WRITE_AO_STARTADDRESS;
  353. short value = byteTransform.TransInt16(data, 10);
  354. lock (_writeAOLocker)
  355. {
  356. AOShorts[position] = value;
  357. }
  358. OnWriteMessage(data); //原消息返回
  359. return;
  360. }
  361. else
  362. {
  363. short flag = byteTransform.TransInt16(data, 0);
  364. byte channel = data[6];
  365. OnWriteMessage(CreateError(flag, channel, command, 0x01)); //指令错误
  366. return;
  367. }
  368. }
  369. /// <summary>
  370. /// 回复读数字量
  371. /// </summary>
  372. /// <param name="flag"></param>
  373. /// <param name="channel"></param>
  374. /// <param name="command"></param>
  375. /// <param name="byteCount"></param>
  376. /// <param name="values"></param>
  377. /// <returns></returns>
  378. private byte[] CreateReadDigitalResponse(short flag, byte channel, byte command, byte byteCount, byte[] values)
  379. {
  380. byte[] bytes = new byte[7 + 2 + values.Length]; //回复字节长度,前面7个字节固定长度 + functionCode一个字节 + byteCount一个字节+values.length个字节
  381. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  382. bytes[2] = 0x00;
  383. bytes[3] = 0x00;
  384. short dataLength = (short)(3 + values.Length);
  385. Array.Copy(byteTransform.GetBytes(dataLength), 0, bytes, 4, 2);
  386. bytes[6] = channel;
  387. bytes[7] = command;
  388. bytes[8] = byteCount;
  389. Array.Copy(values, 0, bytes, 9, values.Length);
  390. return bytes;
  391. }
  392. /// <summary>
  393. /// 回复读模拟量
  394. /// </summary>
  395. /// <param name="flag"></param>
  396. /// <param name="channel"></param>
  397. /// <param name="command"></param>
  398. /// <param name="registerCount"></param>
  399. /// <param name="values"></param>
  400. /// <returns></returns>
  401. private byte[] CreateReadAnalogyResponse(short flag, byte channel, byte command, byte registerCount, byte[] values)
  402. {
  403. byte[] bytes = new byte[7 + 2 + 2 * registerCount]; //回复字节长度,前面7个字节固定长度 + functionCode一个字节 + byteCount一个字节+registerCount*2个字节(一个寄存器占两个字节)
  404. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  405. bytes[2] = 0x00;
  406. bytes[3] = 0x00;
  407. short dataLength = (short)(3 + 2 * registerCount);
  408. Array.Copy(byteTransform.GetBytes(dataLength), 0, bytes, 4, 2);
  409. bytes[6] = channel;
  410. bytes[7] = command;
  411. bytes[8] = (byte)(2 * registerCount);
  412. Array.Copy(values, 0, bytes, 9, values.Length);
  413. return bytes;
  414. }
  415. /// <summary>
  416. /// 错误回复
  417. /// </summary>
  418. /// <param name="flag"></param>
  419. /// <param name="channel"></param>
  420. /// <param name="command"></param>
  421. /// <param name="error"></param>
  422. /// <returns></returns>
  423. private byte[] CreateError(short flag, byte channel, byte command, byte error)
  424. {
  425. byte[] bytes = new byte[9];
  426. Array.Copy(byteTransform.GetBytes(flag), 0, bytes, 0, 2);
  427. bytes[2] = 0x00;
  428. bytes[3] = 0x00;
  429. bytes[4] = 0x00;
  430. bytes[5] = 0x03;
  431. bytes[6] = channel;
  432. bytes[7] = (byte)(command | 0x80);
  433. bytes[8] = error;
  434. return bytes;
  435. }
  436. }
  437. }