-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprogress.go
91 lines (76 loc) · 2.15 KB
/
progress.go
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
// mauview - A Go TUI library based on tcell.
// Copyright © 2020 Tulir Asokan
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package mauview
import (
"math"
"sync/atomic"
"time"
"github.com/gdamore/tcell/v2"
)
type ProgressBar struct {
*SimpleEventHandler
style tcell.Style
progress int32
max int
indeterminate bool
indeterminateStart time.Time
}
var _ Component = &ProgressBar{}
func NewProgressBar() *ProgressBar {
return &ProgressBar{
SimpleEventHandler: &SimpleEventHandler{},
style: tcell.StyleDefault,
progress: 0,
max: 100,
indeterminate: true,
}
}
var Blocks = [9]rune{' ', '▏', '▎', '▍', '▌', '▋', '▊', '▉', '█'}
func min(a, b int) int {
if a < b {
return a
}
return b
}
func (pb *ProgressBar) SetProgress(progress int) *ProgressBar {
pb.progress = int32(min(progress, pb.max))
return pb
}
func (pb *ProgressBar) Increment(increment int) *ProgressBar {
atomic.AddInt32(&pb.progress, int32(increment))
return pb
}
func (pb *ProgressBar) SetIndeterminate(indeterminate bool) *ProgressBar {
pb.indeterminate = indeterminate
pb.indeterminateStart = time.Now()
return pb
}
func (pb *ProgressBar) SetMax(max int) *ProgressBar {
pb.max = max
pb.progress = int32(min(pb.max, int(pb.progress)))
return pb
}
// Draw draws this primitive onto the screen.
func (pb *ProgressBar) Draw(screen Screen) {
width, _ := screen.Size()
if pb.indeterminate {
barWidth := width / 6
pos := int(time.Now().Sub(pb.indeterminateStart).Milliseconds()/200) % (width + barWidth)
for x := pos - barWidth; x < pos; x++ {
screen.SetCell(x, 0, pb.style, Blocks[8])
}
} else {
progress := math.Min(float64(pb.progress), float64(pb.max))
floatingBlocks := progress * (float64(width) / float64(pb.max))
parts := int(math.Floor(math.Mod(floatingBlocks, 1) * 8))
blocks := int(math.Floor(floatingBlocks))
for x := 0; x < blocks; x++ {
screen.SetCell(x, 0, pb.style, Blocks[8])
}
screen.SetCell(blocks, 0, pb.style, Blocks[parts])
}
}