2015-02-03 22:07:31 +08:00
|
|
|
package termui
|
|
|
|
|
|
|
|
import tm "github.com/nsf/termbox-go"
|
|
|
|
|
2015-03-12 04:15:59 +08:00
|
|
|
// all renderable components should implement this
|
2015-03-04 02:28:09 +08:00
|
|
|
type Bufferer interface {
|
2015-02-03 22:07:31 +08:00
|
|
|
Buffer() []Point
|
|
|
|
}
|
|
|
|
|
|
|
|
func Init() error {
|
2015-03-20 20:24:48 +08:00
|
|
|
Body = NewGrid()
|
|
|
|
Body.X = 0
|
|
|
|
Body.Y = 0
|
|
|
|
Body.BgColor = theme.BodyBg
|
|
|
|
defer (func() {
|
|
|
|
w, _ := tm.Size()
|
|
|
|
Body.Width = w
|
|
|
|
})()
|
2015-02-03 22:07:31 +08:00
|
|
|
return tm.Init()
|
|
|
|
}
|
|
|
|
|
2015-02-04 09:56:49 +08:00
|
|
|
func Close() {
|
2015-02-03 22:07:31 +08:00
|
|
|
tm.Close()
|
|
|
|
}
|
|
|
|
|
2015-03-20 20:24:48 +08:00
|
|
|
func TermWidth() int {
|
|
|
|
w, _ := tm.Size()
|
|
|
|
return w
|
|
|
|
}
|
|
|
|
|
|
|
|
func TermHeight() int {
|
|
|
|
_, h := tm.Size()
|
|
|
|
return h
|
|
|
|
}
|
|
|
|
|
2015-03-12 04:15:59 +08:00
|
|
|
// render all from left to right, right could overlap on left ones
|
2015-03-04 02:28:09 +08:00
|
|
|
func Render(rs ...Bufferer) {
|
2015-03-12 04:15:59 +08:00
|
|
|
tm.Clear(tm.ColorDefault, toTmAttr(theme.BodyBg))
|
2015-02-04 09:56:49 +08:00
|
|
|
for _, r := range rs {
|
|
|
|
buf := r.Buffer()
|
|
|
|
for _, v := range buf {
|
2015-03-04 02:28:09 +08:00
|
|
|
tm.SetCell(v.X, v.Y, v.Ch, toTmAttr(v.Fg), toTmAttr(v.Bg))
|
2015-02-04 09:56:49 +08:00
|
|
|
}
|
2015-02-03 22:07:31 +08:00
|
|
|
}
|
|
|
|
tm.Flush()
|
|
|
|
}
|