113 lines
2.2 KiB
Go
113 lines
2.2 KiB
Go
package editor
|
|
|
|
import (
|
|
"timshome.page/gilo/editor/highlight"
|
|
"timshome.page/gilo/gilo"
|
|
"timshome.page/gilo/key"
|
|
)
|
|
|
|
type search struct {
|
|
cursor *gilo.Point
|
|
offset *gilo.Point
|
|
hlLine int
|
|
hl []int
|
|
direction int
|
|
lastMatch int
|
|
}
|
|
|
|
func newSearch() *search {
|
|
return &search{
|
|
cursor: gilo.DefaultPoint(),
|
|
offset: gilo.DefaultPoint(),
|
|
hlLine: -1,
|
|
hl: []int{},
|
|
lastMatch: -1,
|
|
direction: 1,
|
|
}
|
|
}
|
|
|
|
func (e *editor) find() {
|
|
e.search.cursor.X = e.cursor.X
|
|
e.search.cursor.Y = e.cursor.Y
|
|
e.search.offset.X = e.offset.X
|
|
e.search.offset.Y = e.offset.Y
|
|
|
|
query := e.prompt("Search: %s (Use ESC/Arrows/Enter)", e.findCallback)
|
|
|
|
if query == "" {
|
|
e.cursor.X = e.search.cursor.X
|
|
e.cursor.Y = e.search.cursor.Y
|
|
e.offset.X = e.search.offset.X
|
|
e.offset.Y = e.search.offset.Y
|
|
|
|
return
|
|
}
|
|
}
|
|
|
|
func (e *editor) findCallback(query string, ch string) {
|
|
if e.search.hlLine != -1 && e.search.hl != nil {
|
|
staleRow := e.document.GetRow(e.search.hlLine)
|
|
for i, val := range e.search.hl {
|
|
staleRow.Hl[i] = val
|
|
}
|
|
e.search.hl = nil
|
|
e.search.hlLine = -1
|
|
}
|
|
|
|
if ch == string(key.Enter) || ch == string(key.Esc) {
|
|
e.search.lastMatch = -1
|
|
e.search.direction = 1
|
|
return
|
|
} else if ch == keyRight || ch == keyDown {
|
|
e.search.direction = 1
|
|
} else if ch == keyLeft || ch == keyUp {
|
|
e.search.direction = -1
|
|
} else {
|
|
e.search.lastMatch = -1
|
|
e.search.direction = 1
|
|
}
|
|
|
|
if e.search.lastMatch == -1 {
|
|
e.search.direction = 1
|
|
}
|
|
|
|
if len(query) == 0 {
|
|
return
|
|
}
|
|
|
|
current := e.search.lastMatch
|
|
|
|
for i := 0; i < e.document.RowCount(); i++ {
|
|
current += e.search.direction
|
|
|
|
if current == -1 {
|
|
current = e.document.RowCount() - 1
|
|
} else if current == e.document.RowCount() {
|
|
current = 0
|
|
}
|
|
|
|
row := e.document.GetRow(current)
|
|
matchIndex := row.Search(query)
|
|
if matchIndex == -1 {
|
|
continue
|
|
}
|
|
|
|
e.search.lastMatch = current
|
|
e.cursor.Y = current
|
|
e.cursor.X = row.RenderXtoCursorX(matchIndex)
|
|
e.offset.Y = e.document.RowCount()
|
|
|
|
// Update highlighting of search result
|
|
e.search.hlLine = current
|
|
e.search.hl = make([]int, row.RenderSize())
|
|
for i, val := range row.Hl {
|
|
e.search.hl[i] = val
|
|
}
|
|
for x := matchIndex; x < matchIndex+len(query); x++ {
|
|
row.Hl[x] = highlight.Match
|
|
}
|
|
|
|
break
|
|
}
|
|
}
|