WdIOTip.xaml.cs 7.04 KB
Newer Older
1 2
using FLY.Thick.Base.Common;
using FLY.Thick.Base.IService;
3
using System;
潘栩锋's avatar
潘栩锋 committed
4
using System.Collections.Generic;
5 6
using System.Collections.ObjectModel;
using System.ComponentModel;
潘栩锋's avatar
潘栩锋 committed
7 8 9 10 11 12 13 14 15 16
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
17
using Unity;
潘栩锋's avatar
潘栩锋 committed
18

潘栩锋's avatar
潘栩锋 committed
19
namespace FLY.Thick.Base.UI
潘栩锋's avatar
潘栩锋 committed
20 21
{
    /// <summary>
潘栩锋's avatar
潘栩锋 committed
22
    /// WdIOTip.xaml 的交互逻辑
潘栩锋's avatar
潘栩锋 committed
23
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
24
    public partial class WdIOTip : FLY.ControlLibrary.WindowBigClose   
潘栩锋's avatar
潘栩锋 committed
25
    {
26 27
        WdIoTipVm viewModel;

潘栩锋's avatar
潘栩锋 committed
28
        public WdIOTip()
潘栩锋's avatar
潘栩锋 committed
29 30 31
        {
            InitializeComponent();
        }
32 33 34 35 36
        
        [InjectionMethod]
        public void Init(IFlyAdIoDefineService iODefineService, ITDGageService gageService) {

            viewModel = new WdIoTipVm();
37
            viewModel.Init(iODefineService, gageService.DynArea);
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
            this.DataContext = viewModel;
        }

    }

    public class WdIoTipVm : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        IFlyAdIoDefineService iODefineService;

        Base.Common.DynArea dynArea;
        public ObservableCollection<FlyAdIoStatus> IStatus { get; } = new ObservableCollection<FlyAdIoStatus>();
        public ObservableCollection<FlyAdIoStatus> OStatus { get; } = new ObservableCollection<FlyAdIoStatus>();

        public WdIoTipVm() { 
        
        }

57
        public void Init(IFlyAdIoDefineService iODefineService, DynArea dynArea)
58
        {
59
            this.dynArea = dynArea;
60 61
            this.iODefineService = iODefineService;

62
            for (int i = 0; i < 12; i++) {
63 64 65 66 67
                IStatus.Add(new FlyAdIoStatus()
                {
                    Number = $"i{i+1}"
                }); 
            };
68
            for (int i = 0; i < 4; i++)
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
            {
                OStatus.Add(new FlyAdIoStatus()
                {
                    Number = $"o{i+1}"
                });
            };

            if (this.iODefineService is FObjBase.FObjServiceClient)
            {
                var client = this.iODefineService as FObjBase.FObjServiceClient;
                if (client.IsConnected)
                {
                    update();
                }
                client.PropertyChanged += Client_PropertyChanged;
            }
            else
            {
                update();
            }

90 91
            Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.IStatus), updateIsOn_In);
            Misc.BindingOperations.SetBinding(dynArea, nameof(dynArea.OStatus), updateIsOn_Out);
92 93 94

        }

95 96 97 98 99 100 101 102 103 104 105 106 107 108
        void updateIsOn_In() 
        {
            for (int i = 0; i < IStatus.Count(); i++)
            {
                IStatus[i].IsOn = !Misc.MyBase.CHECKBIT(dynArea.IStatus, i);
            }
        }
        void updateIsOn_Out()
        {
            for (int i = 0; i < OStatus.Count(); i++)
            {
                OStatus[i].IsOn = !Misc.MyBase.CHECKBIT(dynArea.OStatus, i);
            }
        }
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
        private void Client_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
        {
            var client = this.iODefineService as FObjBase.FObjServiceClient;
            if (e.PropertyName == nameof(FObjBase.FObjServiceClient.IsConnected))
            {
                if (client.IsConnected)
                {
                    update();
                }
            }
        }

        void update()
        {
            iODefineService.GetIODefine((asyncContext, retData) => {

125 126
                var reponse = retData as IODefineCollection;
                if (reponse == null) {
127 128
                    return;
                }
129 130 131
                var list = reponse.List;
                if (list == null || list.Count() == 0)
                    return;
132

133 134
                update(IODefine.IOTYPE.Input, IStatus, reponse.InCount, list);
                update(IODefine.IOTYPE.Output, OStatus, reponse.OutCount, list);
135 136 137

                updateIsOn_In();
                updateIsOn_Out();
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
            }, this);
        }

        void update(
            IODefine.IOTYPE ioType,
            ObservableCollection<FlyAdIoStatus> ioStatus,
            int ioCnt,
            List<IODefine> list) 
        {
            //补够数量
            if (ioStatus.Count() != ioCnt && ioCnt > 0)
            {
                while (ioStatus.Count() > ioCnt)
                {
                    ioStatus.RemoveAt(ioStatus.Count() - 1);
                }
                while (ioStatus.Count() < ioCnt)
                {
                    int i = ioStatus.Count();
                    ioStatus.Add(new FlyAdIoStatus()
158
                    {
159 160
                        Number = $"i{i + 1}"
                    });
161
                }
162
            }
163

164 165 166 167 168 169 170
            //获取中文
            string[] iostatus_desps = new string[ioCnt];

            for (int i = 0; i < list.Count(); i++)
            {
                var ioDefine = list[i];
                if (ioDefine.IoType == ioType)
171
                {
172
                    if (ioDefine.Index < iostatus_desps.Count())
173
                    {
174
                        iostatus_desps[ioDefine.Index] = ioDefine.Description;
175 176
                    }
                }
177
            }
178

179 180 181 182 183 184 185 186 187 188 189 190 191
            //填入
            for (int i = 0; i < iostatus_desps.Count(); i++)
            {
                if (string.IsNullOrEmpty(iostatus_desps[i]))
                {
                    ioStatus[i].Desp = "";
                }
                else
                {
                    ioStatus[i].Desp = iostatus_desps[i];
                }
            }
        }
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
    }
    public class FlyAdIoStatus : INotifyPropertyChanged
    {
        public event PropertyChangedEventHandler PropertyChanged;

        /// <summary>
        /// 编号
        /// </summary>
        public string Number { get; set; }

        /// <summary>
        /// 描述
        /// </summary>
        public string Desp { get; set; }

        /// <summary>
        /// 状态
        /// </summary>
        public bool IsOn { get; set; }

    }

214
    public class WdIoTipVmUt : WdIoTipVm
215 216 217 218
    {
        public WdIoTipVmUt()
        {

219
            for (int i = 0; i < 12; i++)
220 221 222 223 224 225
            {
                IStatus.Add(new FlyAdIoStatus()
                {
                    Number = $"i{i + 1}"
                });
            };
226
            for (int i = 0; i < 4; i++)
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
            {
                OStatus.Add(new FlyAdIoStatus()
                {
                    Number = $"o{i + 1}"
                });
            };

            IStatus[2-1].IsOn = true;
            IStatus[4-1].IsOn = true;

            IStatus[11 - 1].IsOn = true;

            OStatus[4 - 1].IsOn = true;


            IStatus[2 - 1].Desp = "归零信号";
            IStatus[3 - 1].Desp = "正向限位";
            IStatus[4 - 1].Desp = "反向限位";
            IStatus[7 - 1].Desp = "急停 & 手动正转";
            IStatus[8 - 1].Desp = "急停 & 手动反转";

            OStatus[4 - 1].Desp = "报警信号";



        }
潘栩锋's avatar
潘栩锋 committed
253 254
    }
}