yangyin
2025-01-13 36616eb44dc36a4e6e3e7a7540310cb850218ea9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
using System.Text;
using System.Linq;
 
namespace DPumpHydr.WinFrmUI.Volute
{
    public partial class MainViewPage
    {
        //步骤控件
        StepTreeDockPanel _stepTreeDockPanel = null;
        /// <summary>
        /// 初始化步骤列表
        /// </summary>
        private void InitialStepNodes()
        {
            if (_ctrlHdrBaseInfo == null)
            {
                _ctrlHdrBaseInfo = new ctrlHdrBaseInfo();
                _ctrlHdrBaseInfo.Name = "ctrlHdrBaseInfo";
                _ctrlHdrBaseInfo.Dock = DockStyle.Right;
                _ctrlHdrBaseInfo.InitialParas();
            }
 
            this.DockStepParaCtrl(_ctrlHdrBaseInfo);
 
            //
            this._stepTreeDockPanel.InitialStepNodes();
        }
 
 
        /// <summary>
        /// 下一步核心
        /// </summary>
        /// <returns></returns>
        private bool GoNextStepCore()
        {
            var currentStepID = this._stepTreeDockPanel.CurrentStepID;
            if (SaveStepParas(currentStepID) == false)
            {
                return false;
            }
 
            //
            var next_step_id = this._stepTreeDockPanel.NextStepID;
            if (currentStepID == this._stepTreeDockPanel.Step_ID_Section18_Full)
            {
                next_step_id = this._stepTreeDockPanel.Step_ID_Outflow_Type;
            }
            if (next_step_id > 0)
            {
                if(currentStepID == this._stepTreeDockPanel.Step_ID_Hdr_Base_Info)
                {
                    #region MyRegion
                    ViewModel.HdrBaseInfo hdrBaseInfo = null;
                    ViewModel.GeomBaseInfo geomBaseInfo = null;
                    string error_info = _ctrlHdrBaseInfo.GetBindingData(ref hdrBaseInfo, ref geomBaseInfo);
                    if (error_info != null)
                    {
                        MessageBox.Show(error_info);
                        return false;
                    }
                    bool isClearAll = false;
                    if (_geomBaseInfo != null)
                    {
                        if (Math.Abs(geomBaseInfo.B3 - _geomBaseInfo.B3) > 1)
                        {
                            isClearAll = true;
                        }
                        if (Math.Abs(geomBaseInfo.D3 - _geomBaseInfo.D3) > 1)
                        {
                            isClearAll = true;
                        }
                    }
                    if (isClearAll)
                    {
                        this._occDesign2dCtrl.ClearAll();
                        this._occDesign3dCtrl.ClearAll();
                    }  
                    #endregion
                }
                if (currentStepID == this._stepTreeDockPanel.Step_ID_Outflow_Type)
                {
                    var outflowType = _ctrlSetOutflowType.GetBindingData();
 
                    this._occDesign3dCtrl.SetOutflowStyle(outflowType);
                    bool isNeedRebuild = this._occDesign2dCtrl.SetOutflowStyle(outflowType);
                    if (isNeedRebuild)
                    {
                        _occDesign2dCtrl.ClearAll();
                        _occDesign3dCtrl.ClearAll();
                        this.RefreshSectShapeWhole18(this._sectionBundleInfo);
                    }
                }
 
 
                this.SetParasCtrl(next_step_id, DPumpHydr.ViewModel.eWizardStepDiretion.前进);
 
                //
                this._stepTreeDockPanel.SetFocusedNode(next_step_id);
            }
 
            return true;
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="step_id"></param>
        /// <returns></returns>
        protected bool SaveStepParas(long step_id)
        {
            #region 获取当前页面参数
            //第一步 
            if (step_id == this._stepTreeDockPanel.Step_ID_Hdr_Base_Info)
            {
                ViewModel.HdrBaseInfo hdrBaseInfo = null;
                ViewModel.GeomBaseInfo geomBaseInfo = null;
                string error_info = _ctrlHdrBaseInfo.GetBindingData(ref hdrBaseInfo, ref geomBaseInfo);
                if (error_info != null)
                {
                    MessageBox.Show(error_info);
                    return false;
                }
                if (geomBaseInfo == null || hdrBaseInfo == null)
                    return false;
                _ctrlHdrBaseInfo.SaveHistoryParas(hdrBaseInfo, geomBaseInfo);
 
                _hdrBaseInfo = hdrBaseInfo;
                _hdrBaseInfo.CalcNs();
 
                _geomBaseInfo = geomBaseInfo;
 
                if (_sectionBundleInfo != null)
                {//时时保持同步
                    _sectionBundleInfo.BaseWidth = _geomBaseInfo.B3;
                    _sectionBundleInfo.BaseCircleRadius = _geomBaseInfo.D3 / 2;
                }
 
 
                return true;
            }
            //第二步  
            if (step_id == this._stepTreeDockPanel.Step_ID_Section18_Full)
            {
                string error_info;
                var sectionBaseInfo = _ctrlSectionBundleInfo.GetBindingData(out error_info);
                if (sectionBaseInfo == null)
                {
                    MessageBox.Show(error_info);
                    return false;
                }
                _sectionBundleInfo = sectionBaseInfo;
 
                return true;
            }
            //1-8断面进行下一步点击
            if (step_id == this._stepTreeDockPanel.Step_ID_Section18_Grp)
            {
                //string error_info;
                //var sectionShapeInfo18 = _ctrlSectionShapeInfo18.GetBindingData(out error_info);
                //if (sectionShapeInfo18 == null)
                //{
                //    MessageBox.Show(error_info);
                //    return false;
                //}
                //if (!sectionShapeInfo18.Verify(out error_info))
                //{
                //    MessageBox.Show(error_info);
                //    return false;
                //}
                //_sectionShapePara = sectionShapeInfo18;
                //_sectionShapePara.CalcHeightByArea(_sectionBaseInfo.ShapeType);
                //_sectionBaseInfo.EditSingleShape(_sectionShapePara, _currentSectIndex);
                //if (_currentSectIndex != 9)
                //{
                //    _currentSectIndex--;
                //}
                //_sectionShapePara.Initialparameters(_currentSectIndex, _sectionBaseInfo);
 
                return true;
            }
 
            #endregion
 
 
            return true;
        }
 
        /// <summary>
        /// 上一步核心
        /// </summary>
        /// <returns></returns>
        private bool GoPrevStepCore()
        {
            var currentStepID = this._stepTreeDockPanel.CurrentStepID;
            ParasInfoBaseCtrl paras_ctrl = GetParasCtrl(currentStepID);
            if (paras_ctrl != null && paras_ctrl.IsChangesParas())
            {
                DialogResult result = MessageBox.Show("已经修改过的数据需要保存吗?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
                if (result == DialogResult.OK)
                {
                    if (SaveStepParas(currentStepID) == false)
                    {
                        return false;
                    }
                }
            }
 
            var prev_step_id = this._stepTreeDockPanel.PrevStepID;
            if (currentStepID == this._stepTreeDockPanel.Step_ID_Outflow_Type)
            {
                prev_step_id = this._stepTreeDockPanel.Step_ID_Section18_Full;
            }
 
            if (prev_step_id == 0)
                return false;
 
 
            this.SetParasCtrl(prev_step_id, DPumpHydr.ViewModel.eWizardStepDiretion.后退);
 
            //
            this._stepTreeDockPanel.SetFocusedNode(prev_step_id);
 
 
            return true;
        }
 
        /// <summary>
        /// 生成控件的参数控件
        /// </summary>
        /// <param name="step_id"></param>
        private void SetParasCtrl(long step_id, DPumpHydr.ViewModel.eWizardStepDiretion step_direction)
        {
            Rbtn数据导出STP.Visible = false;
            Rbtn数据导出IGS.Visible = false;
 
 
 
            #region  第1步
            if (step_id == this._stepTreeDockPanel.Step_ID_Hdr_Base_Info)
            {
                if (_ctrlHdrBaseInfo == null)
                {
                    _ctrlHdrBaseInfo = new ctrlHdrBaseInfo();
                    _ctrlHdrBaseInfo.Name = "ctrlHdrBaseInfo";
                }
 
                DockStepParaCtrl(_ctrlHdrBaseInfo);
                this._sectAreaDockPanel.Visible = false;
                return;
            }
            #endregion
 
            #region  第2步 断面总览
            if (step_id == this._stepTreeDockPanel.Step_ID_Section18_Full)
            {
                if (_hdrBaseInfo == null || _geomBaseInfo == null)
                    return;
 
                if (_ctrlSectionBundleInfo == null)
                {
                    _ctrlSectionBundleInfo = new ctrlSectionBundleInfo();
                    _ctrlSectionBundleInfo.Name = "ctrlSectionBaseInfo";
                    _ctrlSectionBundleInfo.OnRefreshShape += RefreshSectShapeWhole18; 
                    _ctrlSectionBundleInfo.OnHightLightSectCurve += HightLightSectCurve;
                }
 
 
                _ctrlSectionBundleInfo.ShowPage(_hdrBaseInfo, _geomBaseInfo, step_direction);
 
                DockStepParaCtrl(_ctrlSectionBundleInfo);
 
                this._occDesign2dCtrl.SetAllSectionCurveVisible(true);
                this._occDesign3dCtrl.SetAllSectionCurveVisible(true);
 
                this._occDesign3dCtrl.SetWaterBodyVisible(false);
                this._occDesign3dCtrl.SetThicknessBodyVisible(false);
 
 
                this._sectAreaDockPanel.RefreshControl();
                this._sectAreaDockPanel.Visible = true;
                return;
            }
            #endregion
 
            #region  第3步 1-8断面
            if (step_id > this._stepTreeDockPanel.Step_ID_Section18_Grp &&
                step_id <= this._stepTreeDockPanel.Step_ID_Section18_Grp + 8)
            {
                if (_sectionBundleInfo == null)
                    return;
                if (_ctrlSectionShapeInfo18 == null)
                {
                    _ctrlSectionShapeInfo18 = new ctrlSectionShapeInfo18();
                    _ctrlSectionShapeInfo18.Name = "ctrlSectionShapeInfo18";
                    _ctrlSectionShapeInfo18.OnRefreshShape += RefreshSectShapeSingle18;
                }
                DockStepParaCtrl(_ctrlSectionShapeInfo18);
                var sect_index = 9 + this._stepTreeDockPanel.Step_ID_Section18_Grp - step_id;
                var shape_info = _sectionBundleInfo.ToSectionShapePara((int)sect_index);
                RefreshSectShapeSingle18(shape_info);
                _ctrlSectionShapeInfo18.SetBindingData(shape_info);
                this._sectAreaDockPanel.RefreshControl();
                this._sectAreaDockPanel.Visible = true;
 
                this._occDesign2dCtrl.SetAllSectionCurveVisible(true);
                this._occDesign3dCtrl.SetAllSectionCurveVisible(true);
 
                return;
            }
 
            #endregion
 
            #region  出水面类型选择
            if (step_id == this._stepTreeDockPanel.Step_ID_Outflow_Type)
            {
                if (_sectionBundleInfo == null)
                    return;
                if (_ctrlSetOutflowType == null)
                {
                    _ctrlSetOutflowType = new ctrlSetOutflowType();
                    _ctrlSetOutflowType.Name = "ctrlSetOutflowType";
                }
                _ctrlSetOutflowType.ShowPage(step_direction);
 
                this._sectAreaDockPanel.Visible = true;
                this._sectAreaDockPanel.RefreshControl();
                DockStepParaCtrl(_ctrlSetOutflowType);
 
 
                return;
            }
            #endregion
 
            #region  出水面参数
            if (step_id == this._stepTreeDockPanel.Step_ID_Outflow_Paras)
            {
                if (_sectionBundleInfo == null)
                    return;
 
                this._occDesign2dCtrl.SetAllSectionCurveVisible(false);
                this._occDesign3dCtrl.SetAllSectionCurveVisible(false);
 
 
                _outflowType = _ctrlSetOutflowType.GetBindingData();
                if (_ctrlSetOutflowParas == null)
                {
                    _ctrlSetOutflowParas = new ctrlSetOutflowParas();
                    _ctrlSetOutflowParas.Name = "ctrlSetOutflowStyle";
                    _ctrlSetOutflowParas.OnRefreshShape2D += RefreshWaterBody2D;
                    _ctrlSetOutflowParas.OnRefreshShape3D += RefreshWaterBody3D;
                    _ctrlSetOutflowParas.OnMoveSectPosi += (sect_index, posi) =>
                    {
                        if (sect_index == 9)
                        {
                            _sect9Posi = posi; 
                            var SectArea9 = this._occDesign3dCtrl.GetSectArea9(_sect9Posi); 
                            this._sectAreaDockPanel.SetArea9(SectArea9);
                        }
                        if (sect_index == 10)
                        {
                            _sect10Posi = posi;
                            var SectArea10 = this._occDesign3dCtrl.GetSectArea10(_sect10Posi);
                            this._sectAreaDockPanel.SetArea10(SectArea10);
                        }
                    };
                    _ctrlSetOutflowParas.InitialParas(_outflowType, _hdrBaseInfo, _geomBaseInfo, _sectionBundleInfo);
                    _ctrlSetOutflowParas.SetSect9Posi(_sect9Posi);
                    _ctrlSetOutflowParas.SetSect10Posi(_sect10Posi); 
                }
                else
                {
                    this._occDesign3dCtrl.SetOutflowStyle(_outflowType);
                    if (this._occDesign2dCtrl.SetOutflowStyle(_outflowType))
                    { 
                    }
                    if (_outflowType == ViewModel.eOutflowStyle.侧面出口_直线连接)
                    {
                        if(_ctrlSetOutflowParas.CurrentOutflowStyle != ViewModel.eOutflowStyle.侧面出口_直线连接)
                        {
                            _occDesign2dCtrl.ClearAll();
                            _occDesign3dCtrl.ClearAll();
                            this.RefreshSectShapeWhole18(this._sectionBundleInfo);
                        }
                    }
                    else
                    {
                        if (_ctrlSetOutflowParas.CurrentOutflowStyle == ViewModel.eOutflowStyle.侧面出口_直线连接)
                        {
                            _occDesign2dCtrl.ClearAll();
                            _occDesign3dCtrl.ClearAll();
                            this.RefreshSectShapeWhole18(this._sectionBundleInfo);
                        }
                    }
                    _ctrlSetOutflowParas.SetBindingData(_outflowType, _hdrBaseInfo, _geomBaseInfo, _sectionBundleInfo);
                }
  
 
 
 
 
 
                _ctrlSetOutflowParas.ShowPage(step_direction);
 
 
                this._sectAreaDockPanel.RefreshControl();
                this._sectAreaDockPanel.Visible = true;
                DockStepParaCtrl(_ctrlSetOutflowParas);
                string error = "";
                _outflowParas = _ctrlSetOutflowParas.GetBindingData(out error);
 
 
                this._occDesign3dCtrl.setWaterBodyOpacity(
             DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.R,
             DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.G,
             DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.B, 256);
                this._occDesign3dCtrl.SetThicknessBodyVisible(false );
 
                return;
            }
            #endregion
 
            #region  加厚
            if (step_id == this._stepTreeDockPanel.Step_ID_jiahout)
            {
                if (_sectionBundleInfo == null)
                    return;
                Rbtn数据导出STP.Visible = true;
                Rbtn数据导出IGS.Visible = true;
 
                this._occDesign2dCtrl.SetAllSectionCurveVisible(false);
                this._occDesign3dCtrl.SetAllSectionCurveVisible(false);
 
                if (_ctrlThicknessParas == null)
                {
                    _ctrlThicknessParas = new ctrlThicknessParas();
                    _ctrlThicknessParas.Name = "ctrlThicknessParas";
                    _ctrlThicknessParas.OnRefreshShape += (houdu) =>
                    {
                        this._bodyThickness = houdu;
                        this._occDesign3dCtrl.BuildThicknessBody(houdu);
                    };
                    this._bodyThickness = _ctrlThicknessParas.InitialParas(_hdrBaseInfo, _geomBaseInfo, _outflowParas);
                    this._occDesign3dCtrl.BuildThicknessBody(_bodyThickness);
                }
 
 
 
                _ctrlThicknessParas.ShowPage();
 
                this._occDesign3dCtrl.setWaterBodyOpacity(
                    DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.R,
                    DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.G, 
                    DPumpHydr.WinFrmUI.Volute.GlobalParas.WaterBodyColor.B, 60);
                this._occDesign3dCtrl.SetThicknessBodyVisible(true);
 
                DockStepParaCtrl(_ctrlThicknessParas);
                return;
            }
            #endregion
 
        }
 
 
 
        /// <summary>
        /// 获取当前步骤的参数控制控件
        /// </summary>
        /// <param name="step_id"></param>
        private DPumpHydr.WinFrmUI.Volute.ParasInfoBaseCtrl GetParasCtrl(long step_id)
        {
            if (step_id == this._stepTreeDockPanel.Step_ID_Hdr_Base_Info)
            {
                return _ctrlHdrBaseInfo;
            }
            //第二步 
            if (step_id == this._stepTreeDockPanel.Step_ID_Section18_Full)
            {
                return _ctrlSectionBundleInfo;
            }
            //1-8断面进行下一步点击
            if (step_id >= this._stepTreeDockPanel.Step_ID_Section18_Grp &&
                step_id >= this._stepTreeDockPanel.Step_ID_Section18_Grp + 8)
            {
                return _ctrlSectionShapeInfo18;
            }
 
            return null;
        }
 
 
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="ctrl"></param>
        private void DockStepParaCtrl(ParasInfoBaseCtrl ctrl)
        {
            this._parasDockPanel.Controls.Clear();
            ctrl.Dock = DockStyle.Fill;
            this._parasDockPanel.Controls.Add(ctrl);
        }
 
        /// <summary>
        /// 下一步
        /// </summary>
        /// <returns></returns>
        public bool GoNextStep()
        {
            return GoNextStepCore();
        }
 
        /// <summary>
        /// 上一步
        /// </summary>
        /// <returns></returns>
        public bool GoPrevStep()
        {
            return GoPrevStepCore();
        }
    }
}