123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- using Aitex.Core.UI.MVVM;
- using CyberX8_Core;
- using CyberX8_MainPages.Roles;
- using CyberX8_MainPages.Views;
- using MECF.Framework.Common.ControlDataContext;
- using MECF.Framework.Common.DataCenter;
- using MECF.Framework.Common.Equipment;
- using MECF.Framework.Common.OperationCenter;
- using MECF.Framework.Common.Utilities;
- using OpenSEMI.ClientBase.Command;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using System.Windows.Input;
- using System.Windows.Threading;
- namespace CyberX8_MainPages.ViewModels
- {
- public class RobotCycleViewModel : BindableBase
- {
- #region 内部变量
- /// <summary>
- /// 选择的LP
- /// </summary>
- private ModuleName _selectedLPName = ModuleName.LP1;
- private ModuleName _selectedAlignerName = ModuleName.Aligner1;
- /// <summary>
- /// 选择的Dummy
- /// </summary>
- private ModuleName _selectedDummyName = ModuleName.Dummy1;
- private ModuleName _selectedSrdName = ModuleName.SRD1;
- private ModuleName _selectedPufName = ModuleName.PUF1;
- /// <summary>
- /// 输入的Cycle次数
- /// </summary>
- private int _inPutCycleTimes = 1;
- /// <summary>
- /// Align调整角度度数
- /// </summary>
- private int _inPutAlignDegree = 0;
- /// <summary>
- /// 当前正在执行第几次Cycle
- /// </summary>
- private int _currentCycle;
- /// <summary>
- /// 是否选中dummy
- /// </summary>
- private bool _isDummySelected = false;
- /// <summary>
- /// 是否选中srd
- /// </summary>
- private bool _isSrdSelected = false ;
- /// <summary>
- /// 是否选中puf
- /// </summary>
- private bool _isPufSelected = false;
- #region 系统数据
- /// <summary>
- /// 定时器
- /// </summary>
- DispatcherTimer _timer;
- /// <summary>
- /// 查询后台数据集合
- /// </summary>
- private List<string> _rtDataKeys = new List<string>();
- /// <summary>
- /// rt查询key数值字典
- /// </summary>
- private Dictionary<string, object> _rtDataValueDic = new Dictionary<string, object>();
- #endregion
- #endregion
- #region 属性
- public ModuleName SelectedLPName
- {
- get { return _selectedLPName; }
- set { SetProperty(ref _selectedLPName, value); }
- }
- public ModuleName SelectedAlignerName
- {
- get { return _selectedAlignerName; }
- set { SetProperty(ref _selectedAlignerName, value); }
- }
- public ModuleName SelectedDummyName
- {
- get { return _selectedDummyName; }
- set { SetProperty(ref _selectedDummyName, value); }
- }
- public ModuleName SelectedSrdName
- {
- get { return _selectedSrdName; }
- set { SetProperty(ref _selectedSrdName, value); }
- }
- public ModuleName SelectedPufName
- {
- get { return _selectedPufName; }
- set { SetProperty(ref _selectedPufName, value); }
- }
- public int InPutCycleTimes
- {
- get { return _inPutCycleTimes; }
- set { SetProperty(ref _inPutCycleTimes, value); }
- }
- public int CurrentCycle
- {
- get { return _currentCycle; }
- set { SetProperty(ref _currentCycle, value); }
- }
- public int InPutAlignDegree
- {
- get { return _inPutAlignDegree; }
- set { SetProperty(ref _inPutAlignDegree, value); }
- }
- public bool IsDummySelected
- {
- get { return _isDummySelected; }
- set { SetProperty(ref _isDummySelected, value); }
- }
- public bool IsSrdSelected
- {
- get { return _isSrdSelected; }
- set { SetProperty(ref _isSrdSelected, value); }
- }
- public bool IsPufSelected
- {
- get { return _isPufSelected; }
- set { SetProperty(ref _isPufSelected, value); }
- }
- #endregion
- #region 命令
- public ICommand RobotCycleStartCommand { get; set; }
-
- public ICommand RobotCycleAbortCommand { get; set; }
- public ICommand LPChangeCommand { get; set; }
-
- public ICommand AlignerChangeCommand { get; set; }
-
- public ICommand PufChangeCommand { get; set; }
-
- public ICommand DummyChangeCommand { get; set; }
-
- public ICommand SrdChangeCommand { get; set; }
- #endregion
- /// <summary>
- /// 构造器
- /// </summary>
- public RobotCycleViewModel()
- {
- RobotCycleStartCommand = new DelegateCommand<object>(RobotCycleStartAction);
- RobotCycleAbortCommand = new DelegateCommand<object>(RobotCycleAbortAction);
- LPChangeCommand = new DelegateCommand<object>(LPChangeAction);
- AlignerChangeCommand = new DelegateCommand<object>(AlignerChangeAction);
- PufChangeCommand = new DelegateCommand<object>(PufChangeAction);
- DummyChangeCommand = new DelegateCommand<object>(DummyChangeAction);
- SrdChangeCommand = new DelegateCommand<object>(SrdChangeAction);
- }
- private void RobotCycleStartAction(object param)
- {
- if (!IsDummySelected)
- {
- SelectedDummyName = ModuleName.Unknown;
- }
- if (!IsSrdSelected)
- {
- SelectedSrdName = ModuleName.Unknown;
- }
- if (!IsPufSelected)
- {
- SelectedPufName = ModuleName.Unknown;
- }
- if (!IsDummySelected && !IsSrdSelected)
- {
- MessageBox.Show("Selected at least on module between srd and dummy!");
- return;
- }
- List<string> sequences = new List<string>();
- sequences.Add(SelectedLPName.ToString());
- sequences.Add(SelectedAlignerName.ToString());
- if (SelectedPufName != ModuleName.Unknown)
- {
- sequences.Add(SelectedPufName.ToString());
- }
- if (SelectedSrdName != ModuleName.Unknown)
- {
- sequences.Add(SelectedSrdName.ToString());
- }
- if (SelectedDummyName != ModuleName.Unknown)
- {
- sequences.Add(SelectedDummyName.ToString());
- }
- InvokeClient.Instance.Service.DoOperation($"EFEM.{EfemOperation.RobotCycle}",string.Join("-",sequences), InPutCycleTimes, InPutAlignDegree);
- }
- private void RobotCycleAbortAction(object param)
- {
- InvokeClient.Instance.Service.DoOperation($"{ModuleName.EfemRobot}.{EfemOperation.Abort}");
- }
- private void LPChangeAction(object param)
- {
- if ("LP1".Equals((string)param))
- {
- SelectedLPName = ModuleName.LP1;
- }
- else if ("LP2".Equals((string)param))
- {
- SelectedLPName = ModuleName.LP2;
- }
- else
- {
- SelectedLPName = ModuleName.LP3;
- }
-
- }
- private void AlignerChangeAction(object param)
- {
-
- }
- private void PufChangeAction(object param)
- {
- }
- private void DummyChangeAction(object param)
- {
- if ("Dummy1".Equals((string)param))
- {
- SelectedDummyName = ModuleName.Dummy1;
- }
- else
- {
- SelectedDummyName = ModuleName.Dummy2;
- }
- }
- private void SrdChangeAction(object param)
- {
- if ("SRD1".Equals((string)param))
- {
- SelectedSrdName = ModuleName.SRD1;
- }
- else
- {
- SelectedSrdName = ModuleName.SRD2;
- }
- }
- /// <summary>
- /// 加载数据
- /// </summary>
- public void LoadData(string systemName)
- {
- _rtDataKeys.Clear();
- _rtDataKeys.Add("EFEM.CurrentRobotCycleTime");
- if (_timer == null)
- {
- _timer = new DispatcherTimer();
- _timer.Interval = TimeSpan.FromMilliseconds(200);
- _timer.Tick += Timer_Tick;
- }
- _timer.Start();
- }
- /// <summary>
- /// 定时器执行
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Timer_Tick(object sender, EventArgs e)
- {
- if (_rtDataKeys.Count != 0)
- {
- _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
- if (_rtDataValueDic != null)
- {
- CurrentCycle = CommonFunction.GetValue<int>(_rtDataValueDic, $"EFEM.CurrentRobotCycleTime");
- }
- }
- }
- /// <summary>
- /// 隐藏
- /// </summary>
- public void Hide()
- {
- }
- }
- }
|