FlyADClientUI.cs 1.54 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Misc;
using System.Windows.Threading;

using FLY.Simulation.Flyad7;
namespace FLYAD7_Simulation_Wpf
{
    public class FlyADClientUI : INotifyPropertyChanged
    {

15
        public int Position { get; set; }
潘栩锋's avatar
潘栩锋 committed
16 17


18
        public int Speed { get; set; }
潘栩锋's avatar
潘栩锋 committed
19 20


21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39

        public int Position2 { get; set; }

        public int Speed2 { get; set; }


        public int AD { get; set; }

        public UInt16 IStatus { get; set; }

        public UInt16 OStatus { get; set; } = 0xf;



        public double TimeSpan1ms { get; set; }


        public int Surplus { get; set; } = 8000;

潘栩锋's avatar
潘栩锋 committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
        private DispatcherTimer timer = new DispatcherTimer();
        private FLYAD7 flyad;
        public FlyADClientUI(FLYAD7 flyad)
        {
            Init(flyad);
        }
        void Init(FLYAD7 flyad)
        {
            this.flyad = flyad;
            timer.Interval = TimeSpan.FromSeconds(0.1);
            timer.Tick += new EventHandler(timer_Tick);
            timer.Start();
        }

        void timer_Tick(object sender, EventArgs e)
        {
            Position = flyad.Position;
            Position2 = flyad.Position2;
            AD = flyad.AD;
            Speed = flyad.Speed;
            Speed2 = flyad.Speed2;
            TimeSpan1ms = flyad.TimeSpan1ms;
            IStatus = flyad.IStatus;
            OStatus = flyad.OStatus;
            Surplus = flyad.Surplus;
        }
        public event PropertyChangedEventHandler PropertyChanged;
    }
}