ed219e8c05
Moved the PollEvents call outside of the for loop
74 lines
1.2 KiB
Go
74 lines
1.2 KiB
Go
// +build ignore
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"math"
|
|
"math/rand"
|
|
"time"
|
|
|
|
ui "github.com/gizak/termui"
|
|
)
|
|
|
|
func main() {
|
|
err := ui.Init()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer ui.Close()
|
|
|
|
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
|
|
}
|
|
run := true
|
|
|
|
pc := ui.NewPieChart()
|
|
pc.BorderLabel = "Pie Chart"
|
|
pc.Width = 70
|
|
pc.Height = 36
|
|
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)
|
|
}
|
|
|
|
pause := func() {
|
|
run = !run
|
|
if run {
|
|
pc.BorderLabel = "Pie Chart"
|
|
} else {
|
|
pc.BorderLabel = "Pie Chart (Stopped)"
|
|
}
|
|
ui.Render(pc)
|
|
}
|
|
|
|
ui.Render(pc)
|
|
|
|
uiEvents := ui.PollEvents()
|
|
ticker := time.NewTicker(time.Second).C
|
|
for {
|
|
select {
|
|
case e := <-uiEvents:
|
|
switch e.ID {
|
|
case "q", "<C-c>":
|
|
return
|
|
case "s":
|
|
pause()
|
|
}
|
|
case <-ticker:
|
|
if run {
|
|
pc.Data, pc.Offset = randomDataAndOffset()
|
|
ui.Render(pc)
|
|
}
|
|
}
|
|
}
|
|
}
|