コード例 #1
0
        protected override void MenuItemInitialize()
        {
            DlgPresenter.ShowStatus(Resources.COMMUNICATING);
            Mikuni.ChineseVersion version = new Mikuni.ChineseVersion();

            Task.Factory.StartNew(() =>
            {
                Mikuni protocol = new Mikuni(Resources.Commbox, options);
                string temp     = protocol.GetECUVersion();
                version         = Mikuni.FormatECUVersionForChina(temp);
            }).ContinueWith((t) =>
            {
                if (t.IsFaulted)
                {
                    DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    Back();
                }
                else
                {
                    DlgPresenter.Hide();
                    Items = new ObservableCollection <MenuItem>();
                    Items.Add(new MenuItem(Resources.READ_CURRENT_TROUBLE_CODE,
                                           READ_CURRENT_TROUBLE_CODE_ICON,
                                           READ_CURRENT_TROUBLE_CODE_ICON_S));
                    Items.Add(new MenuItem(Resources.READ_HISTORY_TROUBLE_CODE,
                                           READ_HISTORY_TROUBLE_CODE_ICON,
                                           READ_HISTORY_TROUBLE_CODE_ICON_S));
                    Items.Add(new MenuItem(Resources.READ_DATA_STREAM,
                                           READ_DATA_STREAM_ICON,
                                           READ_DATA_STREAM_ICON_S));
                    Items.Add(new MenuItem(Resources.READ_ECU_VERSION,
                                           READ_ECU_VERSION_ICON,
                                           READ_ECU_VERSION_ICON_S));
                    Items.Add(new MenuItem(Resources.TPS_IDLE_SETTING,
                                           TPS_IDLE_SETTING_ICON,
                                           TPS_IDLE_SETTING_ICON_S));
                    if (version.Hardware.Equals("ECU200-A001D") ||
                        version.Hardware.Equals("ECU200-A002") ||
                        version.Software.Equals("ECU200-A003"))
                    {
                        Items.Add(new MenuItem(Resources.LONG_TERM_LEARN_VALUE_ZONE_INITIALIZATION,
                                               LONG_TERM_LEARNING_VALUE_INITIALIZATION_ICON,
                                               LONG_TERM_LEARNING_VALUE_INITIALIZATION_ICON_S));
                        Items.Add(new MenuItem(Resources.ISC_LEARN_VALUE_INITIALIZATION,
                                               ISC_LEARN_VALUE_INITIALIZATION_ICON,
                                               ISC_LEARN_VALUE_INITIALIZATION_ICON_S));
                    }
                }
            });
        }
コード例 #2
0
ファイル: MikuniPresenter.cs プロジェクト: grtwall/JM.DCJ
        protected virtual void FunctionInitialize()
        {
            FunctionSelected = new Dictionary <string, ProtocolFunc>();
            FunctionSelected[Resources.READ_CURRENT_TROUBLE_CODE] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);
                List <TroubleCode> codes = null;
                Task.Factory.StartNew(() =>
                {
                    Mikuni protocol = new Mikuni(Resources.Commbox, options);
                    codes           = protocol.ReadCurrentTroubleCode();
                }).ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    }
                    else
                    {
                        if (this is HJ125T_16APresenter)
                        {
                            Resources.ChangeTroubleCodeFor16A(codes);
                        }
                        else
                        {
                            Resources.ChangeTroubleCodeForNone16A(codes);
                        }
                        TCPresenter.TroubleCodeList = codes;
                        TCPresenter.Show();
                        DlgPresenter.Hide();
                    }
                });
            };

            FunctionSelected[Resources.READ_HISTORY_TROUBLE_CODE] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);
                List <TroubleCode> codes = null;

                Task.Factory.StartNew(() =>
                {
                    Mikuni protocol = new Mikuni(Resources.Commbox, options);
                    codes           = protocol.ReadHistoryTroubleCode();
                }).ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    }
                    else
                    {
                        if (this is HJ125T_16APresenter)
                        {
                            Resources.ChangeTroubleCodeFor16A(codes);
                        }
                        else
                        {
                            Resources.ChangeTroubleCodeForNone16A(codes);
                        }
                        TCPresenter.TroubleCodeList = codes;
                        TCPresenter.Show();
                        DlgPresenter.Hide();
                    }
                });
            };

            FunctionSelected[Resources.READ_DATA_STREAM] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);
                Resources.LiveDataVector = Database.GetLiveData("Mikuni");
                DSPresenter.Items        = Resources.LiveDataVector.Items;
                Mikuni protocol = null;

                DSPresenter.ProtocolTask = Task.Factory.StartNew(() =>
                {
                    protocol             = new Mikuni(Resources.Commbox, options);
                    DSPresenter.Protocol = protocol;
                    protocol.ReadDataStream(Resources.LiveDataVector);
                });

                DSPresenter.Show();
                DlgPresenter.Hide();

                DSPresenter.ProtocolTask.ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        if (DSPresenter.Protocol != null)
                        {
                            DSPresenter.Protocol.StopReadDataStream();
                            DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, (sender, e) =>
                            {
                                DSPresenter.Back();
                            });
                        }
                    }
                });
            };

            FunctionSelected[Resources.READ_ECU_VERSION] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);
                Mikuni.ChineseVersion version = new Mikuni.ChineseVersion();
                Task.Factory.StartNew(() =>
                {
                    Mikuni protocol = new Mikuni(Resources.Commbox, options);
                    string hex      = protocol.GetECUVersion();
                    version         = Mikuni.FormatECUVersionForChina(hex);
                }).ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    }
                    else
                    {
                        string text = version.Hardware + "\nV" + version.Software;
                        DlgPresenter.ShowFatalBox(text, null);
                    }
                });
            };

            FunctionSelected[Resources.TPS_IDLE_SETTING] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);

                Task.Factory.StartNew(() =>
                {
                    Mikuni protocol = new Mikuni(Resources.Commbox, options);
                    protocol.TPSIdleSetting();
                }).ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    }
                    else
                    {
                        DlgPresenter.ShowFatalBox(Resources.TPS_IDLE_SETTING_SUCCESS, null);
                    }
                });
            };

            FunctionSelected[Resources.LONG_TERM_LEARN_VALUE_ZONE_INITIALIZATION] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);

                Task.Factory.StartNew(() =>
                {
                    Mikuni protocol = new Mikuni(Resources.Commbox, options);
                    protocol.LongTermLearnValueZoneInitialization();
                }).ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    }
                    else
                    {
                        DlgPresenter.ShowFatalBox(Resources.LONG_TERM_LEARN_VALUE_ZONE_INITIALIZATION_SUCCESS, null);
                    }
                });
            };

            FunctionSelected[Resources.ISC_LEARN_VALUE_INITIALIZATION] = () =>
            {
                DlgPresenter.ShowStatus(Resources.COMMUNICATING);

                Task.Factory.StartNew(() =>
                {
                    Mikuni protocol = new Mikuni(Resources.Commbox, options);
                    protocol.ISCLearnValueInitialize();
                }).ContinueWith((t) =>
                {
                    if (t.IsFaulted)
                    {
                        DlgPresenter.ShowFatalBox(t.Exception.InnerException.Message, null);
                    }
                    else
                    {
                        DlgPresenter.ShowFatalBox(Resources.ISC_LEARN_VALUE_INITIALIZATION_SUCCESS, null);
                    }
                });
            };
        }