-
Notifications
You must be signed in to change notification settings - Fork 302
/
screen.go
291 lines (251 loc) · 8.3 KB
/
screen.go
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// Copyright (c) 2013-2024 by Michael Dvorkin and contributors. All Rights Reserved.
// Use of this source code is governed by a MIT-style license that can
// be found in the LICENSE file.
package mop
import (
"fmt"
"strconv"
"strings"
"time"
"github.com/nsf/termbox-go"
)
// Screen is thin wrapper around Termbox library to provide basic display
// capabilities as required by Mop.
type Screen struct {
width int // Current number of columns.
height int // Current number of rows.
cleared bool // True after the screens gets cleared.
layout *Layout // Pointer to layout (gets created by screen).
markup *Markup // Pointer to markup processor (gets created by screen).
pausedAt *time.Time // Timestamp of the pause request or nil if none.
offset int // Offset for scolling
headerLine int // Line number of header for scroll feature
max int // highest offset
}
// Initializes Termbox, creates screen along with layout and markup, and
// calculates current screen dimensions. Once initialized the screen is
// ready for display.
func NewScreen(profile *Profile) *Screen {
if err := termbox.Init(); err != nil {
panic(err)
}
screen := &Screen{}
screen.layout = NewLayout()
screen.markup = NewMarkup(profile)
screen.offset = 0
return screen.Resize()
}
// Close gets called upon program termination to close the Termbox.
func (screen *Screen) Close() *Screen {
termbox.Close()
return screen
}
// Resize gets called when the screen is being resized. It recalculates screen
// dimensions and requests to clear the screen on next update.
func (screen *Screen) Resize() *Screen {
screen.width, screen.height = termbox.Size()
screen.cleared = false
return screen
}
// Pause is a toggle function that either creates a timestamp of the pause
// request or resets it to nil.
func (screen *Screen) Pause(pause bool) *Screen {
if pause {
screen.pausedAt = new(time.Time)
*screen.pausedAt = time.Now()
} else {
screen.pausedAt = nil
}
return screen
}
// Clear makes the entire screen blank using default background color.
func (screen *Screen) Clear() *Screen {
termbox.Clear(termbox.ColorDefault, termbox.ColorDefault)
screen.cleared = true
return screen
}
// ClearLine erases the contents of the line starting from (x,y) coordinate
// till the end of the line.
func (screen *Screen) ClearLine(x int, y int) *Screen {
for i := x; i < screen.width; i++ {
termbox.SetCell(i, y, ' ', termbox.ColorDefault, termbox.ColorDefault)
}
termbox.Flush()
return screen
}
// Increase the offset for scrolling feature by n
// Takes number of tickers as max, so not scrolling down forever
func (screen *Screen) IncreaseOffset(n int) {
if screen.offset+n <= screen.max {
screen.offset += n
} else if screen.max > screen.height {
screen.offset = screen.max
}
}
// Decrease the offset for scrolling feature by n
func (screen *Screen) DecreaseOffset(n int) {
if screen.offset > n {
screen.offset -= n
} else {
screen.offset = 0
}
}
func (screen *Screen) ScrollTop() {
screen.offset = 0
}
func (screen *Screen) ScrollBottom() {
if screen.max > screen.height {
screen.offset = screen.max
}
}
func (screen *Screen) DrawOldQuotes(quotes *Quotes) {
screen.draw(screen.layout.Quotes(quotes), true)
termbox.Flush()
}
func (screen *Screen) DrawOldMarket(market *Market) {
screen.draw(screen.layout.Market(market), false)
termbox.Flush()
}
// Draw accepts variable number of arguments and knows how to display the
// market data, stock quotes, current time, and an arbitrary string.
func (screen *Screen) Draw(objects ...interface{}) *Screen {
zonename, _ := time.Now().In(time.Local).Zone()
if screen.pausedAt != nil {
defer screen.DrawLine(0, 0, `<right><r>`+screen.pausedAt.Format(`3:04:05pm `+zonename)+`</r></right>`)
}
for _, ptr := range objects {
switch ptr.(type) {
case *Market:
object := ptr.(*Market)
screen.draw(screen.layout.Market(object.Fetch()), false)
case *Quotes:
object := ptr.(*Quotes)
screen.draw(screen.layout.Quotes(object.Fetch()), true)
case time.Time:
timestamp := ptr.(time.Time).Format(`3:04:05pm ` + zonename)
screen.DrawLineInverted(0, 0, `<right><time>`+timestamp+`</></right>`)
default:
screen.draw(ptr.(string), false)
}
}
termbox.Flush()
return screen
}
// DrawLine takes the incoming string, tokenizes it to extract markup
// elements, and displays it all starting at (x,y) location.
// DrawLineFlush gives the option to flush screen after drawing
// wrapper for DrawLineFlush
func (screen *Screen) DrawLine(x int, y int, str string) {
screen.DrawLineFlush(x, y, str, true)
}
func (screen *Screen) DrawLineInverted(x int, y int, str string) {
screen.DrawLineFlushInverted(x, y, str, true)
}
func (screen *Screen) DrawLineFlush(x int, y int, str string, flush bool) {
start, column := 0, 0
for _, token := range screen.markup.Tokenize(str) {
// First check if it's a tag. Tags are eaten up and not displayed.
if screen.markup.IsTag(token) {
continue
}
// Here comes the actual text: display it one character at a time.
for i, char := range token {
if !screen.markup.RightAligned {
start = x + column
column++
} else {
start = screen.width - len(token) + i
}
termbox.SetCell(start, y, char, screen.markup.Foreground, screen.markup.Background)
}
}
if flush {
termbox.Flush()
}
}
func (screen *Screen) DrawLineFlushInverted(x int, y int, str string, flush bool) {
start, column := 0, 0
for _, token := range screen.markup.Tokenize(str) {
// First check if it's a tag. Tags are eaten up and not displayed.
if screen.markup.IsTag(token) {
continue
}
// Here comes the actual text: display it one character at a time.
for i, char := range token {
if !screen.markup.RightAligned {
start = x + column
column++
} else {
start = screen.width - len(token) + i
}
termbox.SetCell(start, y, char, screen.markup.tags[`black`], screen.markup.Foreground)
}
}
if flush {
termbox.Flush()
}
}
// Underlying workhorse function that takes multiline string, splits it into
// lines, and displays them row by row.
func (screen *Screen) draw(str string, offset bool) {
if !screen.cleared {
screen.Clear()
}
var allLines []string
drewHeading := false
screen.width, screen.height = termbox.Size()
tempFormat := "%" + strconv.Itoa(screen.width) + "s"
blankLine := fmt.Sprintf(tempFormat, "")
allLines = strings.Split(str, "\n")
if offset {
screen.max = len(allLines) - screen.height + screen.headerLine
}
// Write the lines being updated.
for row := 0; row < len(allLines); row++ {
if offset {
// Did we draw the underlined heading row? This is a crude
// check, but--see comments below...
// --- Heading row only appears for quotes, so offset is true
if !drewHeading {
if strings.Contains(allLines[row], "Ticker") &&
strings.Contains(allLines[row], "Last") &&
strings.Contains(allLines[row], "Change") {
drewHeading = true
screen.headerLine = row
screen.DrawLine(0, row, allLines[row])
// move on to the point to offset to
row += screen.offset
}
} else {
// only write the necessary lines
if row <= len(allLines) &&
row > screen.headerLine {
screen.DrawLineFlush(0, row-screen.offset, allLines[row], false)
} else if row > len(allLines)+1 {
row = len(allLines)
}
}
} else {
screen.DrawLineFlush(0, row, allLines[row], false)
}
}
// If the quotes lines in this cycle are shorter than in the previous
// cycles, e.g., because a filter was just applied, then one or more
// lines from the previous cycles will not be cleared. Since the
// incoming lines don't mark explicitly whether they are part of the
// market summary or quotes, we can't check whether quotes were updated
// in a way that is robust for code changes. This is a simple test: if
// we drew the heading row ("Ticker Last Change..."), then we are
// updating the quotes section in this cycle, and we should pad the
// quotes section with blank lines. If we didn't draw the heading row,
// then we probably only updated the market summary at the top in this
// cycle. In that case, padding with blank lines would overwrite the
// stocks list.)
if drewHeading {
for i := len(allLines) - 1 - screen.offset; i < screen.height; i++ {
if i > screen.headerLine {
screen.DrawLine(0, i, blankLine)
}
}
}
}