2018-01-11 04:03:56 +01:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
2019-05-04 16:31:16 +02:00
|
|
|
"sync/atomic"
|
|
|
|
|
2020-11-30 23:07:03 +01:00
|
|
|
"github.com/gdamore/tcell/v2"
|
2018-01-11 04:03:56 +01:00
|
|
|
)
|
|
|
|
|
2022-10-06 18:46:44 +02:00
|
|
|
const (
|
|
|
|
DIRTY int32 = iota
|
|
|
|
NOT_DIRTY
|
|
|
|
)
|
|
|
|
|
2022-10-06 18:46:40 +02:00
|
|
|
var MsgChannel = make(chan AercMsg, 50)
|
|
|
|
|
|
|
|
// QueueRedraw sends a nil message into the MsgChannel. Nothing will handle this
|
|
|
|
// message, but a redraw will occur if the UI is marked as invalid
|
|
|
|
func QueueRedraw() {
|
|
|
|
MsgChannel <- nil
|
|
|
|
}
|
|
|
|
|
2022-10-06 18:46:44 +02:00
|
|
|
// dirty is the dirty state of the UI. Any value other than 0 means the UI is in
|
|
|
|
// a dirty state. Dirty should only be accessed via atomic operations to
|
|
|
|
// maintain thread safety
|
|
|
|
var dirty int32
|
|
|
|
|
|
|
|
// Invalidate marks the entire UI as invalid. Invalidate can be called from any
|
|
|
|
// goroutine
|
|
|
|
func Invalidate() {
|
|
|
|
atomic.StoreInt32(&dirty, DIRTY)
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
type UI struct {
|
2018-02-28 03:17:26 +01:00
|
|
|
Content DrawableInteractive
|
2019-05-19 11:49:57 +02:00
|
|
|
exit atomic.Value // bool
|
2018-02-17 22:35:36 +01:00
|
|
|
ctx *Context
|
2018-06-01 09:58:00 +02:00
|
|
|
screen tcell.Screen
|
2019-12-20 19:21:32 +01:00
|
|
|
popover *Popover
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
|
|
|
|
2020-05-05 15:57:19 +02:00
|
|
|
func Initialize(content DrawableInteractive) (*UI, error) {
|
2018-06-01 09:58:00 +02:00
|
|
|
screen, err := tcell.NewScreen()
|
|
|
|
if err != nil {
|
2018-01-11 04:03:56 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
2018-06-01 09:58:00 +02:00
|
|
|
|
|
|
|
if err = screen.Init(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
screen.Clear()
|
|
|
|
screen.HideCursor()
|
2022-09-14 21:36:42 +02:00
|
|
|
screen.EnablePaste()
|
2018-06-01 09:58:00 +02:00
|
|
|
|
|
|
|
width, height := screen.Size()
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
state := UI{
|
|
|
|
Content: content,
|
2018-06-01 09:58:00 +02:00
|
|
|
screen: screen,
|
2018-02-17 22:35:36 +01:00
|
|
|
}
|
2019-12-20 19:21:32 +01:00
|
|
|
state.ctx = NewContext(width, height, screen, state.onPopover)
|
2019-05-19 11:50:14 +02:00
|
|
|
|
2019-05-04 16:31:16 +02:00
|
|
|
state.exit.Store(false)
|
2019-05-19 11:50:14 +02:00
|
|
|
|
2022-10-06 18:46:44 +02:00
|
|
|
Invalidate()
|
2020-05-05 15:57:19 +02:00
|
|
|
if beeper, ok := content.(DrawableInteractiveBeeper); ok {
|
|
|
|
beeper.OnBeep(screen.Beep)
|
|
|
|
}
|
2019-03-17 19:02:33 +01:00
|
|
|
content.Focus(true)
|
2019-05-19 11:50:14 +02:00
|
|
|
|
2020-03-03 22:20:07 +01:00
|
|
|
if root, ok := content.(RootDrawable); ok {
|
|
|
|
root.Initialize(&state)
|
|
|
|
}
|
|
|
|
|
2018-01-11 04:03:56 +01:00
|
|
|
return &state, nil
|
|
|
|
}
|
|
|
|
|
2019-12-20 19:21:32 +01:00
|
|
|
func (state *UI) onPopover(p *Popover) {
|
|
|
|
state.popover = p
|
|
|
|
}
|
|
|
|
|
2019-05-04 16:31:16 +02:00
|
|
|
func (state *UI) ShouldExit() bool {
|
|
|
|
return state.exit.Load().(bool)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (state *UI) Exit() {
|
|
|
|
state.exit.Store(true)
|
|
|
|
}
|
|
|
|
|
2018-02-17 22:35:36 +01:00
|
|
|
func (state *UI) Close() {
|
2018-06-01 09:58:00 +02:00
|
|
|
state.screen.Fini()
|
2018-01-11 04:03:56 +01:00
|
|
|
}
|
|
|
|
|
2022-10-06 18:46:42 +02:00
|
|
|
func (state *UI) Render() {
|
2022-10-06 18:46:44 +02:00
|
|
|
dirtyState := atomic.SwapInt32(&dirty, NOT_DIRTY)
|
|
|
|
if dirtyState == DIRTY {
|
2019-12-20 19:21:32 +01:00
|
|
|
// reset popover for the next Draw
|
|
|
|
state.popover = nil
|
2018-02-17 22:35:36 +01:00
|
|
|
state.Content.Draw(state.ctx)
|
2019-12-20 19:21:32 +01:00
|
|
|
if state.popover != nil {
|
|
|
|
// if the Draw resulted in a popover, draw it
|
|
|
|
state.popover.Draw(state.ctx)
|
|
|
|
}
|
2018-06-01 09:58:00 +02:00
|
|
|
state.screen.Show()
|
2018-01-11 04:03:56 +01:00
|
|
|
}
|
|
|
|
}
|
2019-08-03 17:17:13 +02:00
|
|
|
|
|
|
|
func (state *UI) EnableMouse() {
|
|
|
|
state.screen.EnableMouse()
|
|
|
|
}
|
2022-09-12 23:09:19 +02:00
|
|
|
|
2022-10-06 18:46:41 +02:00
|
|
|
func (state *UI) ChannelEvents() {
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
MsgChannel <- state.screen.PollEvent()
|
2022-09-12 23:09:19 +02:00
|
|
|
}
|
2022-10-06 18:46:41 +02:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (state *UI) HandleEvent(event tcell.Event) {
|
|
|
|
if event, ok := event.(*tcell.EventResize); ok {
|
|
|
|
state.screen.Clear()
|
|
|
|
width, height := event.Size()
|
|
|
|
state.ctx = NewContext(width, height, state.screen, state.onPopover)
|
2022-10-07 18:00:31 +02:00
|
|
|
Invalidate()
|
2022-10-06 18:46:41 +02:00
|
|
|
}
|
|
|
|
// if we have a popover, and it can handle the event, it does so
|
|
|
|
if state.popover == nil || !state.popover.Event(event) {
|
|
|
|
// otherwise, we send the event to the main content
|
|
|
|
state.Content.Event(event)
|
2022-09-12 23:09:19 +02:00
|
|
|
}
|
|
|
|
}
|