termui/_examples/piechart.go

75 lines
1.2 KiB
Go
Raw Normal View History

2017-02-17 16:41:56 +00:00
// +build ignore
package main
import (
"fmt"
2019-01-24 04:12:10 +00:00
"log"
2017-02-17 16:41:56 +00:00
"math"
"math/rand"
"time"
2018-08-17 03:22:32 +00:00
2018-09-06 21:48:09 +00:00
ui "github.com/gizak/termui"
2019-01-24 04:12:10 +00:00
"github.com/gizak/termui/widgets"
2017-02-17 16:41:56 +00:00
)
2019-01-24 04:12:10 +00:00
var run = true
2017-02-17 16:41:56 +00:00
func main() {
2019-01-24 04:12:10 +00:00
if err := ui.Init(); err != nil {
log.Fatalf("failed to initialize termui: %v", err)
}
2018-09-06 21:48:09 +00:00
defer ui.Close()
2017-02-17 16:41:56 +00:00
rand.Seed(time.Now().UTC().UnixNano())
randomDataAndOffset := func() (data []float64, offset float64) {
noSlices := 1 + rand.Intn(5)
data = make([]float64, noSlices)
for i := range data {
data[i] = rand.Float64()
}
offset = 2.0 * math.Pi * rand.Float64()
return
}
2019-01-24 04:12:10 +00:00
pc := widgets.NewPieChart()
pc.Title = "Pie Chart"
pc.SetRect(5, 5, 70, 36)
2017-02-17 16:41:56 +00:00
pc.Data = []float64{.25, .25, .25, .25}
pc.Offset = -.5 * math.Pi
pc.Label = func(i int, v float64) string {
return fmt.Sprintf("%.02f", v)
}
2018-11-29 02:19:34 +00:00
pause := func() {
2017-02-17 16:41:56 +00:00
run = !run
if run {
2019-01-24 04:12:10 +00:00
pc.Title = "Pie Chart"
2017-02-17 16:41:56 +00:00
} else {
2019-01-24 04:12:10 +00:00
pc.Title = "Pie Chart (Stopped)"
2017-02-17 16:41:56 +00:00
}
2018-09-06 21:48:09 +00:00
ui.Render(pc)
2018-11-29 02:19:34 +00:00
}
2018-09-06 21:48:09 +00:00
ui.Render(pc)
uiEvents := ui.PollEvents()
ticker := time.NewTicker(time.Second).C
2018-11-29 02:19:34 +00:00
for {
select {
case e := <-uiEvents:
2018-11-29 02:19:34 +00:00
switch e.ID {
case "q", "<C-c>":
return
case "s":
pause()
}
case <-ticker:
2018-11-29 02:19:34 +00:00
if run {
pc.Data, pc.Offset = randomDataAndOffset()
ui.Render(pc)
}
}
}
2017-02-17 16:41:56 +00:00
}