using Aitex.Core.Util; using MECF.Framework.Common.DataCenter; using MECF.Framework.Common.IOCore; using MECF.Framework.Common.OperationCenter; using OpenSEMI.ClientBase.IO; using Prism.Commands; using Prism.Mvvm; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Timers; using System.Windows; using System.Windows.Threading; namespace CyberX8_MainPages.ViewModels { public class BeckhoffIOViewModel : BindableBase { #region 私有属性 private Dictionary> _diMap = new Dictionary>(); private Dictionary> _doMap = new Dictionary>(); private Dictionary> _aiMap = new Dictionary>(); private Dictionary _aoMap = new Dictionary(); private ObservableCollection> m_AIs = new ObservableCollection>(); private ObservableCollection m_AOs = new ObservableCollection(); private ObservableCollection> m_DIs = new ObservableCollection>(); private ObservableCollection> m_DOs = new ObservableCollection>(); #endregion #region 属性 public string ModuleName { get; set; } public ObservableCollection> AIs { get { return m_AIs; } set { SetProperty(ref m_AIs, value); } } public ObservableCollection AOs { get { return m_AOs; } set { SetProperty(ref m_AOs, value); } } public ObservableCollection> DIs { get { return m_DIs; } set { SetProperty(ref m_DIs, value); } } public ObservableCollection> DOs { get { return m_DOs; } set { SetProperty(ref m_DOs, value); } } #endregion #region 命令 private DelegateCommand> _SetDOCommand; public DelegateCommand> SetDOCommand => _SetDOCommand ?? (_SetDOCommand = new DelegateCommand>(SetDO)); private DelegateCommand _SetAOCommand; public DelegateCommand SetAOCommand => _SetAOCommand ?? (_SetAOCommand = new DelegateCommand(SetAO)); #endregion #region 内部变量 private DispatcherTimer _timer; #endregion public BeckhoffIOViewModel() { BuildIoSchema(); } /// /// 定时器执行 /// public void LoadData(string system) { if(_timer==null) { _timer = new DispatcherTimer(); _timer.Interval = TimeSpan.FromSeconds(0.5); _timer.Tick += timer_Tick; } _timer.Start(); } /// /// 停止 /// public void Hide() { if (_timer != null) { _timer.Stop(); } } private void timer_Tick(object sender, EventArgs e) { GetIOs(); } #region 私有方法 public void SetAO(AOItem32 aoItem) { InvokeClient.Instance.Service.DoOperation("System.SetAoValue32", aoItem.Name, aoItem.NewValue); } private void SetDO(IOItem doItem) { InvokeClient.Instance.Service.DoOperation("System.SetDoValue", doItem.Name, !doItem.Value); } public void BuildIoSchema() { List adDataLst = new List() { "System.DIItemList","System.DOItemList","System.AIItemList","System.AOItemList" }; Dictionary datas= QueryDataClient.Instance.Service.PollData(adDataLst); if (DIs.Count == 0) { var itemList = datas["System.DIItemList"]; if (itemList != null) { DIs = new ObservableCollection>(); foreach (var item in (List)itemList) { var io = new IOItem() { Index = item.Index, Name = item.Name, Value = item.BoolValue, Address = item.Address }; DIs.Add(io); _diMap.Add(item.Name, io); } } } if (DOs.Count == 0) { var itemList = datas["System.DOItemList"]; if (itemList != null) { DOs = new ObservableCollection>(); foreach (var item in (List)itemList) { var io = new IOItem() { Index = item.Index, Name = item.Name, Value = item.BoolValue, Address = item.Address }; DOs.Add(io); _doMap.Add(item.Name, io); } } } if (AIs.Count == 0) { var itemList = datas["System.AIItemList"]; if (itemList != null) { AIs = new ObservableCollection>(); foreach (var item in (List)itemList) { var io = new IOItem() { Index = item.Index, Name = item.Name, Value = item.DoubleValue, Address = item.Address }; AIs.Add(io); _aiMap.Add(item.Name, io); } } } if (AOs.Count == 0) { var itemList = datas["System.AOItemList"]; if (itemList != null) { AOs = new ObservableCollection(); foreach (var item in (List)itemList) { var io = new AOItem32() { Index = item.Index, Name = item.Name, Value = item.DoubleValue, Address = item.Address }; AOs.Add(io); _aoMap.Add(item.Name, io); } } } } public void GetIOs() { var diValues = QueryDataClient.Instance.Service.PollData(_diMap.Keys); if (diValues != null) { List keys=_diMap.Keys.ToList(); foreach (string item in keys) { if (diValues.ContainsKey(item)) _diMap[item].Value = (bool)diValues[item]; } } var doValues = QueryDataClient.Instance.Service.PollData(_doMap.Keys); if (doValues != null) { foreach (var item in _doMap) { if (doValues.ContainsKey(item.Key)) _doMap[item.Key].Value = (bool)doValues[item.Key]; } } var aiValues = QueryDataClient.Instance.Service.PollData(_aiMap.Keys); if (aiValues != null) { foreach (var item in _aiMap) { if (aiValues.ContainsKey(item.Key)) _aiMap[item.Key].Value = (double)aiValues[item.Key]; } } var aoValues = QueryDataClient.Instance.Service.PollData(_aoMap.Keys); if (aoValues != null) { foreach (var item in _aoMap) { if (aoValues.ContainsKey(item.Key)) _aoMap[item.Key].Value = (double)aoValues[item.Key]; } } } #endregion } }