-
Notifications
You must be signed in to change notification settings - Fork 1
/
ziti.go
219 lines (196 loc) · 6.24 KB
/
ziti.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package ziti
import (
"fmt"
"syscall"
"time"
termbox "github.com/nsf/termbox-go"
)
/* Ziti -- A very simple editor in less than 1000 lines of Go code .
*
* -----------------------------------------------------------------------
*
* Copyright (c) 2018, Kristofer Younger <kryounger at gmail dot com>
* (who ripped out all the highlighting stuff)
* based on the work of https://github.com/antirez/kilo
* which was marked
* Copyright (C) 2016 Salvatore Sanfilippo <antirez at gmail dot com>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* met:
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTabILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES LOSS OF USE,
* DATA, OR PROFITS OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
const zitiVersion = "1.4"
const zitiListBuffers = "*Ziti Buffers*"
const tabWidth = 4
// Ziti is the top-level exported type
type Ziti struct {
ziti *editor
}
/* This structure represents a single line of the file we are editing. */
type erow struct {
idx int /* Row index in the file, zero-based. */
size int /* Size of the row, excluding the null term. */
rsize int /* Size of the rendered row. */
runes []rune //string /* Row content. */
render []rune /* Row content "rendered" for screen (for Tabs). */
}
type cursor struct {
r int /* Cursor row position */
c int /* Cursor column position */
ro int /* Cursor rowoffset */
co int /* Cursor coloffset */
}
// cursor rowoffset is the number of rows into the file of the 0-th
// screenrow. so if ro is 500, then the 0th row of the screen is
// looking at the 500th row in the file.
// It's the "scroll" offset
type editor struct {
events chan termbox.Event
buffers []*buffer
cb *buffer
screenrows int /* Number of rows that we can show */
screencols int /* Number of cols that we can show */
pastebuffer string
quitTimes int
done bool
statusmsg string
statusmsgTime time.Time
fgcolor termbox.Attribute
bgcolor termbox.Attribute
}
type buffer struct {
point cursor
mark cursor
markSet bool
numrows int /* Number of rows in file */
rows []*erow /* Rows */
dirty bool /* File modified but not saved. */
readonly bool
filename string /* Currently open filename */
}
func (e *editor) checkErr(er error) {
if er != nil {
e.editorSetStatusMessage("%s", er)
}
}
// KEY constants
const (
KeyNull = 0 /* NULL ctrl-space set mark */
CtrlA = 1 /* Ctrl-a BOL */
CtrlB = 2 /* Ctrl-B list buffers */
CtrlC = 3 /* Ctrl-c copy */
CtrlE = 5 /* Ctrl-e EOL */
CtrlD = 4 /* Ctrl-d del forward? */
CtrlF = 6 /* Ctrl-f find */
CtrlH = 8 /* Ctrl-h del backward*/
Tab = 9 /* Tab */
CtrlK = 11 /* Ctrl+k killToEOL */
CtrlL = 12 /* Ctrl+l redraw */
Enter = 13 /* Enter */
CtrlN = 14 /* Ctrl+n nextBuffer */
CtrlO = 15 /* Ctrl+Oh load(open) file */
CtrlQ = 17 /* Ctrl-q quit*/
CtrlS = 19 /* Ctrl-s save*/
CtrlU = 21 /* Ctrl-u number of times??*/
CtrlV = 22 /* Ctrl-V paste */
CtrlW = 23 /* Ctrl-W kill buffer */
CtrlX = 24 /* Ctrl-X cut */
CtrlY = 25 /* Help */
CtrlZ = 26 /* ?? */
Esc = 27 /* Escape */
Space = 32 /* Space */
Backspace = 127 /* Backspace */
)
// Cursor movement keys
const (
ArrowLeft = termbox.KeyArrowLeft
ArrowRight = termbox.KeyArrowRight
ArrowUp = termbox.KeyArrowUp
ArrowDown = termbox.KeyArrowDown
DelKey = termbox.KeyDelete
HomeKey = termbox.KeyHome
EndKey = termbox.KeyEnd
PageUp = termbox.KeyPgup
PageDown = termbox.KeyPgdn
)
// State contains the state of a terminal.
type State struct {
termios syscall.Termios
}
// NewEditor generates a new editor for use
func (e *editor) initEditor() {
e.done = false
e.buffers = []*buffer{}
e.addNewBuffer()
e.cb.point.c, e.cb.point.r = 0, 0
e.cb.point.ro, e.cb.point.co = 0, 0
e.cb.numrows = 0
e.cb.rows = []*erow{}
e.cb.dirty = false
e.screencols, e.screenrows = termbox.Size()
e.screenrows -= 2 /* Get room for status bar. */
e.quitTimes = 3
e.fgcolor, e.bgcolor = termbox.ColorDefault, termbox.ColorDefault // retrieved from environment
}
func (e *editor) resize() {
e.screencols, e.screenrows = termbox.Size()
e.screenrows -= 2 /* Get room for status bar. */
}
func (e *editor) readOnly() {
e.editorSetStatusMessage("buffer %s is Read Only", e.cb.filename)
}
// Start runs an editor
func (z *Ziti) Start(filename string) {
err := termbox.Init()
if err != nil {
panic(err)
}
defer termbox.Close()
z.ziti = &editor{}
e := z.ziti
e.initEditor()
err = e.editorOpen(filename)
if err != nil {
termbox.Close()
fmt.Printf("ziti: error %s", err)
}
termbox.SetOutputMode(termbox.OutputNormal)
termbox.SetInputMode(termbox.InputAlt | termbox.InputEsc | termbox.InputMouse)
termbox.Clear(termbox.ColorDefault, termbox.ColorDefault)
e.editorSetStatusMessage("CTRL-Y = HELP | Ctrl-S = save | Ctrl-Q = quit | Ctrl-F = find ")
e.events = make(chan termbox.Event, 20)
go func() {
for {
e.events <- termbox.PollEvent()
}
}()
for e.done != true {
e.editorRefreshScreen(true)
select {
case ev := <-e.events:
e.editorProcessEvent(ev)
termbox.Flush()
}
}
}