WagoView.xaml.cs 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. using Aitex.Core.UI.MVVM;
  2. using Aitex.Core.Utilities;
  3. using CyberX8_Simulator.Devices;
  4. using MECF.Framework.Simulator.Core.Commons;
  5. using MECF.Framework.Simulator.Core.Driver;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Collections.ObjectModel;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using System.Windows;
  13. using System.Windows.Controls;
  14. using System.Windows.Data;
  15. using System.Windows.Documents;
  16. using System.Windows.Input;
  17. using System.Windows.Media;
  18. using System.Windows.Media.Imaging;
  19. using System.Windows.Navigation;
  20. using System.Windows.Shapes;
  21. namespace CyberX8_Simulator.Views
  22. {
  23. /// <summary>
  24. /// WagoView.xaml 的交互逻辑
  25. /// </summary>
  26. public partial class WagoView : UserControl
  27. {
  28. public WagoView()
  29. {
  30. InitializeComponent();
  31. this.Loaded += OnViewLoaded;
  32. }
  33. private void OnViewLoaded(object sender, RoutedEventArgs e)
  34. {
  35. (DataContext as TimerViewModelBase)?.Start();
  36. }
  37. }
  38. class WagoViewModel : SocketDeviceViewModel
  39. {
  40. #region 属性
  41. public string Title
  42. {
  43. get { return "Wago Simulator"; }
  44. }
  45. private string _DOSelectedItem;
  46. [IgnorePropertyChange]
  47. public string DOSelectedItem
  48. {
  49. get
  50. {
  51. return _DOSelectedItem;
  52. }
  53. set
  54. {
  55. _DOSelectedItem = value;
  56. }
  57. }
  58. private int _DOInputValue;
  59. [IgnorePropertyChange]
  60. public int DOInputValue
  61. {
  62. get
  63. {
  64. return _DOInputValue;
  65. }
  66. set
  67. {
  68. _DOInputValue = value;
  69. }
  70. }
  71. private int _DOCurrentValue;
  72. [IgnorePropertyChange]
  73. public int DOCurrentValue
  74. {
  75. get
  76. {
  77. return _DOCurrentValue;
  78. }
  79. set
  80. {
  81. _DOCurrentValue = value;
  82. }
  83. }
  84. private string _DISelectedItem;
  85. [IgnorePropertyChange]
  86. public string DISelectedItem
  87. {
  88. get
  89. {
  90. return _DISelectedItem;
  91. }
  92. set
  93. {
  94. _DISelectedItem = value;
  95. }
  96. }
  97. private int _DIInputValue;
  98. [IgnorePropertyChange]
  99. public int DIInputValue
  100. {
  101. get
  102. {
  103. return _DIInputValue;
  104. }
  105. set
  106. {
  107. _DIInputValue = value;
  108. }
  109. }
  110. private int _DICurrentValue;
  111. [IgnorePropertyChange]
  112. public int DICurrentValue
  113. {
  114. get
  115. {
  116. return _DICurrentValue;
  117. }
  118. set
  119. {
  120. _DICurrentValue = value;
  121. }
  122. }
  123. private string _AOSelectedItem;
  124. [IgnorePropertyChange]
  125. public string AOSelectedItem
  126. {
  127. get
  128. {
  129. return _AOSelectedItem;
  130. }
  131. set
  132. {
  133. _AOSelectedItem = value;
  134. }
  135. }
  136. private short _AOInputValue;
  137. [IgnorePropertyChange]
  138. public short AOInputValue
  139. {
  140. get
  141. {
  142. return _AOInputValue;
  143. }
  144. set
  145. {
  146. _AOInputValue = value;
  147. }
  148. }
  149. private int _AOCurrentValue;
  150. [IgnorePropertyChange]
  151. public int AOCurrentValue
  152. {
  153. get
  154. {
  155. return _AOCurrentValue;
  156. }
  157. set
  158. {
  159. _AOCurrentValue = value;
  160. }
  161. }
  162. private string _AISelectedItem;
  163. [IgnorePropertyChange]
  164. public string AISelectedItem
  165. {
  166. get
  167. {
  168. return _AISelectedItem;
  169. }
  170. set
  171. {
  172. _AISelectedItem = value;
  173. }
  174. }
  175. private short _AIInputValue;
  176. [IgnorePropertyChange]
  177. public short AIInputValue
  178. {
  179. get
  180. {
  181. return _AIInputValue;
  182. }
  183. set
  184. {
  185. _AIInputValue = value;
  186. }
  187. }
  188. private int _AICurrentValue;
  189. [IgnorePropertyChange]
  190. public int AICurrentValue
  191. {
  192. get
  193. {
  194. return _AICurrentValue;
  195. }
  196. set
  197. {
  198. _AICurrentValue = value;
  199. }
  200. }
  201. #endregion
  202. public ObservableCollection<string> DONameItems { get; set; }
  203. public ObservableCollection<string> DINameItems { get; set; }
  204. public ObservableCollection<string> AONameItems { get; set; }
  205. public ObservableCollection<string> AINameItems { get; set; }
  206. public ObservableCollection<int> DigitalInputSelected { get; set; }
  207. private WagoSocketSimulator _sim;
  208. public ICommand SetDICommand { get; set; }
  209. public ICommand SetDOCommand { get; set; }
  210. public ICommand SetAICommand { get; set; }
  211. public ICommand SetAOCommand { get; set; }
  212. public ICommand DOSelectionChangedCommand { get; set; }
  213. public ICommand DISelectionChangedCommand { get; set; }
  214. public ICommand AOSelectionChangedCommand { get; set; }
  215. public ICommand AISelectionChangedCommand { get; set; }
  216. public WagoViewModel(string str) : base("WagoViewModel")
  217. {
  218. DOSelectionChangedCommand = new DelegateCommand<object>(DOSelectionChangedAction);
  219. DISelectionChangedCommand = new DelegateCommand<object>(DISelectionChangedAction);
  220. AOSelectionChangedCommand = new DelegateCommand<object>(AOSelectionChangedAction);
  221. AISelectionChangedCommand = new DelegateCommand<object>(AISelectionChangedAction);
  222. SetDOCommand = new DelegateCommand<object>(SetDOAction);
  223. SetAICommand = new DelegateCommand<object>(SetAIAction);
  224. SetAOCommand = new DelegateCommand<object>(SetAOAction);
  225. SetAOCommand = new DelegateCommand<object>(SetAOAction);
  226. int.TryParse(str, out int port);
  227. _sim = new WagoSocketSimulator(port);
  228. Init(_sim);
  229. InitData(port);
  230. }
  231. private void SetDIAction(object obj)
  232. {
  233. _sim.UpdataDIBytes(DISelectedItem, DIInputValue);
  234. DISelectionChangedAction(null);
  235. }
  236. private void SetDOAction(object obj)
  237. {
  238. _sim.UpdataDOBytes(DOSelectedItem, DOInputValue);
  239. DOSelectionChangedAction(null);
  240. }
  241. private void SetAIAction(object obj)
  242. {
  243. _sim.UpdataAIShorts(AISelectedItem, AIInputValue);
  244. AISelectionChangedAction(null);
  245. }
  246. private void SetAOAction(object obj)
  247. {
  248. _sim.UpdataAOShorts(AOSelectedItem, AOInputValue);
  249. AOSelectionChangedAction(null);
  250. }
  251. private void DOSelectionChangedAction(object obj)
  252. {
  253. DOCurrentValue = _sim.DOBytes[_sim.DONameIndexDic[DOSelectedItem]];
  254. }
  255. private void DISelectionChangedAction(object obj)
  256. {
  257. DICurrentValue = _sim.DIBytes[_sim.DINameIndexDic[DISelectedItem]];
  258. }
  259. private void AOSelectionChangedAction(object obj)
  260. {
  261. AOCurrentValue = _sim.AOShorts[_sim.AONameIndexDic[AOSelectedItem]];
  262. }
  263. private void AISelectionChangedAction(object obj)
  264. {
  265. AICurrentValue = _sim.AIShorts[_sim.AINameIndexDic[AISelectedItem]];
  266. }
  267. private void InitData(int port) //端口用于初始化不同Wago设备的字典
  268. {
  269. DigitalInputSelected = new ObservableCollection<int> { 0, 1 };
  270. DONameItems = new ObservableCollection<string>();
  271. foreach (var item in _sim.DONameIndexDic.Keys)
  272. {
  273. DONameItems.Add(item);
  274. }
  275. DINameItems = new ObservableCollection<string>();
  276. foreach (var item in _sim.DINameIndexDic.Keys)
  277. {
  278. DINameItems.Add(item);
  279. }
  280. AONameItems = new ObservableCollection<string>();
  281. foreach (var item in _sim.AONameIndexDic.Keys)
  282. {
  283. AONameItems.Add(item);
  284. }
  285. AINameItems = new ObservableCollection<string>();
  286. foreach (var item in _sim.AINameIndexDic.Keys)
  287. {
  288. AINameItems.Add(item);
  289. }
  290. }
  291. }
  292. }