OnInitLcus1_One.cs 1.46 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
using Misc;
using MultiLayout.UiModule;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Unity;

namespace FLY.Thick.Base.UI.OnInit
{
潘栩锋's avatar
潘栩锋 committed
12 13 14
    /// <summary>
    /// LCUS1 USB继电器模块, 监听 单个报警服务 IWarningSystem2Service
    /// </summary>
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
    public class OnInitLcus1_One : IOnInit
    {
        public int Level { get; private set; }

        ParamDictionary paramDictionary;
        LCUS1 lcus1;
        FLY.OBJComponents.IService.IWarningSystem2Service warningService;
        public OnInitLcus1_One(
            ParamDictionary paramDictionary,
            FLY.OBJComponents.IService.IWarningSystem2Service warningService,
            LCUS1 lcus1,
            int lv = 1)
        {
            Level = lv;
            this.lcus1 = lcus1;
            this.paramDictionary = paramDictionary;
            this.warningService = warningService;
        }

        public void OnInit()
        {
            warningService.PropertyChanged += (s, e) =>
            {
                if (e.PropertyName == nameof(warningService.IsRinging))
                {
                    if (this.paramDictionary.GetValue(ParamDistItemKeys.LCUS1_Enable, false))
                    {
                        if (warningService.IsRinging)
                            lcus1.On();
                        else
                            lcus1.Off();
                    }
                }
            };
        }
    }
}