parent
7b96ba9443
commit
beece9c4b0
@ -0,0 +1,26 @@ |
|||||||
|
// Copyright (c) 2013 by Michael Dvorkin. All Rights Reserved.
|
||||||
|
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
package mop |
||||||
|
|
||||||
|
import ( |
||||||
|
"bytes" |
||||||
|
"text/template" |
||||||
|
) |
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func Format(message []Message) string { |
||||||
|
markup := `{{range .}}<green>{{.Ticker}}</green> ${{.LastTrade}} <red>{{.Change}}</red> |
||||||
|
{{end}}...` |
||||||
|
|
||||||
|
template, err := template.New("screen").Parse(markup) |
||||||
|
if err != nil { |
||||||
|
panic(err) |
||||||
|
} |
||||||
|
|
||||||
|
buffer := new(bytes.Buffer) |
||||||
|
err = template.Execute(buffer, message) |
||||||
|
if err != nil { |
||||||
|
panic(err) |
||||||
|
} |
||||||
|
return buffer.String() |
||||||
|
} |
@ -0,0 +1,8 @@ |
|||||||
|
// Copyright (c) 2013 by Michael Dvorkin. All Rights Reserved.
|
||||||
|
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
package mop |
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func LoadProfile() string { |
||||||
|
return "coh,atvi,hpq,ibm" |
||||||
|
} |
@ -0,0 +1,123 @@ |
|||||||
|
// Copyright (c) 2013 by Michael Dvorkin. All Rights Reserved.
|
||||||
|
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
||||||
|
package mop |
||||||
|
|
||||||
|
import ( |
||||||
|
"fmt" |
||||||
|
"github.com/michaeldv/just" |
||||||
|
"github.com/nsf/termbox-go" |
||||||
|
"regexp" |
||||||
|
"strings" |
||||||
|
) |
||||||
|
|
||||||
|
// Can combine attributes and a single color using bitwise OR.
|
||||||
|
//
|
||||||
|
// AttrBold Attribute = 1 << (iota + 4)
|
||||||
|
// AttrUnderline
|
||||||
|
// AttrReverse
|
||||||
|
//
|
||||||
|
var colors = map[string]termbox.Attribute{ |
||||||
|
"black": termbox.ColorBlack, |
||||||
|
"red": termbox.ColorRed, |
||||||
|
"green": termbox.ColorGreen, |
||||||
|
"yellow": termbox.ColorYellow, |
||||||
|
"blue": termbox.ColorBlue, |
||||||
|
"magenta": termbox.ColorMagenta, |
||||||
|
"cyan": termbox.ColorCyan, |
||||||
|
"white": termbox.ColorWhite, |
||||||
|
} |
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func Draw(stocks string) { |
||||||
|
message := Quote(stocks) |
||||||
|
// for _, m := range message {
|
||||||
|
// fmt.Printf("%s, %s, %s\n", m.Ticker, m.LastTrade, m.Change)
|
||||||
|
// }
|
||||||
|
|
||||||
|
drawScreen(Format(message)) |
||||||
|
} |
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func Refresh(profile string) { |
||||||
|
loop: |
||||||
|
for { |
||||||
|
switch ev := termbox.PollEvent(); ev.Type { |
||||||
|
case termbox.EventKey: |
||||||
|
if ev.Key == termbox.KeyEsc { |
||||||
|
break loop |
||||||
|
} |
||||||
|
case termbox.EventResize: |
||||||
|
// Draw(profile)
|
||||||
|
// x, y := termbox.Size()
|
||||||
|
str := fmt.Sprintf("(%d:%d)", ev.Width, ev.Height) |
||||||
|
drawScreen(str + ": <red>Hello world</red>, how <white>are</white> <blue>you?</blue>") |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//
|
||||||
|
// Return regular expression that matches all possible color tags, i.e.
|
||||||
|
// </?black>|</?red>| ... |</?white>
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func tagsRegexp() *regexp.Regexp { |
||||||
|
tags := []string{} |
||||||
|
|
||||||
|
for color, _ := range colors { |
||||||
|
tags = append(tags, "</?"+color+">") |
||||||
|
} |
||||||
|
|
||||||
|
return regexp.MustCompile(strings.Join(tags, "|")) |
||||||
|
} |
||||||
|
|
||||||
|
//
|
||||||
|
// Return true if a string looks like a tag.
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func isTag(str string) (is bool, open bool) { |
||||||
|
is = (str[0:1] == "<" && str[len(str)-1:] == ">") |
||||||
|
open = (is && str[1:2] != "/") |
||||||
|
return |
||||||
|
} |
||||||
|
|
||||||
|
//
|
||||||
|
// Extract tag name from the given tag, i.e. "<hello>" => "hello"
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func tagName(str string) string { |
||||||
|
if str[1:2] != "/" { |
||||||
|
return str[1 : len(str)-1] |
||||||
|
} else { |
||||||
|
return str[2 : len(str)-1] |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func drawLine(x int, y int, str string) { |
||||||
|
column := 0 |
||||||
|
foreground, background := termbox.ColorDefault, termbox.ColorDefault |
||||||
|
|
||||||
|
for _, token := range just.Split(tagsRegexp(), str) { |
||||||
|
if tag, open := isTag(token); tag { |
||||||
|
if color, ok := colors[tagName(token)]; ok { |
||||||
|
token = "" |
||||||
|
if open { |
||||||
|
foreground = color |
||||||
|
} else { |
||||||
|
foreground = termbox.ColorDefault |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
for _, char := range token { |
||||||
|
termbox.SetCell(x+column, y, char, foreground, background) |
||||||
|
column += 1 |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
func drawScreen(str string) { |
||||||
|
termbox.Clear(termbox.ColorDefault, termbox.ColorDefault) |
||||||
|
for row, line := range strings.Split(str, "\n") { |
||||||
|
drawLine(0, row, line) |
||||||
|
} |
||||||
|
termbox.Flush() |
||||||
|
} |
Loading…
Reference in new issue