2021-03-19 16:36:02 -04:00
|
|
|
package editor
|
2021-03-19 17:03:56 -04:00
|
|
|
|
|
|
|
import (
|
2021-03-24 15:09:28 -04:00
|
|
|
"fmt"
|
2021-03-24 15:52:35 -04:00
|
|
|
"timshome.page/gilo/fn"
|
2021-03-24 16:23:17 -04:00
|
|
|
"timshome.page/gilo/terminal"
|
2021-03-19 17:03:56 -04:00
|
|
|
)
|
|
|
|
|
2021-03-24 15:52:35 -04:00
|
|
|
const KiloVersion = "0.0.1"
|
|
|
|
|
2021-03-24 15:09:28 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// !Editor
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2021-03-25 12:27:48 -04:00
|
|
|
type cursor struct {
|
|
|
|
x int
|
|
|
|
y int
|
|
|
|
}
|
|
|
|
|
2021-03-24 14:17:29 -04:00
|
|
|
type editor struct {
|
2021-03-25 12:27:48 -04:00
|
|
|
screen *terminal.Screen
|
|
|
|
cursor *cursor
|
2021-03-23 15:51:59 -04:00
|
|
|
}
|
|
|
|
|
2021-03-24 14:17:29 -04:00
|
|
|
func New() *editor {
|
2021-03-25 12:27:48 -04:00
|
|
|
screen := terminal.Size()
|
|
|
|
cursor := &cursor { 0, 0 }
|
2021-03-24 14:17:29 -04:00
|
|
|
|
2021-03-25 12:27:48 -04:00
|
|
|
return &editor{screen, cursor }
|
2021-03-22 09:12:39 -04:00
|
|
|
}
|
|
|
|
|
2021-03-24 14:17:29 -04:00
|
|
|
func (e *editor) RefreshScreen() {
|
2021-03-24 15:09:28 -04:00
|
|
|
ab := newBuffer()
|
|
|
|
|
2021-03-24 16:23:17 -04:00
|
|
|
ab.append(terminal.HideCursor)
|
|
|
|
ab.append(terminal.ResetCursor)
|
2021-03-22 09:12:39 -04:00
|
|
|
|
2021-03-24 15:09:28 -04:00
|
|
|
e.drawRows(ab)
|
2021-03-25 12:46:53 -04:00
|
|
|
ab.append(terminal.MoveCursor(e.cursor.x, e.cursor.y))
|
2021-03-22 09:12:39 -04:00
|
|
|
|
2021-03-24 16:23:17 -04:00
|
|
|
ab.append(terminal.ShowCursor)
|
2021-03-24 15:09:28 -04:00
|
|
|
|
|
|
|
terminal.Write(ab.toString())
|
2021-03-19 17:39:15 -04:00
|
|
|
}
|
|
|
|
|
2021-03-24 14:17:29 -04:00
|
|
|
func (e *editor) ProcessKeypress() bool {
|
2021-03-24 13:24:40 -04:00
|
|
|
ch, _ := terminal.ReadKey()
|
2021-03-19 17:39:15 -04:00
|
|
|
|
|
|
|
// Clean up on exit
|
2021-03-24 16:23:17 -04:00
|
|
|
if ch == fn.Ctrl('q') {
|
|
|
|
terminal.Write(terminal.ClearScreen + terminal.ResetCursor)
|
2021-03-19 17:39:15 -04:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
2021-03-19 17:03:56 -04:00
|
|
|
|
2021-03-25 12:46:53 -04:00
|
|
|
switch ch {
|
|
|
|
case 'w', 'a', 's', 'd':
|
|
|
|
e.moveCursor(ch)
|
|
|
|
default:
|
|
|
|
// Do nothing!
|
|
|
|
}
|
|
|
|
|
2021-03-19 17:03:56 -04:00
|
|
|
return true
|
|
|
|
}
|
2021-03-24 14:17:29 -04:00
|
|
|
|
2021-03-24 15:09:28 -04:00
|
|
|
func (e *editor) drawRows(ab *buffer) {
|
2021-03-25 12:27:48 -04:00
|
|
|
for y :=0; y < e.screen.Rows; y += 1 {
|
|
|
|
if y == e.screen.Rows / 3 {
|
2021-03-24 15:52:35 -04:00
|
|
|
welcome := fmt.Sprintf("Gilo editor -- version %s", KiloVersion)
|
2021-03-25 12:27:48 -04:00
|
|
|
if len(welcome) > e.screen.Cols {
|
|
|
|
welcome = fn.TruncateString(welcome, e.screen.Cols)
|
2021-03-24 15:52:35 -04:00
|
|
|
}
|
|
|
|
|
2021-03-25 12:27:48 -04:00
|
|
|
padding := (e.screen.Cols - len(welcome)) / 2
|
2021-03-24 15:52:35 -04:00
|
|
|
if padding > 0 {
|
|
|
|
ab.appendRune('~')
|
|
|
|
padding--
|
|
|
|
}
|
|
|
|
|
|
|
|
for padding > 0 {
|
|
|
|
padding--
|
|
|
|
ab.appendRune(' ')
|
|
|
|
}
|
|
|
|
|
|
|
|
ab.append(welcome)
|
|
|
|
} else {
|
|
|
|
ab.appendRune('~')
|
|
|
|
}
|
|
|
|
|
2021-03-24 16:23:17 -04:00
|
|
|
ab.append(terminal.ClearLine)
|
2021-03-24 14:17:29 -04:00
|
|
|
|
2021-03-25 12:27:48 -04:00
|
|
|
if y < (e.screen.Rows - 1) {
|
2021-03-24 15:09:28 -04:00
|
|
|
ab.append("\r\n")
|
2021-03-24 14:17:29 -04:00
|
|
|
}
|
|
|
|
}
|
2021-03-25 12:46:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (e *editor) moveCursor (key rune) {
|
|
|
|
switch key {
|
|
|
|
case 'a':
|
|
|
|
e.cursor.x -= 1
|
|
|
|
case 'd':
|
|
|
|
e.cursor.x += 1
|
|
|
|
case 'w':
|
|
|
|
e.cursor.y -= 1
|
|
|
|
case 's':
|
|
|
|
e.cursor.y += 1
|
|
|
|
}
|
2021-03-24 15:52:35 -04:00
|
|
|
}
|