aboutsummaryrefslogtreecommitdiff
path: root/lib/ui/ui.go
blob: 91a26dae7cac62a69a22a5dac4e669461174ebc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package ui

import (
	"sync/atomic"

	"github.com/gdamore/tcell"

	"git.sr.ht/~sircmpwn/aerc/config"
)

type UI struct {
	Content DrawableInteractive
	exit    atomic.Value // bool
	ctx     *Context
	screen  tcell.Screen

	tcEvents      chan tcell.Event
	invalidations chan interface{}
}

func Initialize(conf *config.AercConfig,
	content DrawableInteractive) (*UI, error) {

	screen, err := tcell.NewScreen()
	if err != nil {
		return nil, err
	}

	if err = screen.Init(); err != nil {
		return nil, err
	}

	screen.Clear()
	screen.HideCursor()

	width, height := screen.Size()

	state := UI{
		Content: content,
		ctx:     NewContext(width, height, screen),
		screen:  screen,

		tcEvents:      make(chan tcell.Event, 10),
		invalidations: make(chan interface{}),
	}
	state.exit.Store(false)
	go (func() {
		for !state.ShouldExit() {
			state.tcEvents <- screen.PollEvent()
		}
	})()
	go (func() {
		state.invalidations <- nil
	})()
	content.OnInvalidate(func(_ Drawable) {
		go (func() {
			state.invalidations <- nil
		})()
	})
	content.Focus(true)
	return &state, nil
}

func (state *UI) ShouldExit() bool {
	return state.exit.Load().(bool)
}

func (state *UI) Exit() {
	state.exit.Store(true)
}

func (state *UI) Close() {
	state.screen.Fini()
}

func (state *UI) Tick() bool {
	select {
	case event := <-state.tcEvents:
		switch event := event.(type) {
		case *tcell.EventResize:
			state.screen.Clear()
			width, height := event.Size()
			state.ctx = NewContext(width, height, state.screen)
			state.Content.Invalidate()
		}
		state.Content.Event(event)
	case <-state.invalidations:
		for {
			// Flush any other pending invalidations
			select {
			case <-state.invalidations:
				break
			default:
				goto done
			}
		}
	done:
		state.Content.Draw(state.ctx)
		state.screen.Show()
	default:
		return false
	}
	return true
}