1
0
Fork 0
gilo/internal/editor/editor.go

117 lines
2.1 KiB
Go
Raw Normal View History

2021-04-02 13:11:54 -04:00
// 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"
2021-04-02 15:36:43 -04:00
doc "timshome.page/gilo/internal/editor/document"
2021-04-02 14:52:44 -04:00
"timshome.page/gilo/internal/gilo"
"timshome.page/gilo/internal/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-02 14:52:44 -04:00
cursor *gilo.Point
offset *gilo.Point
2021-04-02 15:36:43 -04:00
document *doc.Document
2021-04-02 10:48:51 -04:00
status *statusMsg
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 {
screen := terminal.Size()
2021-04-01 09:41:16 -04:00
2021-04-01 13:25:59 -04:00
// Subtract rows for status bar and message bar/prompt
screen.Rows -= 2
2021-04-01 09:41:16 -04:00
2021-04-02 14:52:44 -04:00
cursor := gilo.DefaultPoint()
offset := gilo.DefaultPoint()
2021-04-02 15:36:43 -04:00
document := doc.NewDocument()
2021-04-01 13:25:59 -04:00
status := &statusMsg{
"",
time.Now(),
}
2021-03-31 09:43:47 -04:00
return &editor{
screen,
cursor,
offset,
document,
2021-04-01 13:25:59 -04:00
status,
2021-04-02 15:36:43 -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) {
2021-04-02 14:52:44 -04:00
e.document.Open(filename)
2021-03-30 18:00:06 -04:00
}
2021-04-02 12:03:33 -04:00
func (e *editor) Save() {
2021-04-02 14:52:44 -04:00
size := e.document.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-01 13:25:59 -04:00
func (e *editor) SetStatusMessage(template string, a ...interface{}) {
2021-04-01 16:17:13 -04:00
e.status = &statusMsg{
2021-04-01 13:25:59 -04:00
fmt.Sprintf(template, a...),
time.Now(),
}
}
2021-03-26 16:18:03 -04:00
func (e *editor) ProcessKeypress() bool {
2021-03-30 15:45:13 -04:00
ch, _ := terminal.ReadKey()
2021-03-24 15:52:35 -04:00
2021-04-02 11:57:24 -04:00
return e.processKeypressChar(ch)
}
2021-04-01 16:17:13 -04:00
func (e *editor) insertChar(ch rune) {
2021-04-02 14:52:44 -04:00
if e.cursor.Y == e.document.RowCount() {
e.document.AppendRow("")
2021-04-01 16:17:13 -04:00
}
2021-04-02 15:36:43 -04:00
e.document.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() {
2021-04-02 14:52:44 -04:00
if e.cursor.Y == e.document.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.document.DelChar(at)
2021-04-02 14:52:44 -04:00
e.cursor.X -= 1
} else {
// Move cursor to the current end of the previous line
e.cursor.X = e.document.Row(e.cursor.Y - 1).Size()
// Move the contents of the current row to the previous
e.document.MergeRows(e.cursor.Y - 1, e.cursor.Y)
e.cursor.Y -= 1
2021-04-02 10:48:51 -04:00
}
}