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 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
|
|
|
|
}
|
|
|
|
|
2021-03-24 14:17:29 -04:00
|
|
|
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
|
|
|
|
document *Document
|
2021-04-02 10:48:51 -04:00
|
|
|
status *statusMsg
|
2021-04-02 10:34:19 -04:00
|
|
|
quitTimes uint8
|
2021-04-02 10:48:51 -04:00
|
|
|
renderX int
|
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()
|
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()
|
|
|
|
document := NewDocument()
|
2021-04-01 13:25:59 -04:00
|
|
|
status := &statusMsg{
|
|
|
|
"",
|
|
|
|
time.Now(),
|
|
|
|
}
|
2021-03-24 14:17:29 -04:00
|
|
|
|
2021-03-31 09:43:47 -04:00
|
|
|
return &editor{
|
|
|
|
screen,
|
|
|
|
cursor,
|
|
|
|
offset,
|
2021-04-01 12:02:17 -04:00
|
|
|
document,
|
2021-04-01 13:25:59 -04:00
|
|
|
status,
|
2021-04-02 10:34:19 -04:00
|
|
|
KiloQuitTimes,
|
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 14:52:44 -04:00
|
|
|
e.document.Row(e.cursor.Y).insertRune(ch, e.cursor.X)
|
|
|
|
e.cursor.X += 1
|
2021-04-02 10:07:37 -04:00
|
|
|
e.document.dirty = true
|
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
|
|
|
|
}
|
|
|
|
|
2021-04-02 14:52:44 -04:00
|
|
|
if e.cursor.X > 0 {
|
|
|
|
e.document.Row(e.cursor.Y).deleteRune(e.cursor.X - 1)
|
|
|
|
e.cursor.X -= 1
|
2021-04-02 10:48:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
e.document.dirty = true
|
|
|
|
}
|