PufMotionViewModel.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. using Aitex.Core.UI.MVVM;
  2. using Aitex.Core.Util;
  3. using Aitex.Core.Utilities;
  4. using ExcelLibrary.BinaryFileFormat;
  5. using MECF.Framework.Common.Beckhoff.AxisProvider;
  6. using MECF.Framework.Common.Beckhoff.IOAxis;
  7. using MECF.Framework.Common.CommonData.PUF;
  8. using MECF.Framework.Common.DataCenter;
  9. using MECF.Framework.Common.OperationCenter;
  10. using MECF.Framework.Common.Utilities;
  11. using CyberX8_Core;
  12. using CyberX8_MainPages.Model;
  13. using CyberX8_MainPages.Unity;
  14. using Prism.Mvvm;
  15. using System;
  16. using System.Collections.Generic;
  17. using System.Linq;
  18. using System.Reflection;
  19. using System.Text;
  20. using System.Threading.Tasks;
  21. using System.Timers;
  22. using System.Windows.Input;
  23. using System.Windows.Threading;
  24. namespace CyberX8_MainPages.ViewModels
  25. {
  26. public class PufMotionViewModel : BindableBase
  27. {
  28. #region 常量
  29. private const string MOTION_DATA = "MotionData";
  30. #endregion
  31. #region 内部变量
  32. #region flip
  33. /// <summary>
  34. /// flip模块名称
  35. /// </summary>
  36. private string _flipModuleName;
  37. /// <summary>
  38. /// 数据
  39. /// </summary>
  40. private CommandMotionData _flipMotionData;
  41. #endregion
  42. #region rotation
  43. /// <summary>
  44. /// rotation模块名称
  45. /// </summary>
  46. private string _rotationModuleName;
  47. /// <summary>
  48. ///
  49. /// </summary>
  50. private CommandMotionData _rotationMotionData;
  51. #endregion
  52. /// <summary>
  53. /// 模块名称
  54. /// </summary>
  55. private string _module = "";
  56. /// <summary>
  57. /// 增加
  58. /// </summary>
  59. private double _incrementValue = 0.01;
  60. /// <summary>
  61. ///
  62. /// </summary>
  63. private PufDistanceData _distanceData;
  64. /// <summary>
  65. /// 定时器
  66. /// </summary>
  67. DispatcherTimer _timer;
  68. /// <summary>
  69. /// RT查询key集合
  70. /// </summary>
  71. private List<string> _rtDataKeys = new List<string>();
  72. /// <summary>
  73. /// rt查询key数值字典
  74. /// </summary>
  75. private Dictionary<string, object> _rtDataValueDic = new Dictionary<string, object>();
  76. #endregion
  77. #region 属性
  78. #region Flip
  79. /// <summary>
  80. /// Filp名称
  81. /// </summary>
  82. public string FlipModuleName
  83. {
  84. get { return _flipModuleName; }
  85. set { SetProperty(ref _flipModuleName, value); }
  86. }
  87. /// <summary>
  88. ///
  89. /// </summary>
  90. public CommandMotionData FlipMotionData
  91. {
  92. get { return _flipMotionData; }
  93. set { SetProperty(ref _flipMotionData, value); }
  94. }
  95. #endregion
  96. #region Rotation
  97. /// <summary>
  98. /// Rotate名称
  99. /// </summary>
  100. public string RotationModuleName
  101. {
  102. get { return _rotationModuleName; }
  103. set { SetProperty(ref _rotationModuleName, value); }
  104. }
  105. public CommandMotionData RotationMotionData
  106. {
  107. get { return _rotationMotionData; }
  108. set { SetProperty(ref _rotationMotionData, value); }
  109. }
  110. #endregion
  111. /// <summary>
  112. /// 模块名称
  113. /// </summary>
  114. public string Module
  115. {
  116. get { return _module; }
  117. set { SetProperty(ref _module, value); }
  118. }
  119. /// <summary>
  120. /// 步进
  121. /// </summary>
  122. public double IncrementValue
  123. {
  124. get { return _incrementValue; }
  125. set { SetProperty(ref _incrementValue, value); }
  126. }
  127. public PufDistanceData DistanceData
  128. {
  129. get { return _distanceData; }
  130. set { SetProperty(ref _distanceData, value); }
  131. }
  132. #endregion
  133. /// <summary>
  134. /// 构造函数
  135. /// </summary>
  136. public PufMotionViewModel()
  137. {
  138. IncrementValue = (double)QueryDataClient.Instance.Service.GetConfig("System.Increment");
  139. FlipMotionData = new CommandMotionData();
  140. RotationMotionData = new CommandMotionData();
  141. }
  142. /// <summary>
  143. /// 加载数据
  144. /// </summary>
  145. public void LoadData(string systemName)
  146. {
  147. Module = systemName;
  148. FlipModuleName = $"{Module}.Flip";
  149. RotationModuleName = $"{Module}.Rotation";
  150. _rtDataKeys.Clear();
  151. _rtDataKeys.Add($"{FlipModuleName}.IsHomed");
  152. _rtDataKeys.Add($"{FlipModuleName}.IsSwitchOn");
  153. _rtDataKeys.Add($"{FlipModuleName}.{MOTION_DATA}");
  154. _rtDataKeys.Add($"{RotationModuleName}.IsHomed");
  155. _rtDataKeys.Add($"{RotationModuleName}.IsSwitchOn");
  156. _rtDataKeys.Add($"{RotationModuleName}.{MOTION_DATA}");
  157. if (_timer == null)
  158. {
  159. _timer = new DispatcherTimer();
  160. _timer.Interval = TimeSpan.FromMilliseconds(100);
  161. _timer.Tick += Timer_Tick; ;
  162. }
  163. _timer.Start();
  164. }
  165. /// <summary>
  166. /// 定时器执行
  167. /// </summary>
  168. /// <param name="sender"></param>
  169. /// <param name="e"></param>
  170. private void Timer_Tick(object sender, EventArgs e)
  171. {
  172. if (_rtDataKeys.Count != 0)
  173. {
  174. _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  175. if (_rtDataValueDic != null)
  176. {
  177. FlipMotionData = CommonFunction.GetValue<CommandMotionData>(_rtDataValueDic, $"{FlipModuleName}.{MOTION_DATA}");
  178. RotationMotionData = CommonFunction.GetValue<CommandMotionData>(_rtDataValueDic, $"{RotationModuleName}.{MOTION_DATA}");
  179. }
  180. }
  181. }
  182. /// <summary>
  183. /// 隐藏
  184. /// </summary>
  185. public void Hide()
  186. {
  187. _timer.Stop();
  188. }
  189. }
  190. }