RobotCycleViewModel.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. using Aitex.Core.UI.MVVM;
  2. using CyberX8_Core;
  3. using CyberX8_MainPages.Roles;
  4. using CyberX8_MainPages.Views;
  5. using MECF.Framework.Common.ControlDataContext;
  6. using MECF.Framework.Common.DataCenter;
  7. using MECF.Framework.Common.Equipment;
  8. using MECF.Framework.Common.OperationCenter;
  9. using MECF.Framework.Common.Utilities;
  10. using OpenSEMI.ClientBase.Command;
  11. using Prism.Mvvm;
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Collections.ObjectModel;
  15. using System.Linq;
  16. using System.Reflection;
  17. using System.Text;
  18. using System.Threading.Tasks;
  19. using System.Windows.Forms;
  20. using System.Windows.Input;
  21. using System.Windows.Threading;
  22. namespace CyberX8_MainPages.ViewModels
  23. {
  24. public class RobotCycleViewModel : BindableBase
  25. {
  26. #region 内部变量
  27. /// <summary>
  28. /// 选择的LP
  29. /// </summary>
  30. private ModuleName _selectedLPName = ModuleName.LP1;
  31. private ModuleName _selectedAlignerName = ModuleName.Aligner1;
  32. /// <summary>
  33. /// 选择的Dummy
  34. /// </summary>
  35. private ModuleName _selectedDummyName = ModuleName.Dummy1;
  36. private ModuleName _selectedSrdName = ModuleName.SRD1;
  37. /// <summary>
  38. /// 输入的Cycle次数
  39. /// </summary>
  40. private int _inPutCycleTimes = 1;
  41. /// <summary>
  42. /// 当前正在执行第几次Cycle
  43. /// </summary>
  44. private int _currentCycle;
  45. /// <summary>
  46. /// 是否选中dummy
  47. /// </summary>
  48. private bool _isDummySelected = false;
  49. /// <summary>
  50. /// 是否选中srd
  51. /// </summary>
  52. private bool _isSrdSelected = false ;
  53. #region 系统数据
  54. /// <summary>
  55. /// 定时器
  56. /// </summary>
  57. DispatcherTimer _timer;
  58. /// <summary>
  59. /// 查询后台数据集合
  60. /// </summary>
  61. private List<string> _rtDataKeys = new List<string>();
  62. /// <summary>
  63. /// rt查询key数值字典
  64. /// </summary>
  65. private Dictionary<string, object> _rtDataValueDic = new Dictionary<string, object>();
  66. #endregion
  67. #endregion
  68. #region 属性
  69. public ModuleName SelectedLPName
  70. {
  71. get { return _selectedLPName; }
  72. set { SetProperty(ref _selectedLPName, value); }
  73. }
  74. public ModuleName SelectedAlignerName
  75. {
  76. get { return _selectedAlignerName; }
  77. set { SetProperty(ref _selectedAlignerName, value); }
  78. }
  79. public ModuleName SelectedDummyName
  80. {
  81. get { return _selectedDummyName; }
  82. set { SetProperty(ref _selectedDummyName, value); }
  83. }
  84. public ModuleName SelectedSrdName
  85. {
  86. get { return _selectedSrdName; }
  87. set { SetProperty(ref _selectedSrdName, value); }
  88. }
  89. public int InPutCycleTimes
  90. {
  91. get { return _inPutCycleTimes; }
  92. set { SetProperty(ref _inPutCycleTimes, value); }
  93. }
  94. public int CurrentCycle
  95. {
  96. get { return _currentCycle; }
  97. set { SetProperty(ref _currentCycle, value); }
  98. }
  99. public bool IsDummySelected
  100. {
  101. get { return _isDummySelected; }
  102. set { SetProperty(ref _isDummySelected, value); }
  103. }
  104. public bool IsSrdSelected
  105. {
  106. get { return _isSrdSelected; }
  107. set { SetProperty(ref _isSrdSelected, value); }
  108. }
  109. #endregion
  110. #region 命令
  111. public ICommand RobotCycleStartCommand { get; set; }
  112. public ICommand RobotCycleAbortCommand { get; set; }
  113. public ICommand LPChangeCommand { get; set; }
  114. public ICommand AlignerChangeCommand { get; set; }
  115. public ICommand DummyChangeCommand { get; set; }
  116. public ICommand SrdChangeCommand { get; set; }
  117. #endregion
  118. /// <summary>
  119. /// 构造器
  120. /// </summary>
  121. public RobotCycleViewModel()
  122. {
  123. RobotCycleStartCommand = new DelegateCommand<object>(RobotCycleStartAction);
  124. RobotCycleAbortCommand = new DelegateCommand<object>(RobotCycleAbortAction);
  125. LPChangeCommand = new DelegateCommand<object>(LPChangeAction);
  126. AlignerChangeCommand = new DelegateCommand<object>(AlignerChangeAction);
  127. DummyChangeCommand = new DelegateCommand<object>(DummyChangeAction);
  128. SrdChangeCommand = new DelegateCommand<object>(SrdChangeAction);
  129. }
  130. private void RobotCycleStartAction(object param)
  131. {
  132. if (!IsDummySelected)
  133. {
  134. SelectedDummyName = ModuleName.Unknown;
  135. }
  136. if (!IsSrdSelected)
  137. {
  138. SelectedSrdName = ModuleName.Unknown;
  139. }
  140. if(!IsDummySelected && !IsSrdSelected)
  141. {
  142. MessageBox.Show("Selected at least on module between srd and dummy!");
  143. return;
  144. }
  145. InvokeClient.Instance.Service.DoOperation($"EFEM.{EfemOperation.RobotCycle}",SelectedLPName, SelectedAlignerName,SelectedDummyName, SelectedSrdName, InPutCycleTimes);
  146. }
  147. private void RobotCycleAbortAction(object param)
  148. {
  149. InvokeClient.Instance.Service.DoOperation($"EFEM.{EfemOperation.Abort}");
  150. }
  151. private void LPChangeAction(object param)
  152. {
  153. if ("LP1".Equals((string)param))
  154. {
  155. SelectedLPName = ModuleName.LP1;
  156. }
  157. else if ("LP2".Equals((string)param))
  158. {
  159. SelectedLPName = ModuleName.LP2;
  160. }
  161. else
  162. {
  163. SelectedLPName = ModuleName.LP3;
  164. }
  165. }
  166. private void AlignerChangeAction(object param)
  167. {
  168. }
  169. private void DummyChangeAction(object param)
  170. {
  171. if ("Dummy1".Equals((string)param))
  172. {
  173. SelectedDummyName = ModuleName.Dummy1;
  174. }
  175. else
  176. {
  177. SelectedDummyName = ModuleName.Dummy2;
  178. }
  179. }
  180. private void SrdChangeAction(object param)
  181. {
  182. if ("SRD1".Equals((string)param))
  183. {
  184. SelectedSrdName = ModuleName.SRD1;
  185. }
  186. else
  187. {
  188. SelectedSrdName = ModuleName.SRD2;
  189. }
  190. }
  191. /// <summary>
  192. /// 加载数据
  193. /// </summary>
  194. public void LoadData(string systemName)
  195. {
  196. _rtDataKeys.Clear();
  197. _rtDataKeys.Add($"EFEM.CurrentRobotCycleTime");
  198. if (_timer == null)
  199. {
  200. _timer = new DispatcherTimer();
  201. _timer.Interval = TimeSpan.FromMilliseconds(200);
  202. _timer.Tick += Timer_Tick;
  203. }
  204. _timer.Start();
  205. }
  206. /// <summary>
  207. /// 定时器执行
  208. /// </summary>
  209. /// <param name="sender"></param>
  210. /// <param name="e"></param>
  211. private void Timer_Tick(object sender, EventArgs e)
  212. {
  213. if (_rtDataKeys.Count != 0)
  214. {
  215. _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  216. if (_rtDataValueDic != null)
  217. {
  218. CurrentCycle = CommonFunction.GetValue<int>(_rtDataValueDic, $"EFEM.CurrentRobotCycleTime");
  219. }
  220. }
  221. }
  222. /// <summary>
  223. /// 隐藏
  224. /// </summary>
  225. public void Hide()
  226. {
  227. }
  228. }
  229. }