-
Notifications
You must be signed in to change notification settings - Fork 0
/
terminal.lua
262 lines (171 loc) · 6.58 KB
/
terminal.lua
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
local LEN = 20
local MAX_LINES = 14
local MAX_INPUT = 20
terminal = {}
cursor = {}
-- ОЧИСТКА ТЕРМИНАЛА КАК ИГРОВОЙ ЭЛЕМЕНТ: потеря памяти, потеря дневника и т.д.
-- Инициализация модуля
function terminal.load()
terminal.lines = {} -- строки терминала
terminal.text = "" -- видимый текст
terminal.input = "" -- вводимый текст
terminal.current = 1 -- верхняя строка терминала
terminal.border = 4 -- размер границ теминала
terminal.icon = {}
terminal.icon.more = love.graphics.newImage("sprites/more.png")
cursor.pos = 1 -- позиция курсора в строке ввода
end
-- Отображение терминала
function terminal.draw()
love.graphics.clear(color.black)
love.graphics.setColor(color.white)
love.graphics.print(utf8.upper(terminal.text), font.mono, terminal.border, terminal.border)
if terminal.current > 1 then
love.graphics.draw(terminal.icon.more, 0, 0)
end
if (terminal.current + MAX_LINES) <= #terminal.lines then
love.graphics.draw(terminal.icon.more, 0, 124)
end
love.graphics.rectangle("fill", 4, 116, 120, 8)
love.graphics.setColor(color.black)
love.graphics.print(utf8.upper(terminal.input), font.mono, terminal.border, 116)
if screen.time % 1 > 0.5 then
cursor.draw()
end
end
-- Обновление видимого текста
function terminal.update()
terminal.text = ""
local i = terminal.current
while i <= (terminal.current + MAX_LINES) and i <= #terminal.lines do
terminal.text = terminal.text .. terminal.lines[i] .. '\n'
i = i + 1
end
end
-- Добавление строки s в конец терминала
function terminal.insert(s)
local lines = terminal.split(s, LEN)
if #lines > MAX_LINES then
terminal.move("end")
end
for i = 1, #lines do
table.insert(terminal.lines, lines[i])
end
if #lines < MAX_LINES then
terminal.move("last")
end
terminal.update()
end
-- Подтверждение ввода
function terminal.enter()
table.insert(terminal.lines, terminal.input)
terminal.move("last")
if terminal.input == "помощь" then
terminal.insert("Здесь нет никакой помощи, ты совершенно один.")
end
terminal.input = ""
cursor.pos = 1
end
-- Удаление символа перед курсором
function terminal.erase()
local s = terminal.input
local len = utf8.len(s)
if cursor.pos == 1 then
return
elseif cursor.pos == len + 1 then
s = utf8.sub(s, 1, len - 1)
else
s = utf8.sub(s, 1, cursor.pos - 2) .. utf8.sub(s, cursor.pos, len)
end
cursor.move("left")
terminal.input = s
end
-- Вставка символа в место курсора
function terminal.write(c)
local s = terminal.input
local len = utf8.len(s)
if len < MAX_INPUT then
if string.find(" !\"#$%&`()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_'abcdefghijklmnopqrstuvwxyz{|}АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдеёжзийклмнопрстуфхцчшщъыьэюя█▒~", c) then
if cursor.pos == 1 then
s = c .. s
elseif cursor.pos == len + 1 then
s = s .. c
else
s = utf8.sub(s, 1, cursor.pos) .. c .. utf8.sub(s, cursor.pos + 1, len)
end
terminal.input = s
cursor.move("right")
end
end
end
-- Вывод курсора на экран
function cursor.draw()
love.graphics.setColor(color.black)
love.graphics.print('█', font.mono, terminal.border + (cursor.pos - 1) * 6, screen.size.y - terminal.border - 8)
end
-- Пролистывание терминала
function terminal.move(dir)
if dir == "up" then
if terminal.current > 1 then
terminal.current = terminal.current - 1
end
elseif dir == "down" then
if terminal.current + MAX_LINES <= #terminal.lines then
terminal.current = terminal.current + 1
end
elseif dir == "end" then
terminal.current = #terminal.lines + 1
elseif dir == "last" then
if terminal.current + MAX_LINES <= #terminal.lines then
terminal.current = #terminal.lines + 1 - MAX_LINES
end
end
terminal.update()
end
-- Проверка на недоступность клетки для курсора
function cursor.empty(line, pos)
if utf8.len(terminal.lines[line]) < pos then
return true
end
return false
end
-- Возвращает последнюю клетку в строке
function cursor.last(line)
print("last:", utf8.len(terminal.line[line]))
return utf8.len(terminal.line[line])
end
-- Перемещение курсора
function cursor.move(dir)
if dir == "left" then
if cursor.pos > 1 then
cursor.pos = cursor.pos - 1
end
end
if dir == "right" then
if cursor.pos <= utf8.len(terminal.input) then
cursor.pos = cursor.pos + 1
end
end
end
-- Делит строку на строки длинны i
-- стоит обработать случай с несколькими пробелами в начале строки, а так же изменить условие цикла
function terminal.split(text, len)
local lines = {}
local l = utf8.len(text) -- количество символов в utf8 кодировке
local n = math.ceil(l / len) -- количество получившихся строк
local s = 1 -- начало текущей строки
local e = s + len - 1 -- конец текущей строки
for i = 1, n do -- проход по всем строкам
lines[i] = utf8.sub(text, s, e) -- отделение строки из текста
if utf8.trim(lines[i]) then -- если в начале текущей строки пробел
s = s + 1 -- изменяем начало текущей строки
if e < l then
e = e + 1 -- изменяем конец текущей строки
end
lines[i] = utf8.sub(text, s, e) -- производим отделение строки заново
end
s = e + 1
e = s + len - 1
end
return lines
end