/// <summary> /// Connect Combine Body using RS-232C /// </summary> private void CombineBodyConnect() { if (this.BodyReadCheckBox.Checked == false) { this._bodySerialConnect = new CombineBody.SerialConnect( this.BodyPortTxtBox.Text, Convert.ToInt32(this.BodyBaudRateTxtBox.Text), Convert.ToInt32(this.BodyDatabitsTxtBox.Text) ); if (this.BodySaveCheckBox.Checked == true) { this._bodyFile = new CombineBody.File( this.BodySaveCheckBox.Checked, this.BodyReadCheckBox.Checked ); } } else { this._bodyFile = new CombineBody.File( this.BodySaveCheckBox.Checked, this.BodyReadCheckBox.Checked ); } if (this.BodyModelComboBox.SelectedIndex == 0) { this._vy50 = new CombineBody.Vy50(); } if (this.BodyModelComboBox.SelectedIndex == 1) { this._vy446 = new CombineBody.Vy446(); } if (this.BodyWgs84ToCartesianCheckBox.Checked == true) { this.offLineInit = false; this.offLineMapX = 0.0; this.offLineMapY = 0.0; this._cgps = new Cgps(5, 1); this._offLineGraph = new FieldMap.Graph(); this._offLineGraph.CreateGraph(zg2); } }
/// <summary> /// Initialize Combine Body For Client /// </summary> private void InitializeCombineForClient() { if (this.BodyModelComboBox.SelectedIndex == 0) { this._vy50 = new CombineBody.Vy50(); } if (this.BodyModelComboBox.SelectedIndex == 1) { this._vy446 = new CombineBody.Vy446(); } }