termui/render.go

140 lines
2.7 KiB
Go
Raw Normal View History

2017-01-14 06:07:43 +00:00
// Copyright 2017 Zack Guo <zack.y.guo@gmail.com>. All rights reserved.
2015-03-20 20:21:50 +00:00
// Use of this source code is governed by a MIT license that can
// be found in the LICENSE file.
2015-02-03 14:07:31 +00:00
package termui
2015-09-18 15:41:44 +00:00
import (
"image"
2018-09-06 20:57:56 +00:00
"runtime/debug"
"sync"
2015-09-18 15:41:44 +00:00
2018-09-06 21:48:09 +00:00
tb "github.com/nsf/termbox-go"
2015-09-18 15:41:44 +00:00
)
2015-02-03 14:07:31 +00:00
2015-03-24 21:16:43 +00:00
// Bufferer should be implemented by all renderable components.
2015-03-03 18:28:09 +00:00
type Bufferer interface {
Buffer() Buffer
2015-02-03 14:07:31 +00:00
}
2015-03-24 21:16:43 +00:00
// Init initializes termui library. This function should be called before any others.
// After initialization, the library must be finalized by 'Close' function.
2015-02-03 14:07:31 +00:00
func Init() error {
2018-09-06 21:48:09 +00:00
if err := tb.Init(); err != nil {
2015-05-09 23:29:22 +00:00
return err
}
2018-09-06 21:48:09 +00:00
tb.SetInputMode(tb.InputEsc | tb.InputMouse)
// DefaultEvtStream = NewEvtStream()
2015-09-18 15:41:44 +00:00
// sysEvtChs = make([]chan Event, 0)
// go hookTermboxEvt()
2015-10-10 15:20:44 +00:00
2015-09-18 15:41:44 +00:00
renderJobs = make(chan []Bufferer)
//renderLock = new(sync.RWMutex)
2015-09-18 15:41:44 +00:00
2015-10-10 15:20:44 +00:00
Body = NewGrid()
Body.X = 0
Body.Y = 0
Body.BgColor = ThemeAttr("bg")
Body.Width = TermWidth()
2018-11-29 02:19:34 +00:00
// resizeCh := Handle("<Resize>")
// go func() {
// for e := range resizeCh {
// payload := e.Payload.(Resize)
// Body.Width = payload.Width
// }
// }()
// DefaultWgtMgr = NewWgtMgr()
// EventHook(DefaultWgtMgr.WgtHandlersHook())
go func() {
for bs := range renderJobs {
render(bs...)
}
}()
2015-05-09 23:29:22 +00:00
return nil
2015-02-03 14:07:31 +00:00
}
2015-03-24 21:16:43 +00:00
// Close finalizes termui library,
// should be called after successful initialization when termui's functionality isn't required anymore.
2015-02-04 01:56:49 +00:00
func Close() {
2018-09-06 21:48:09 +00:00
tb.Close()
2015-02-03 14:07:31 +00:00
}
var renderLock sync.Mutex
func termSync() {
renderLock.Lock()
2018-09-06 21:48:09 +00:00
tb.Sync()
termWidth, termHeight = tb.Size()
renderLock.Unlock()
}
2015-03-24 21:16:43 +00:00
// TermWidth returns the current terminal's width.
2015-03-20 12:24:48 +00:00
func TermWidth() int {
termSync()
return termWidth
2015-03-20 12:24:48 +00:00
}
2015-03-24 21:16:43 +00:00
// TermHeight returns the current terminal's height.
2015-03-20 12:24:48 +00:00
func TermHeight() int {
termSync()
return termHeight
2015-03-20 12:24:48 +00:00
}
2015-03-24 21:16:43 +00:00
// Render renders all Bufferer in the given order from left to right,
// right could overlap on left ones.
2015-10-10 15:20:44 +00:00
func render(bs ...Bufferer) {
defer func() {
if e := recover(); e != nil {
Close()
2018-09-06 20:57:56 +00:00
panic(debug.Stack())
}
}()
for _, b := range bs {
buf := b.Buffer()
// set cels in buf
for p, c := range buf.CellMap {
2015-05-09 23:29:22 +00:00
if p.In(buf.Area) {
2018-09-06 21:48:09 +00:00
tb.SetCell(p.X, p.Y, c.Ch, toTmAttr(c.Fg), toTmAttr(c.Bg))
}
2015-02-04 01:56:49 +00:00
}
2015-02-03 14:07:31 +00:00
}
renderLock.Lock()
// render
2018-09-06 21:48:09 +00:00
tb.Flush()
renderLock.Unlock()
}
func Clear() {
2018-09-06 21:48:09 +00:00
tb.Clear(tb.ColorDefault, toTmAttr(ThemeAttr("bg")))
}
func clearArea(r image.Rectangle, bg Attribute) {
for i := r.Min.X; i < r.Max.X; i++ {
for j := r.Min.Y; j < r.Max.Y; j++ {
2018-09-06 21:48:09 +00:00
tb.SetCell(i, j, ' ', tb.ColorDefault, toTmAttr(bg))
}
}
}
func ClearArea(r image.Rectangle, bg Attribute) {
clearArea(r, bg)
2018-09-06 21:48:09 +00:00
tb.Flush()
2015-02-03 14:07:31 +00:00
}
2015-09-18 15:41:44 +00:00
var renderJobs chan []Bufferer
2015-10-10 15:20:44 +00:00
func Render(bs ...Bufferer) {
//go func() { renderJobs <- bs }()
renderJobs <- bs
2015-09-18 15:41:44 +00:00
}