tangxu
2024-11-02 399c534c415062b08ee5a00fb2c36608f4b3c7ff
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
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  
    {
        //
        ctrlHdrBaseInfo _ctrlHdrBaseInfo = null;
        ctrlGeomBaseInfo _ctrlGeomBaseInfo = null;
        ctrlSectionBaseInfo _ctrlSectionBaseInfo = null;
        ctrlSectionShapeInfo18 _ctrlSectionShapeInfo18 = null;
        ctrlSetOutflowStyle _ctrlSetOutflowStyle = null;
        ctrlSetOutflowDim _ctrlSetOutflowDim = null;
 
        //基础信息
        private readonly string Group_Name_Base_Info = "BaseInfo";
        private readonly int Group_ID_Base_Info = -1;//组ID
        private long Step_ID_Hdr_Base_Info = 12;
        private long Step_ID_Geom_Base_Info = 13;
 
 
        //断面设计(1-8)
        private readonly string Group_Name_Section18 = "Section18";
        private readonly int Group_ID_Section18 = -2;
        private long Step_ID_Section18_Base = 20;//基本信息
        private long Step_ID_Section18_Dim = 21;//详细页面 
 
 
        //出水设计
        private readonly string Group_Name_Outflow = "Outflow";
        private readonly int Group_ID_Outflow  = -3;
        private long Step_ID_Outflow_Style = 31;
        private long Step_ID_Outflow_Dim = 32;
 
 
        //
        private List<DPumpHydr.WinFrmUI.Volute.TreeStepNode> _allStepNodes = null;
         
        private long _currentStepID = 0;
 
        /// <summary>
        /// 下一步
        /// </summary>
        /// <returns></returns>
        public bool GoNextStep()
        {
            return GoNextStepCore();
        }
 
        /// <summary>
        /// 上一步
        /// </summary>
        /// <returns></returns>
        public bool GoPrevStep()
        {
            return GoPrevStepCore();
        }
        ViewModel.HdrBaseInfo _hdrBaseInfo = null;
        ViewModel.GeomBaseInfo _geomBaseInfo = null;
        ViewModel.SectionBaseInfo _sectionBaseInfo = null;
        ViewModel.SectionShapePara _sectionShapePara = null;
        DPumpHydr.WinFrmUI.Volute.TreeStepNode next_step = null;
        int _currentSectIndex;
        /// <summary>
        /// 下一步核心
        /// </summary>
        /// <returns></returns>
        private bool GoNextStepCore()
        {
            if (_currentStepID != Step_ID_Section18_Dim || _currentSectIndex>8 || _currentSectIndex<=1)
            {
                _currentSectIndex = 9;
                next_step = (from x in _allStepNodes
                                 where x.ID > _currentStepID
                                 orderby x.ID
                                 select x).FirstOrDefault();
                if (next_step == null)
                    return false;
            }
            
            //第一步进行下一步点击
            if(_currentStepID == Step_ID_Hdr_Base_Info)
            {
                string error_info;
                var hdrBaseInfo = _ctrlHdrBaseInfo.GetBindingData(out error_info);
                if(hdrBaseInfo == null)
                {
                    MessageBox.Show(error_info);
                    return false;
                }
                hdrBaseInfo.CalcNs();
                _hdrBaseInfo = hdrBaseInfo;
                if(_geomBaseInfo == null)
                {
                    _geomBaseInfo = new ViewModel.GeomBaseInfo();
                }
                _geomBaseInfo.Calc(_hdrBaseInfo);
            }
            //第二步进行下一步点击
            if (_currentStepID == Step_ID_Geom_Base_Info)
            {
                string error_info;
                var geomBaseInfo = _ctrlGeomBaseInfo.GetBindingData(out error_info);
                if (geomBaseInfo == null)
                {
                    MessageBox.Show(error_info);
                    return false;
                }
                _geomBaseInfo = geomBaseInfo;
                if(_sectionBaseInfo == null)
                {
                    _sectionBaseInfo = new ViewModel.SectionBaseInfo();
                }
                _sectionBaseInfo.CalcV3(_hdrBaseInfo, _geomBaseInfo);
                _sectionBaseInfo.CalcArea(_hdrBaseInfo, _geomBaseInfo, _sectionBaseInfo.V3);
                _sectionBaseInfo.IntialShapeType(_hdrBaseInfo, _geomBaseInfo, _sectionBaseInfo.ShapeType);
            }
            //第三步进行下一步点击
            if (_currentStepID == Step_ID_Section18_Base)
            {
                
                string error_info;
                var sectionBaseInfo = _ctrlSectionBaseInfo.GetBindingData(out error_info);
                if (sectionBaseInfo == null)
                {
                    MessageBox.Show(error_info);
                    return false;
                }
                _sectionBaseInfo = sectionBaseInfo;
                _sectionBaseInfo.InitialAllParameters(_hdrBaseInfo, _geomBaseInfo);
                _currentSectIndex--;
                if (_sectionShapePara == null)
                {
                    _sectionShapePara = new ViewModel.SectionShapePara();
                }
                _sectionShapePara.Initialparameters(_currentSectIndex, _sectionBaseInfo);
            }
            //1-8断面进行下一步点击
            if (_currentStepID == Step_ID_Section18_Dim)
            {
                string error_info;
                var sectionShapeInfo18 = _ctrlSectionShapeInfo18.GetBindingData(out error_info);
                if (sectionShapeInfo18 == null)
                {
                    MessageBox.Show(error_info);
                    return false;
                }
                _sectionShapePara = sectionShapeInfo18;
                _sectionShapePara.CalcHeightByArea(_sectionBaseInfo.ShapeType);
                _sectionBaseInfo.EditSingleShape(_sectionShapePara, _currentSectIndex);
                if(_currentSectIndex != 9)
                {
                    _currentSectIndex--;
                }
                _sectionShapePara.Initialparameters(_currentSectIndex, _sectionBaseInfo);
            }
            SetParasCtrl(next_step.ID);
 
            return true;
        }
 
        /// <summary>
        /// 上一步核心
        /// </summary>
        /// <returns></returns>
        private bool GoPrevStepCore()
        {   
            //bool IsChanges = true;
            //if (_currentStepID == Step_ID_Section18_Base && _ctrlSectionBaseInfo.IsParameterChange())
            //{
            //    IsChanges = false;
            //}
            //if(IsChanges)
            //{
            //    DialogResult result = MessageBox.Show("已经修改过的数据需要保存吗?", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
            //    if (result == DialogResult.OK)
            //    {
            //        string error_info = "";
            //        var hdrBaseInfo = _ctrlSectionBaseInfo.GetBindingData(out error_info);
            //        if (hdrBaseInfo == null)
            //        {
            //            MessageBox.Show(error_info);
            //            return false;
            //        }
            //    }
            //}
            if (_currentStepID == Step_ID_Hdr_Base_Info)
                return false;
            if(_currentStepID == Step_ID_Section18_Dim && _currentSectIndex >=1 &&_currentSectIndex < 8)
            {
                _currentSectIndex++;
                _sectionShapePara.Initialparameters(_currentSectIndex, _sectionBaseInfo);
                SetParasCtrl(Step_ID_Section18_Dim);
                return true;
            }
            if(_currentStepID == Step_ID_Outflow_Style)
            {
                _currentSectIndex = 1;
                _sectionShapePara.Initialparameters(_currentSectIndex, _sectionBaseInfo);
            }
            var prev_step = (from x in _allStepNodes
                                where x.ID < _currentStepID
                                orderby x.ID
                                select x).LastOrDefault();
            if (prev_step == null)
                return false;
 
                SetParasCtrl(prev_step.ID);
 
            return true;
        }
 
        /// <summary>
        /// 生成第几步控件
        /// </summary>
        /// <param name="step_id"></param>
        private void SetParasCtrl(long step_id)
        {   
            //第一步
            if (step_id == Step_ID_Hdr_Base_Info)
            {
                if (_ctrlHdrBaseInfo == null)
                    _ctrlHdrBaseInfo = new ctrlHdrBaseInfo();
                this.panelParas.Controls.Clear();
                this.panelParas.Controls.Add(_ctrlHdrBaseInfo);
                _ctrlHdrBaseInfo.SetBindingData(_hdrBaseInfo);
            }
 
            //第二步
            if (step_id == Step_ID_Geom_Base_Info)
            {
                if (_ctrlGeomBaseInfo == null)
                {
                    _ctrlGeomBaseInfo = new ctrlGeomBaseInfo();
                    _ctrlGeomBaseInfo.Name = "ctrlGeomBaseInfo";
                    _ctrlGeomBaseInfo.Dock = DockStyle.Right;
                }
                this.panelParas.Controls.Clear();
                this.panelParas.Controls.Add(_ctrlGeomBaseInfo);
                _ctrlGeomBaseInfo.SetBindingData(_geomBaseInfo);
            }
 
            //第三步
            if (step_id == Step_ID_Section18_Base)
            {
                if (_ctrlSectionBaseInfo == null)
                {
                    _ctrlSectionBaseInfo = new ctrlSectionBaseInfo();
                    _ctrlSectionBaseInfo.Name = "ctrlSectionBaseInfo";
                    _ctrlSectionBaseInfo.Dock = DockStyle.Right;
                }
                this.panelParas.Controls.Clear();
                this.panelParas.Controls.Add(_ctrlSectionBaseInfo);
                _ctrlSectionBaseInfo.SetBindingData(_sectionBaseInfo);
            }
            //第四步
            if (step_id == Step_ID_Section18_Dim)
            {
                if (_ctrlSectionShapeInfo18 == null)
                {
                    _ctrlSectionShapeInfo18 = new ctrlSectionShapeInfo18();
                    _ctrlSectionShapeInfo18.Name = "ctrlSectionShapeInfo18";
                    _ctrlSectionShapeInfo18.Dock = DockStyle.Right;
                }
                this.panelParas.Controls.Clear();
                this.panelParas.Controls.Add(_ctrlSectionShapeInfo18);
                _ctrlSectionShapeInfo18.SetBindingData(_sectionShapePara);
            }
 
 
 
            if(step_id == Step_ID_Outflow_Style)
            {
                if (_ctrlSetOutflowStyle == null)
                { 
                    _ctrlSetOutflowStyle = new ctrlSetOutflowStyle();
                    _ctrlSetOutflowStyle.Name = "ctrlSetOutflowStyle";
                    _ctrlSetOutflowStyle.Dock = DockStyle.Right;
                }
                this.panelParas.Controls.Clear();
                this.panelParas.Controls.Add(_ctrlSetOutflowStyle);
 
            }
            if (step_id == Step_ID_Outflow_Dim)
            {
                if (_ctrlSetOutflowDim == null)
                {
                    _ctrlSetOutflowDim = new ctrlSetOutflowDim();
                    _ctrlSetOutflowDim.Name = "ctrlSetOutflowDim";
                    _ctrlSetOutflowDim.Dock = DockStyle.Right;
                }
                this.panelParas.Controls.Clear();
                this.panelParas.Controls.Add(_ctrlSetOutflowDim);
            }
 
 
 
 
 
            this._currentStepID = step_id;
        }
        
        /// <summary>
        /// 蜗壳参数导出
        /// </summary>
        public void VoluteDeriveArgument()
        {
            if(_sectionBaseInfo == null )
            {
                MessageBox.Show("您还没有完成定义参数!请定义完成后在进行导出!(至少完成第三步)");
                return;
            }
            if(_currentStepID <= 21)
            {
                DialogResult result = MessageBox.Show("确定不进行后续断面参数的调整,使用初始计算后的参数吗?","提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
                if (result == DialogResult.Cancel)
                {
                    return;
                }
            }
            ViewModel.SectionShapePara VoluteArgument = new ViewModel.SectionShapePara();
            string json = VoluteArgument.DeriveArgument(_sectionBaseInfo);
            string filePath = Path.Combine(@"C:\Users\THL\Desktop", $"蜗壳参数.json");
            File.WriteAllText(filePath, json);
        }
 
        #region 初始化步骤列表
 
        /// <summary>
        /// 
        /// </summary>
        private void InitialStepNodes()
        {
            _allStepNodes = new List<DPumpHydr.WinFrmUI.Volute.TreeStepNode>();
 
            #region 基础信息/几何参数
            var stepGroup_BaseInfo = new DPumpHydr.WinFrmUI.Volute.TreeStepNode();
            stepGroup_BaseInfo.AllowSelect = false;
            stepGroup_BaseInfo.Group = Group_Name_Base_Info;
            stepGroup_BaseInfo.Caption = "基础信息";
            stepGroup_BaseInfo.Name = Group_Name_Base_Info;
            stepGroup_BaseInfo.ID = Group_ID_Base_Info;
            stepGroup_BaseInfo.ParentID = 0;
            _allStepNodes.Add(stepGroup_BaseInfo);
 
            var step欢迎使用 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode();
            step欢迎使用.AllowSelect = true;
            step欢迎使用.Group = Group_Name_Base_Info;
            step欢迎使用.Caption = "欢迎使用";
            step欢迎使用.Name = "StepHelp";
            step欢迎使用.ID = 1;
            step欢迎使用.ParentID = Group_ID_Base_Info;
            _allStepNodes.Add(step欢迎使用);
 
 
            var step基础信息 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            step基础信息.AllowSelect = true;
            step基础信息.Group = Group_Name_Base_Info;
            step基础信息.Caption = "第一步:基础信息";
            step基础信息.Name = "StepHydParas";
            step基础信息.ID = Step_ID_Hdr_Base_Info;
            step基础信息.ParentID = Group_ID_Base_Info;
            _allStepNodes.Add(step基础信息);
 
            var step几何参数 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            step几何参数.AllowSelect = true;
            step几何参数.Group = Group_Name_Base_Info;
            step几何参数.Caption = "第二步:几何参数";
            step几何参数.Name = "StepGeomParas";
            step几何参数.ID = Step_ID_Geom_Base_Info;
            step几何参数.ParentID = Group_ID_Base_Info;
            _allStepNodes.Add(step几何参数);
            #endregion
 
 
            #region 断面设计(1-8)
 
            var stepGroup_CoverPlate = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            stepGroup_CoverPlate.AllowSelect = false;
            stepGroup_CoverPlate.Caption = "断面设计";
            stepGroup_CoverPlate.Name = Group_Name_Section18;
            stepGroup_CoverPlate.ID = Group_ID_Section18;
            stepGroup_CoverPlate.ParentID = 0;
            _allStepNodes.Add(stepGroup_CoverPlate);
 
 
            var step断面基本信息 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            step断面基本信息.AllowSelect = true;
            step断面基本信息.Caption = string.Format("{0}:{1}", GetTranslateString("第三步"), GetTranslateString("零件材料"));
            step断面基本信息.Name = "SectBaseInfo18";
            step断面基本信息.ID = Step_ID_Section18_Base;
            step断面基本信息.Group = "断面信息";
            step断面基本信息.ParentID = Group_ID_Section18;
            _allStepNodes.Add(step断面基本信息);
 
       
                var stepSetct18 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
                {
                    ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                    DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
                };
                stepSetct18.AllowSelect = true;
                stepSetct18.Caption =  "第四步: 第1-8断面" ;
            stepSetct18.Name = "TreeStepNode" + Step_ID_Section18_Dim;
            stepSetct18.ID = Step_ID_Section18_Dim  ;
                stepSetct18.Group = "盖板连接";
                stepSetct18.ParentID = Group_ID_Section18;
                _allStepNodes.Add(stepSetct18);
             
 
 
     
 
 
            #endregion
 
 
            #region 出水体
 
            var stepGroup_出水体 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            stepGroup_出水体.AllowSelect = false;
            stepGroup_出水体.Caption = "出水体设计";
            stepGroup_出水体.Name = Group_Name_Outflow;
            stepGroup_出水体.ID = Group_ID_Outflow;
            stepGroup_出水体.ParentID = 0;
            _allStepNodes.Add(stepGroup_出水体);
 
 
            var step出水体类型 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            step出水体类型.AllowSelect = true;
            step出水体类型.Caption = "第五步:出水体类型";
            step出水体类型.Name = "TreeStepNode"+ Step_ID_Outflow_Style;
            step出水体类型.ID = Step_ID_Outflow_Style;
            step出水体类型.Group = Group_Name_Outflow;
            step出水体类型.ParentID = Group_ID_Outflow;
            _allStepNodes.Add(step出水体类型);
 
 
            
            var step出水体尺寸 = new DPumpHydr.WinFrmUI.Volute.TreeStepNode()
            {
                ProgressState = WinFrmUI.Volute.TreeStepNode.eProgressState.未完成,
                DataState = WinFrmUI.Volute.TreeStepNode.eDataState.未知
            };
            step出水体尺寸.AllowSelect = true;
            step出水体尺寸.Caption = "第六步:出水体尺寸";
            step出水体尺寸.Name = "TreeStepNode"+ Step_ID_Outflow_Dim;
            step出水体尺寸.ID = Step_ID_Outflow_Dim;
            step出水体尺寸.Group = Group_Name_Outflow;
            step出水体尺寸.ParentID = Group_ID_Outflow;
            _allStepNodes.Add(step出水体尺寸);
 
            #endregion
 
 
            ViewModel.HdrBaseInfo hdrBaseInfo = new ViewModel.HdrBaseInfo();
            hdrBaseInfo.Q = 200;
            hdrBaseInfo.H = 50;
            hdrBaseInfo.n = 2900;
            hdrBaseInfo.D2 = 220;
            hdrBaseInfo.B2 = 20;
 
            if (_ctrlHdrBaseInfo == null)
            {
                _ctrlHdrBaseInfo = new ctrlHdrBaseInfo();
                _ctrlHdrBaseInfo.Name = "ctrlHdrBaseInfo";
                _ctrlHdrBaseInfo.Dock = DockStyle.Right;
                _ctrlHdrBaseInfo.SetBindingData(hdrBaseInfo);
            }
            //this.panelParas.Controls.Clear();//不能清理
            this.panelParas.Controls.Add(_ctrlHdrBaseInfo);
            this._currentStepID = Step_ID_Hdr_Base_Info;
            //this.stepTreeListCtrl.SetStepSource(_allStepNodes, 1);
        }
 
        #endregion
 
    }
}