1
0
Fork 0
gilo/editor/editor.go

171 lines
3.3 KiB
Go
Raw Normal View History

2021-04-13 14:43:31 -04:00
// Package editor The main interface/implementation of the editor object
2021-03-19 16:36:02 -04:00
package editor
2021-03-19 17:03:56 -04:00
import (
2021-04-01 13:25:59 -04:00
"fmt"
"time"
"timshome.page/gilo/editor/document"
2021-04-13 14:54:44 -04:00
"timshome.page/gilo/internal/gilo"
2021-04-07 13:10:40 -04:00
"timshome.page/gilo/key"
"timshome.page/gilo/terminal"
2021-03-19 17:03:56 -04:00
)
2021-03-24 15:09:28 -04:00
// ----------------------------------------------------------------------------
// !Editor
// ----------------------------------------------------------------------------
2021-04-01 13:25:59 -04:00
type statusMsg struct {
message string
created time.Time
}
type editor struct {
2021-04-02 10:48:51 -04:00
screen *terminal.Screen
2021-04-13 14:54:44 -04:00
cursor *gilo.Point
offset *gilo.Point
doc *document.Document
2021-04-02 10:48:51 -04:00
status *statusMsg
search *search
quitTimes uint8
2021-04-02 10:48:51 -04:00
renderX int
2021-03-23 15:51:59 -04:00
}
2021-04-02 15:36:43 -04:00
func NewEditor() *editor {
2021-04-01 13:25:59 -04:00
// Subtract rows for status bar and message bar/prompt
2021-04-09 13:48:39 -04:00
screen := terminal.Size()
2021-04-01 13:25:59 -04:00
screen.Rows -= 2
2021-04-01 09:41:16 -04:00
2021-04-01 13:25:59 -04:00
status := &statusMsg{
"",
time.Now(),
}
2021-03-31 09:43:47 -04:00
return &editor{
screen,
2021-04-13 14:54:44 -04:00
gilo.DefaultPoint(),
gilo.DefaultPoint(),
2021-04-09 13:48:39 -04:00
document.NewDocument(),
2021-04-01 13:25:59 -04:00
status,
newSearch(),
2021-04-13 14:54:44 -04:00
gilo.QuitTimes,
2021-03-31 14:56:46 -04:00
0,
2021-03-31 09:43:47 -04:00
}
2021-03-22 09:12:39 -04:00
}
2021-03-30 18:29:23 -04:00
func (e *editor) Open(filename string) {
e.doc.Open(filename)
2021-03-30 18:00:06 -04:00
}
2021-04-06 10:59:24 -04:00
func (e *editor) SetStatusMessage(template string, a ...interface{}) {
e.status = &statusMsg{
fmt.Sprintf(template, a...),
time.Now(),
}
}
func (e *editor) ProcessKeypress() bool {
ch, _ := terminal.ReadKey()
return e.processKeypressChar(ch)
}
func (e *editor) save() {
if e.doc.Filename == "" {
e.doc.Filename = e.prompt("Save as: %s (ESC to cancel)", nil)
if e.doc.Filename == "" {
e.SetStatusMessage("Save aborted")
}
2021-04-06 09:58:45 -04:00
}
2021-04-02 19:24:20 -04:00
size := e.doc.Save()
2021-04-01 20:23:51 -04:00
if size > 0 {
e.SetStatusMessage("%d bytes written to disk", size)
} else {
e.SetStatusMessage("Failed to save file")
}
}
2021-04-06 16:37:58 -04:00
func (e *editor) prompt(prompt string, callback func(string, string)) string {
2021-04-13 14:54:44 -04:00
buf := gilo.NewBuffer()
2021-04-02 19:24:20 -04:00
2021-04-06 09:58:45 -04:00
// Show the prompt message
e.SetStatusMessage(prompt, "")
e.RefreshScreen()
2021-04-02 19:24:20 -04:00
for {
if buf.Len() > 0 {
e.SetStatusMessage(prompt, buf.ToString())
2021-04-06 09:58:45 -04:00
e.RefreshScreen()
2021-04-02 19:24:20 -04:00
}
ch, _ := terminal.ReadKey()
if ch == key.Enter {
if buf.Len() != 0 {
e.SetStatusMessage("")
2021-04-06 16:37:58 -04:00
if callback != nil {
callback(buf.ToString(), string(ch))
}
2021-04-02 19:24:20 -04:00
return buf.ToString()
}
2021-04-06 09:58:45 -04:00
} else if key.IsAscii(ch) && !key.IsCtrl(ch) {
buf.AppendRune(ch)
} else if ch == key.Backspace || ch == key.Ctrl('h') {
buf.Truncate(buf.Len() - 1)
} else if ch == key.Esc {
k := parseEscapeSequence()
if k == keyDelete {
buf.Truncate(buf.Len() - 1)
2021-04-06 16:37:58 -04:00
} else if k == string(key.Esc) {
e.SetStatusMessage("")
2021-04-06 16:37:58 -04:00
if callback != nil {
callback(buf.ToString(), k)
}
return ""
2021-04-06 16:37:58 -04:00
} else {
if callback != nil {
callback(buf.ToString(), k)
}
}
2021-04-02 19:24:20 -04:00
}
2021-04-06 16:37:58 -04:00
if callback != nil {
callback(buf.ToString(), string(ch))
}
2021-04-02 19:24:20 -04:00
}
}
2021-04-01 16:17:13 -04:00
func (e *editor) insertChar(ch rune) {
if e.cursor.Y == e.doc.RowCount() {
e.doc.AppendRow("")
2021-04-01 16:17:13 -04:00
}
e.doc.InsertChar(e.cursor, ch)
2021-04-02 14:52:44 -04:00
e.cursor.X += 1
2021-04-01 16:17:13 -04:00
}
2021-04-02 10:48:51 -04:00
func (e *editor) delChar() {
if e.cursor.Y == e.doc.RowCount() {
2021-04-02 10:48:51 -04:00
return
}
if e.cursor.X == 0 && e.cursor.Y == 0 {
return
}
2021-04-02 14:52:44 -04:00
if e.cursor.X > 0 {
2021-04-02 15:36:43 -04:00
at := e.cursor
at.X -= 1
e.doc.DelChar(at)
} else {
// Move cursor to the current end of the previous line
e.cursor.X = e.doc.GetRow(e.cursor.Y - 1).Size()
// Move the contents of the current row to the previous
e.doc.MergeRows(e.cursor.Y-1, e.cursor.Y)
e.cursor.Y -= 1
2021-04-02 10:48:51 -04:00
}
}