sampler-fork/component/layout.go

228 lines
5.7 KiB
Go
Raw Normal View History

2019-02-24 04:49:09 +00:00
package component
2019-01-31 00:02:38 +00:00
import (
2019-02-24 04:49:09 +00:00
"github.com/sqshq/sampler/component/runchart"
"github.com/sqshq/sampler/config"
2019-02-11 02:51:55 +00:00
"github.com/sqshq/sampler/console"
ui "github.com/sqshq/termui"
2019-01-31 00:02:38 +00:00
)
type Layout struct {
2019-02-11 02:51:55 +00:00
ui.Block
Components []Component
ChangeModeEvents chan Mode
2019-02-25 00:08:36 +00:00
statusbar *StatusBar
menu *Menu
2019-02-25 00:08:36 +00:00
mode Mode
selection int
2019-01-31 00:02:38 +00:00
}
2019-02-11 02:51:55 +00:00
type Mode rune
const (
ModeDefault Mode = 0
ModeComponentSelect Mode = 1
ModeMenuOptionSelect Mode = 2
ModeComponentMove Mode = 3
ModeComponentResize Mode = 4
ModeChartPinpoint Mode = 5
)
2019-01-31 00:02:38 +00:00
const (
2019-02-26 04:36:23 +00:00
columnsCount = 80
rowsCount = 60
2019-02-25 00:37:57 +00:00
statusbarHeight = 1
2019-01-31 00:02:38 +00:00
)
2019-02-25 00:08:36 +00:00
func NewLayout(width, height int, statusline *StatusBar, menu *Menu) *Layout {
2019-01-31 00:02:38 +00:00
2019-02-11 02:51:55 +00:00
block := *ui.NewBlock()
2019-01-31 00:02:38 +00:00
block.SetRect(0, 0, width, height)
2019-02-25 00:37:57 +00:00
statusline.SetRect(0, height-statusbarHeight, width, height)
2019-01-31 00:02:38 +00:00
return &Layout{
Block: block,
Components: make([]Component, 0),
2019-02-25 00:08:36 +00:00
statusbar: statusline,
menu: menu,
mode: ModeDefault,
selection: 0,
ChangeModeEvents: make(chan Mode, 10),
2019-01-31 00:02:38 +00:00
}
}
func (l *Layout) AddComponent(Type config.ComponentType, drawable ui.Drawable, title string, position config.Position, size config.Size, refreshRateMs int) {
l.Components = append(l.Components, Component{Type, drawable, title, position, size, refreshRateMs})
}
func (l *Layout) GetComponents(Type config.ComponentType) []ui.Drawable {
2019-02-11 02:51:55 +00:00
var components []ui.Drawable
for _, component := range l.Components {
if component.Type == Type {
components = append(components, component.Drawable)
}
}
return components
2019-01-31 00:02:38 +00:00
}
func (l *Layout) changeMode(m Mode) {
l.mode = m
l.ChangeModeEvents <- m
}
2019-02-11 02:51:55 +00:00
func (l *Layout) HandleConsoleEvent(e string) {
switch e {
case console.KeyEnter:
switch l.mode {
case ModeComponentSelect:
l.menu.choose()
l.changeMode(ModeMenuOptionSelect)
2019-02-11 02:51:55 +00:00
case ModeMenuOptionSelect:
option := l.menu.getSelectedOption()
switch option {
case MenuOptionMove:
l.changeMode(ModeComponentMove)
2019-02-11 02:51:55 +00:00
l.menu.moveOrResize()
case MenuOptionResize:
l.changeMode(ModeComponentResize)
2019-02-11 02:51:55 +00:00
l.menu.moveOrResize()
case MenuOptionPinpoint:
l.changeMode(ModeChartPinpoint)
2019-02-11 02:51:55 +00:00
l.menu.idle()
2019-02-15 04:34:45 +00:00
chart := l.getSelectedComponent().Drawable.(*runchart.RunChart)
2019-02-11 02:51:55 +00:00
chart.MoveSelection(0)
2019-02-11 04:06:48 +00:00
case MenuOptionResume:
l.changeMode(ModeDefault)
2019-02-11 02:51:55 +00:00
l.menu.idle()
}
case ModeComponentMove:
fallthrough
case ModeComponentResize:
l.menu.idle()
l.changeMode(ModeDefault)
2019-02-11 02:51:55 +00:00
}
case console.KeyEsc:
switch l.mode {
case ModeChartPinpoint:
2019-02-15 04:34:45 +00:00
chart := l.getSelectedComponent().Drawable.(*runchart.RunChart)
2019-02-11 02:51:55 +00:00
chart.DisableSelection()
fallthrough
case ModeComponentSelect:
fallthrough
case ModeMenuOptionSelect:
l.menu.idle()
l.changeMode(ModeDefault)
2019-02-11 02:51:55 +00:00
}
case console.KeyLeft:
switch l.mode {
case ModeDefault:
l.changeMode(ModeComponentSelect)
2019-02-11 02:51:55 +00:00
l.menu.highlight(l.getComponent(l.selection))
case ModeChartPinpoint:
2019-02-15 04:34:45 +00:00
chart := l.getSelectedComponent().Drawable.(*runchart.RunChart)
2019-02-11 02:51:55 +00:00
chart.MoveSelection(-1)
case ModeComponentSelect:
if l.selection > 0 {
l.selection--
}
l.menu.highlight(l.getComponent(l.selection))
case ModeComponentMove:
l.getSelectedComponent().Move(-1, 0)
case ModeComponentResize:
l.getSelectedComponent().Resize(-1, 0)
}
case console.KeyRight:
switch l.mode {
case ModeDefault:
l.changeMode(ModeComponentSelect)
2019-02-11 02:51:55 +00:00
l.menu.highlight(l.getComponent(l.selection))
case ModeChartPinpoint:
2019-02-15 04:34:45 +00:00
chart := l.getSelectedComponent().Drawable.(*runchart.RunChart)
2019-02-11 02:51:55 +00:00
chart.MoveSelection(1)
case ModeComponentSelect:
if l.selection < len(l.Components)-1 {
2019-02-11 02:51:55 +00:00
l.selection++
}
l.menu.highlight(l.getComponent(l.selection))
case ModeComponentMove:
l.getSelectedComponent().Move(1, 0)
case ModeComponentResize:
l.getSelectedComponent().Resize(1, 0)
}
case console.KeyUp:
switch l.mode {
2019-02-16 03:46:03 +00:00
case ModeDefault:
l.changeMode(ModeComponentSelect)
2019-02-16 03:46:03 +00:00
l.menu.highlight(l.getComponent(l.selection))
case ModeComponentSelect:
if l.selection > 0 {
l.selection--
}
l.menu.highlight(l.getComponent(l.selection))
2019-02-11 02:51:55 +00:00
case ModeMenuOptionSelect:
l.menu.up()
case ModeComponentMove:
l.getSelectedComponent().Move(0, -1)
case ModeComponentResize:
l.getSelectedComponent().Resize(0, -1)
}
case console.KeyDown:
switch l.mode {
2019-02-16 03:46:03 +00:00
case ModeDefault:
l.changeMode(ModeComponentSelect)
2019-02-16 03:46:03 +00:00
l.menu.highlight(l.getComponent(l.selection))
case ModeComponentSelect:
if l.selection < len(l.Components)-1 {
2019-02-16 03:46:03 +00:00
l.selection++
}
l.menu.highlight(l.getComponent(l.selection))
2019-02-11 02:51:55 +00:00
case ModeMenuOptionSelect:
l.menu.down()
case ModeComponentMove:
l.getSelectedComponent().Move(0, 1)
case ModeComponentResize:
l.getSelectedComponent().Resize(0, 1)
}
}
}
2019-02-11 02:51:55 +00:00
func (l *Layout) ChangeDimensions(width, height int) {
l.SetRect(0, 0, width, height)
2019-01-31 00:02:38 +00:00
}
// TODO func to get prev/next component navigating left/right/top/bottom
func (l *Layout) getComponent(i int) Component {
return l.Components[i]
}
func (l *Layout) getSelectedComponent() *Component {
return &l.Components[l.selection]
}
2019-02-11 02:51:55 +00:00
func (l *Layout) Draw(buffer *ui.Buffer) {
2019-01-31 00:02:38 +00:00
2019-02-11 02:51:55 +00:00
columnWidth := float64(l.GetRect().Dx()) / columnsCount
2019-02-25 00:37:57 +00:00
rowHeight := float64(l.GetRect().Dy()-statusbarHeight) / rowsCount
2019-01-31 00:02:38 +00:00
for _, component := range l.Components {
2019-01-31 00:02:38 +00:00
2019-01-31 01:41:51 +00:00
x1 := float64(component.Position.X) * columnWidth
y1 := float64(component.Position.Y) * rowHeight
x2 := x1 + float64(component.Size.X)*columnWidth
y2 := y1 + float64(component.Size.Y)*rowHeight
2019-01-31 00:02:38 +00:00
2019-01-31 01:41:51 +00:00
component.Drawable.SetRect(int(x1), int(y1), int(x2), int(y2))
2019-02-03 03:30:45 +00:00
component.Drawable.Draw(buffer)
2019-01-31 00:02:38 +00:00
}
2019-02-11 02:51:55 +00:00
2019-02-25 00:37:57 +00:00
l.statusbar.SetRect(
0, l.GetRect().Dy()-statusbarHeight,
l.GetRect().Dx(), l.GetRect().Dy())
2019-02-11 02:51:55 +00:00
l.menu.Draw(buffer)
2019-02-25 00:08:36 +00:00
l.statusbar.Draw(buffer)
2019-01-31 00:02:38 +00:00
}