2017-11-04 21:29:15 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mediocregopher/ginger/gim/geo"
|
|
|
|
"github.com/mediocregopher/ginger/gim/terminal"
|
|
|
|
)
|
|
|
|
|
|
|
|
var lineSegments = func() map[[2]geo.XY]string {
|
|
|
|
m := map[[2]geo.XY]string{
|
2017-11-23 19:19:32 +00:00
|
|
|
{geo.Left, geo.Right}: "─",
|
|
|
|
{geo.Down, geo.Up}: "│",
|
|
|
|
{geo.Right, geo.Down}: "┌",
|
|
|
|
{geo.Left, geo.Down}: "┐",
|
|
|
|
{geo.Right, geo.Up}: "└",
|
|
|
|
{geo.Left, geo.Up}: "┘",
|
2017-11-04 21:29:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// the inverse segments use the same characters
|
|
|
|
for seg, str := range m {
|
|
|
|
seg[0], seg[1] = seg[1], seg[0]
|
|
|
|
m[seg] = str
|
|
|
|
}
|
|
|
|
return m
|
|
|
|
}()
|
|
|
|
|
|
|
|
var edgeSegments = map[geo.XY]string{
|
|
|
|
geo.Up: "┴",
|
|
|
|
geo.Down: "┬",
|
|
|
|
geo.Left: "┤",
|
|
|
|
geo.Right: "├",
|
|
|
|
}
|
|
|
|
|
|
|
|
// actual unicode arrows were fucking up my terminal, and they didn't even
|
|
|
|
// connect properly with the line segments anyway
|
|
|
|
var arrows = map[geo.XY]string{
|
|
|
|
geo.Up: "^",
|
|
|
|
geo.Down: "v",
|
|
|
|
geo.Left: "<",
|
|
|
|
geo.Right: ">",
|
|
|
|
}
|
|
|
|
|
2018-03-03 17:32:40 +00:00
|
|
|
type line struct {
|
|
|
|
from, to *box
|
|
|
|
toI int
|
|
|
|
}
|
2017-11-04 21:29:15 +00:00
|
|
|
|
2017-11-23 19:19:32 +00:00
|
|
|
// given the "primary" direction the line should be headed, picks a possible
|
|
|
|
// secondary one which may be used to detour along the path in order to reach
|
|
|
|
// the destination (in the case that the two boxes are diagonal from each other)
|
|
|
|
func (l line) secondaryDir(primary geo.XY) geo.XY {
|
2018-03-03 17:32:40 +00:00
|
|
|
fromRect, toRect := l.from.rect(), l.to.rect()
|
2017-11-23 19:19:32 +00:00
|
|
|
rels := make([]int, len(geo.Units))
|
|
|
|
for i, dir := range geo.Units {
|
2018-03-03 17:32:40 +00:00
|
|
|
rels[i] = toRect.EdgeCoord(dir.Inv()) - fromRect.EdgeCoord(dir)
|
2017-11-23 19:19:32 +00:00
|
|
|
if dir == geo.Up || dir == geo.Left {
|
|
|
|
rels[i] *= -1
|
|
|
|
}
|
2017-11-04 21:29:15 +00:00
|
|
|
}
|
|
|
|
|
2017-11-23 19:19:32 +00:00
|
|
|
var secondary geo.XY
|
|
|
|
var secondaryMax int
|
|
|
|
var secondarySet bool
|
|
|
|
for i, rel := range rels {
|
|
|
|
if geo.Units[i] == primary {
|
|
|
|
continue
|
|
|
|
} else if geo.Units[i][0] == 0 && primary[0] == 0 {
|
|
|
|
continue
|
|
|
|
} else if geo.Units[i][1] == 0 && primary[1] == 0 {
|
|
|
|
continue
|
|
|
|
} else if !secondarySet || rel > secondaryMax {
|
|
|
|
secondary = geo.Units[i]
|
|
|
|
secondaryMax = rel
|
|
|
|
secondarySet = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return secondary
|
|
|
|
}
|
|
|
|
|
2018-03-03 17:32:40 +00:00
|
|
|
//func (l line) startEnd(flowDir, secFlowDir geo.XY) (geo.XY, geo.XY) {
|
|
|
|
// from, to := *(l.from), *(l.to)
|
|
|
|
// start := from.rect().EdgeMidpoint(flowDir, rounder) // ezpz
|
|
|
|
//}
|
|
|
|
|
|
|
|
func (l line) draw(term *terminal.Terminal, flowDir, secFlowDir geo.XY) {
|
|
|
|
from, to := *(l.from), *(l.to)
|
|
|
|
dirSec := l.secondaryDir(flowDir)
|
|
|
|
|
|
|
|
flowDirInv := flowDir.Inv()
|
|
|
|
start := from.rect().Edge(flowDir, secFlowDir).Midpoint(rounder)
|
|
|
|
|
|
|
|
endSlot := l.toI*2 + 1
|
|
|
|
endSlotXY := geo.XY{endSlot, endSlot}
|
|
|
|
end := to.rect().Edge(flowDirInv, secFlowDir)[0].Add(secFlowDir.Mul(endSlotXY))
|
2017-11-23 19:19:32 +00:00
|
|
|
|
2017-11-19 21:39:56 +00:00
|
|
|
mid := start.Midpoint(end, rounder)
|
2017-11-04 21:29:15 +00:00
|
|
|
|
|
|
|
along := func(xy, dir geo.XY) int {
|
|
|
|
if dir[0] != 0 {
|
|
|
|
return xy[0]
|
|
|
|
}
|
|
|
|
return xy[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
var pts []geo.XY
|
2018-03-03 17:32:40 +00:00
|
|
|
midPrim := along(mid, flowDir)
|
2017-11-04 21:29:15 +00:00
|
|
|
endSec := along(end, dirSec)
|
|
|
|
for curr := start; curr != end; {
|
|
|
|
pts = append(pts, curr)
|
2018-03-03 17:32:40 +00:00
|
|
|
if prim := along(curr, flowDir); prim == midPrim {
|
2017-11-04 21:29:15 +00:00
|
|
|
if sec := along(curr, dirSec); sec != endSec {
|
|
|
|
curr = curr.Add(dirSec)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
2018-03-03 17:32:40 +00:00
|
|
|
curr = curr.Add(flowDir)
|
2017-11-04 21:29:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, pt := range pts {
|
|
|
|
var str string
|
|
|
|
switch {
|
|
|
|
case i == 0:
|
2018-03-03 17:32:40 +00:00
|
|
|
str = edgeSegments[flowDir]
|
2017-11-04 21:29:15 +00:00
|
|
|
case i == len(pts)-1:
|
2018-03-03 17:32:40 +00:00
|
|
|
str = arrows[flowDir]
|
2017-11-04 21:29:15 +00:00
|
|
|
default:
|
|
|
|
prev, next := pts[i-1], pts[i+1]
|
|
|
|
seg := [2]geo.XY{
|
|
|
|
prev.Sub(pt),
|
|
|
|
next.Sub(pt),
|
|
|
|
}
|
|
|
|
str = lineSegments[seg]
|
|
|
|
}
|
|
|
|
term.MoveCursorTo(pt)
|
|
|
|
term.Printf(str)
|
|
|
|
}
|
|
|
|
}
|