tangxu
2024-03-26 edd23f115dba31d764fdaf75a6207d888d0419d3
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
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
using IStation.CalcModel;
using IStation.Model;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Windows.Forms; 
 
namespace IStation.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public partial class TimeBlockRangePanel : Panel
    { 
        /// <summary>
        /// 10分钟一个刻度
        /// </summary>
        private int _calcSpaceMinute = 10;
 
        /// <summary>
        /// 绘制对象列表
        /// </summary> 
        List<TimeSmallBlock> _block_item_list = null;
        public Action OnFreshPumpRunRange = null;
        public List<CalcModel.PumpRunRange> GetRunRangeList(DateTime anaDay)
        {
            if (_block_item_list == null)
            {
                return null;
            }
            var anaSetting = IStation.AnaGlobalParas.Setting;
            if (anaSetting == null)
                return null;
            var startHour = anaSetting.StartHourPerDay; 
            var statTime = anaDay.AddHours(startHour);
 
            List<CalcModel.PumpRunRange> listRange = new List<CalcModel.PumpRunRange>();
            TimeSmallBlock lastSelBlck = null;
            foreach (var item in _block_item_list)
            {
                if (item.PumpCount > 0)
                {
                    if (lastSelBlck == null)
                    {
                        lastSelBlck = item;
                    }
                    else
                    {
                        if (item.PumpCount == lastSelBlck.PumpCount)
                            continue;
                        listRange.Add(new CalcModel.PumpRunRange()
                        {
                            PumpNumber = lastSelBlck.PumpCount,
                            StartTime = statTime.AddMinutes(lastSelBlck.Index * _calcSpaceMinute),
                            EndTime = statTime.AddMinutes(item.Index * _calcSpaceMinute)
                        });
                        lastSelBlck = item;
                    }
                }
                else
                {//当前没有选中
                    if (lastSelBlck != null)
                    {//表示结束了
                        listRange.Add(new CalcModel.PumpRunRange()
                        {
                            PumpNumber = lastSelBlck.PumpCount,
                            StartTime = statTime.AddMinutes(lastSelBlck.Index * _calcSpaceMinute),
                            EndTime = statTime.AddMinutes(item.Index * _calcSpaceMinute)
                        });
                        lastSelBlck = null;
                    }
                }
            }
 
            if(lastSelBlck != null)
            {
                var endTime = statTime.AddDays(1);
                listRange.Add(new CalcModel.PumpRunRange()
                {
                    PumpNumber = lastSelBlck.PumpCount,
                    StartTime = statTime.AddMinutes(lastSelBlck.Index * _calcSpaceMinute),
                    EndTime = endTime
                });
            }
 
 
            return listRange;
 
 
        }
 
 
        internal void EmptyAllItem()
        {
            if (_block_item_list == null)
            {
                return;
            }
            foreach (var block in _block_item_list)
            {
                block.PumpCount = 0;
                block.IsSelected = false;
            }
            this.Refresh();
 
            if (this.OnFreshPumpRunRange != null)
            {
                this.OnFreshPumpRunRange();
            }
        }
      
        internal void SetSelctItemPumpCount(int pumpCount)
        {
            if (_block_item_list == null)
            {
                return;
            }
            int sel_count = 0;
            foreach (var block in _block_item_list)
            {
                if (block.IsSelected)
                {
                    sel_count++;
                    block.PumpCount = pumpCount;
                    block.IsSelected = false;
                }
            }
            if (sel_count > 0)
                this.Refresh();
 
            if (this.OnFreshPumpRunRange != null)
            {
                this.OnFreshPumpRunRange();
            }
        }
 
        internal void ClearSelect()
        {
            if (_block_item_list == null)
            {
                return;
            }
            int sel_count = 0;
            foreach (var block in _block_item_list)
            {
                if (block.IsSelected)
                {
                    sel_count++;
                    block.IsSelected = false;
                }
            }
            if (sel_count > 0)
                this.Refresh();
        }
 
        /// <summary>
        /// 初始化数据
        /// </summary> 
        public void InitialTimeBlock(int CalcSpaceMinute)
        {
            var anaSetting = IStation.AnaGlobalParas.Setting;
            if (anaSetting == null)
                return;
 
            _block_item_list = new List<TimeSmallBlock>();
 
            var startHour = anaSetting.StartHourPerDay;
            this._calcSpaceMinute =  CalcSpaceMinute;
 
            var statTime = DateTime.Today.AddDays(startHour);
            var endTime = statTime.AddDays(1);
 
            int blk_index = 0;
            for (var time = statTime; time < endTime; time = time.AddMinutes(this._calcSpaceMinute))
            {
                var block = new TimeSmallBlock(blk_index, time.Hour, time.Minute);
                blk_index++;
                _block_item_list.Add(block);
            }
 
            if (!_block_item_list.Any())
                return;
 
            #region 
 
            //if (!string.IsNullOrEmpty(anaSetting.SwitchPumpIgnoreTimes))
            //{
            //    var ttt = anaSetting.SwitchPumpIgnoreTimes.Split(
            //        new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
            //    foreach (var t in ttt)
            //    {
            //        var ddd = t.Split(new char[] { '-' }, StringSplitOptions.RemoveEmptyEntries);
            //        var st = ddd[1].Split(new char[] { ':' }, StringSplitOptions.RemoveEmptyEntries);
            //        var ed = ddd[2].Split(new char[] { ':' }, StringSplitOptions.RemoveEmptyEntries);
 
            //        int ed_h = Convert.ToInt32(ed[0]);
 
 
            //        if (Convert.ToBoolean(ddd[0]))
            //        {
            //            var IsNexDay = ed_h > 23 ? true : false;
 
            //            var StartH = Convert.ToInt32(st[0]);
            //            var StartM = Convert.ToInt32(st[1]);
            //            var EndH = ed_h > 23 ? ed_h - 24 : ed_h;
            //            var EndM = Convert.ToInt32(ed[1]);
 
            //            //foreach(var b in drawBlocks)
            //            //{
            //            //    if(b.Time.Hour >= StartH && b.Time.Minute)
            //            //}
            //        }
 
 
            //    }
            //}
 
 
 
 
            //if (!string.IsNullOrEmpty(anaSetting.OpenPumpIgnoreTimes))
            //{
            //    var ttt = anaSetting.OpenPumpIgnoreTimes.Split(
            //        new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
            //    foreach (var t in ttt)
            //    {
            //        var ddd = t.Split(new char[] { '-' }, StringSplitOptions.RemoveEmptyEntries);
            //        var st = ddd[1].Split(new char[] { ':' }, StringSplitOptions.RemoveEmptyEntries);
            //        var ed = ddd[2].Split(new char[] { ':' }, StringSplitOptions.RemoveEmptyEntries);
 
            //        int ed_h = Convert.ToInt32(ed[0]);
 
            //        //CurrentViewModel v = new CurrentViewModel();
            //        //v.IsUse = Convert.ToBoolean(ddd[0]);
            //        //v.IsNexDay = ed_h > 23 ? true : false;
 
            //        //v.StartH = Convert.ToInt32(st[0]);
            //        //v.StartM = Convert.ToInt32(st[1]);
            //        //v.EndH = ed_h > 23 ? ed_h - 24 : ed_h;
            //        //v.StartM = Convert.ToInt32(ed[1]);
 
            //        //list不许开泵时间.Add(v);
            //    }
            //}
 
 
            #endregion
 
            this.InitialItemSize();
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="start"></param>
        /// <param name="end"></param>
        /// <param name="pumpCount"></param>
        public void SetRangePumpCount(DateTime anaDay, DateTime start, DateTime end, int pumpCount, bool isRefreshUI)
        {
            if (_block_item_list == null)
            {
                return;
            }
            var anaSetting = IStation.AnaGlobalParas.Setting;
            var startHour = anaSetting.StartHourPerDay;
            //var space分析步长  =  .Default.CalcSpaceMinute;
 
            var statTime = anaDay.AddDays(startHour);
            var endTime = statTime.AddDays(1);
 
            int blk_index = 0;
            for (var time = statTime; time < endTime; time = time.AddMinutes(this._calcSpaceMinute))
            {
                if (time >= start && time <= end)
                {
                    _block_item_list[blk_index].PumpCount = pumpCount;
                }
                _block_item_list[blk_index].IsSelected = false;
                blk_index++; 
            }
 
  
            if (isRefreshUI)
                this.Refresh();
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="templates"></param>
        internal void SetRangePumpCount(DateTime anaDay, List<CalcModel.PumpRunRange> templates)
        {
            var anaSetting = IStation.AnaGlobalParas.Setting;
 
            if (_block_item_list == null)
            {
                InitialTimeBlock(this._calcSpaceMinute);
            }
            var startHour = anaSetting.StartHourPerDay;
            //var space分析步长  =  .Default.CalcSpaceMinute;
 
            var statTime = anaDay.AddDays(startHour);
            var endTime = statTime.AddDays(1);
 
           
            foreach(var template in templates)
            {
                int blk_index = 0;
                for (var time = statTime; time < endTime; time = time.AddMinutes(this._calcSpaceMinute))
                {
                    if (time >= template.StartTime && time <= template.EndTime)
                    {
                        _block_item_list[blk_index].PumpCount = template.PumpNumber ;
                    }
                    _block_item_list[blk_index].IsSelected = false;
                    blk_index++;
                }
            }
 
 
 
   
              
            this.Refresh();
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="anaPrj"></param>
        internal void SetRangePumpCount(CalcModel.AnaPrj anaPrj)
        {
            if(anaPrj.CalcSpaceMinute >5)
            {
                this._calcSpaceMinute = anaPrj.CalcSpaceMinute;
            }
 
 
            if (_block_item_list == null )
            {
                InitialTimeBlock(this._calcSpaceMinute);
            }
            var anaSetting = IStation.AnaGlobalParas.Setting;
            var startHour = anaSetting.StartHourPerDay; 
            var anaDay = anaPrj.StartTime.Date;
            var statTime = anaPrj.StartTime;
            var endTime = anaPrj.EndTime;
 
 
            foreach (var item in anaPrj.BlockTimes)
            {
                int blk_index = 0;
                for (var time = statTime; time < endTime; time = time.AddMinutes(this._calcSpaceMinute))
                {
                    if (time >= item.StartTime && time <= item.EndTime)
                    {
                        _block_item_list[blk_index].PumpCount = item.OpenPumpCount;
                    }
                    _block_item_list[blk_index].IsSelected = false;
                    blk_index++;
                }
            }
 
 
 
 
 
            this.Refresh(); 
        }
        /// <summary>
        /// 初始化项大小
        /// </summary>
        public void InitialItemSize()
        {
            if (_block_item_list == null || !_block_item_list.Any())
                return;
 
            int last_right_x = 10;
            int last_loc_y = 10;
            for (int i = 0; i < _block_item_list.Count; i++)
            {
                var item = _block_item_list[i];
                var current_loc_x = last_right_x;
                if(item.Hour == 12 && item.Minute == 0)
                {
                    last_loc_y = last_loc_y + item.Height + 10;
                    current_loc_x = 10;
                    item.IsLineStartBlck = true;
                    _block_item_list[i - 1].IsLineEndBlck = true;
                }
                if (item.TextVisible)
                {
                    if (current_loc_x + item.Width > this.Width - 50)
                    {
                        last_loc_y = last_loc_y + item.Height + 10;
                        current_loc_x = 10;
                        item.IsLineStartBlck = true;
                        _block_item_list[i - 1].IsLineEndBlck = true;
                    } 
                }
                else
                {
                    if (current_loc_x + item.Width > this.Width - 20)
                    {
                        last_loc_y = last_loc_y + item.Height + 10;
                        current_loc_x = 10;
                        item.IsLineStartBlck = true;
                        _block_item_list[i - 1].IsLineEndBlck = true;
                    }
                }
                if (i == 0)
                {
                    item.IsLineStartBlck = true;
                }
                if (i == _block_item_list.Count - 1)
                {
                    item.IsLineEndBlck = true;
                }
                last_right_x = current_loc_x + item.Width;
                item.Resize(current_loc_x, last_loc_y);
            }
 
            this.Refresh();
        }
 
 
 
 
  
 
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="point"></param>
        private TimeSmallBlock GetCaptureBlock(Point point)
        {
            if (_block_item_list == null)
                return null;
            for (int index = 0; index < _block_item_list.Count; index++)
            {
                var item = _block_item_list[index];
                if (!item.ContainsPoint(point))
                    continue;
                return item;
            }
            return null;
        }
 
 
 
 
 
        #region override
        TimeSmallBlock _startSelBlock = null;
        TimeSmallBlock _endSelBlock = null;
        /// <summary>
        ///  是否是选择状态
        /// </summary> 
        bool _isSelectBlockIng = false;
 
 
        /// <summary>
        /// 鼠标点击事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnMouseDown(MouseEventArgs e)
        {
            if(e.Clicks == 2)
            {
                _startSelBlock = null;
                var tipSelBlock = GetCaptureBlock(e.Location);
                if (tipSelBlock == null)
                    return;
                if (tipSelBlock.IsSelected)
                { 
                    tipSelBlock.IsSelected = false;
                }
                else
                { 
                    tipSelBlock.IsSelected = true;
                }
                this.Invalidate(new System.Drawing.Rectangle(
(int)tipSelBlock.Rectangle.X, (int)tipSelBlock.Rectangle.Y,
tipSelBlock.Width, tipSelBlock.Height));//刷新局部区域
 
            }
            else if (e.Button == MouseButtons.Left)
            {
                _isSelectBlockIng = true;
                _startSelBlock = GetCaptureBlock(e.Location);
            }
 
            base.OnMouseDown(e);
        }
 
 
        /// <summary>
        /// 鼠标移动事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnMouseMove(MouseEventArgs e)
        {
            if (!_isSelectBlockIng)
                return;
 
            base.OnMouseMove(e);
 
            //foreach (var item in _block_item_list)
            //{
            //    item.IsSelected = false;
            //    //if (item.DispColor != null)
            //    //{
            //    //    item.DispColor = null;
            //    //    this.Invalidate(item.Rectangle);//刷新局部区域
            //    //}
            //}
            if (_startSelBlock == null)
            {
                _startSelBlock = GetCaptureBlock(e.Location);
                return;
            }
 
            _endSelBlock = GetCaptureBlock(e.Location);
            if (_endSelBlock == null)
                return;
 
 
            if (_endSelBlock.Index > _startSelBlock.Index)
            {//选中 
             //foreach (var item in _block_item_list)
             //{
             //    if (item.Index >= _startSelBlock.Index)
             //    {
                for (int i = _startSelBlock.Index; i <= _endSelBlock.Index; i++)
                {
                    var item = _block_item_list[i];
                    if (!item.IsSelected)
                    {
                        item.IsSelected = true;
 
                        this.Invalidate(new System.Drawing.Rectangle(
                            (int)item.Rectangle.X, (int)item.Rectangle.Y,
                            item.Width, item.Height));//刷新局部区域
                    }
                }
                //
                for (int i = _endSelBlock.Index + 1; i < _block_item_list.Count; i++)
                {
                    var item = _block_item_list[i];
                    if (_block_item_list[i].IsSelected)
                    {
                        _block_item_list[i].IsSelected = false;
                        this.Invalidate(new System.Drawing.Rectangle(
(int)item.Rectangle.X, (int)item.Rectangle.Y,
item.Width, item.Height));//刷新局部区域
                        continue;
                    }
                    break;
                }
 
 
 
            }
            else
            {//取消选中
                foreach (var item in _block_item_list)
                {
                    if (item.Index >= _endSelBlock.Index && item.Index <= _startSelBlock.Index)
                    {
                        if (item.IsSelected)
                        {
                            item.IsSelected = false;
 
                            this.Invalidate(new System.Drawing.Rectangle(
                                (int)item.Rectangle.X, (int)item.Rectangle.Y,
                                item.Width, item.Height));//刷新局部区域
                        }
                    }
                }
            }
 
 
            //base.Invalidate();
        }
 
        /// <summary>
        /// 鼠标弹出事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnMouseUp(MouseEventArgs e)
        {
            base.OnMouseUp(e);
 
 
            if (e.Button == MouseButtons.Left)
            {
                var endSelBlock = GetCaptureBlock(e.Location);
                if(endSelBlock != null && _startSelBlock != null
                    && endSelBlock.Index == _startSelBlock.Index)
                {//单点, 没有拖动
                    if (!_startSelBlock.IsSelected)
                    {
                        _startSelBlock.IsSelected = true;
 
                        this.Invalidate(new System.Drawing.Rectangle(
                            (int)_startSelBlock.Rectangle.X, (int)_startSelBlock.Rectangle.Y,
                            _startSelBlock.Width, _startSelBlock.Height));//刷新局部区域
                    }
                }
 
                _isSelectBlockIng = false;
            }
 
 
        }
 
 
        /// <summary>
        /// 重绘事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnPaint(PaintEventArgs e)
        {
            if (DesignMode)
                return;
 
 
 
            base.OnPaint(e);
 
 
            e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;//抗锯齿
            e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;  //使绘图质量最高,即消除锯齿 // 设置GDI高质量模式抗锯齿
            e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
            e.Graphics.CompositingQuality = CompositingQuality.HighQuality;
 
 
            if (_block_item_list != null && _block_item_list.Any())
            {
                foreach (var rect in _block_item_list)
                {
                    rect.Draw(e.Graphics);
                }
            }
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="eventargs"></param>
        protected override void OnResize(EventArgs eventargs)
        {
            base.OnResize(eventargs);
            //InitialItemSize();
            this.Refresh();
        }
 
 
 
 
 
        #endregion
 
 
    }
}