-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermcli
More file actions
391 lines (325 loc) · 11 KB
/
Copy pathtermcli
File metadata and controls
391 lines (325 loc) · 11 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
-- ============================================
-- KIRITO SOFTWORKS TERMINAL CLIENT v1.0
-- Makes this computer act as a terminal for multiple servers
-- Connects to advanced computers and displays their output
-- ============================================
local TERM = {
version = "1.0",
servers = {}, -- List of connected servers
activeServer = nil,
running = true,
history = {},
modemSide = nil
}
-- ============================================
-- MODEM SETUP
-- ============================================
function TERM:openModem()
local sides = {"top", "bottom", "left", "right", "front", "back"}
for _, side in ipairs(sides) do
if peripheral.getType(side) == "modem" then
self.modemSide = side
rednet.open(side)
return true
end
end
for _, name in ipairs(peripheral.getNames()) do
if peripheral.getType(name) == "modem" then
self.modemSide = name
rednet.open(name)
return true
end
end
return false
end
-- ============================================
-- SERVER DISCOVERY & CONNECTION
-- ============================================
function TERM:discoverServers()
print("Scanning for KSW servers...")
self.servers = {}
rednet.broadcast({ action = "ks_discover", type = "terminal" }, "ksw_term")
local timer = os.startTimer(3)
local found = 0
while true do
local event, id, msg, protocol = os.pullEvent()
if event == "rednet_message" and protocol == "ksw_term" and msg then
if msg.ks_server then
table.insert(self.servers, {
id = id,
name = msg.name or "Server " .. id,
type = msg.server_type or "generic",
version = msg.version or "unknown"
})
found = found + 1
print(" Found: " .. msg.name .. " (ID: " .. id .. ")")
end
elseif event == "timer" and id == timer then
break
end
end
return found
end
function TERM:connectToServer(serverId)
rednet.send(serverId, {
action = "ks_connect",
termWidth = term.getSize(),
termHeight = select(2, term.getSize())
}, "ksw_term")
local timer = os.startTimer(3)
while true do
local event, id, msg = os.pullEvent()
if event == "rednet_message" and id == serverId then
if msg.ks_accepted then
self.activeServer = {
id = serverId,
name = msg.name or "Server " .. serverId,
buffer = {}
}
return true
end
elseif event == "timer" and id == timer then
return false
end
end
end
function TERM:manualConnect()
write("Enter server computer ID: ")
local id = tonumber(read())
if not id then
print("Invalid ID")
return false
end
print("Connecting to " .. id .. "...")
if self:connectToServer(id) then
print("Connected!")
return true
else
print("Connection failed")
return false
end
end
-- ============================================
-- TERMINAL EMULATION
-- ============================================
function TERM:clearScreen()
term.clear()
term.setCursorPos(1,1)
end
function TERM:drawHeader()
local w, h = term.getSize()
term.setCursorPos(1,1)
term.setBackgroundColor(colors.blue)
term.setTextColor(colors.white)
local header = " KSW TERMINAL v" .. self.version .. " "
if self.activeServer then
header = header .. "| " .. self.activeServer.name .. " (ID: " .. self.activeServer.id .. ") "
end
-- Pad to full width
while #header < w do
header = header .. " "
end
print(header:sub(1,w))
term.setBackgroundColor(colors.black)
term.setTextColor(colors.white)
end
function TERM:drawStatusBar(msg)
local w, h = term.getSize()
term.setCursorPos(1, h)
term.setBackgroundColor(colors.gray)
term.setTextColor(colors.white)
local status = " " .. (msg or "F1=Servers F2=Disconnect F3=Clear Q=Quit")
while #status < w do
status = status .. " "
end
term.write(status:sub(1,w))
term.setBackgroundColor(colors.black)
term.setTextColor(colors.white)
end
-- ============================================
-- SERVER SELECTION MENU
-- ============================================
function TERM:serverMenu()
self:clearScreen()
print("===================================================")
print(" KIRITO SOFTWORKS TERMINAL")
print(" Select Server")
print("===================================================")
print()
if #self.servers == 0 then
print("No servers found. Scanning...")
self:discoverServers()
print()
end
if #self.servers == 0 then
print("No servers found.")
print()
print("1. Manual connect")
print("2. Rescan")
print("3. Back")
write("Choice: ")
local c = read()
if c == "1" then
if self:manualConnect() then
return true
end
elseif c == "2" then
return self:serverMenu()
end
return false
end
print("Available servers:")
for i, s in ipairs(self.servers) do
print(" " .. i .. ". " .. s.name .. " [" .. s.type .. "] (ID: " .. s.id .. ")")
end
print()
print("M. Manual connect")
print("R. Rescan")
print("Q. Quit")
print()
write("Select: ")
local choice = read()
if choice:lower() == "m" then
return self:manualConnect()
elseif choice:lower() == "r" then
self.servers = {}
return self:serverMenu()
elseif choice:lower() == "q" then
self.running = false
return false
end
local num = tonumber(choice)
if num and num >= 1 and num <= #self.servers then
print("Connecting to " .. self.servers[num].name .. "...")
if self:connectToServer(self.servers[num].id) then
print("Connected!")
sleep(1)
return true
else
print("Failed to connect")
sleep(2)
return self:serverMenu()
end
end
return false
end
-- ============================================
-- MAIN TERMINAL LOOP
-- ============================================
function TERM:runTerminal()
if not self.activeServer then
if not self:serverMenu() then
return
end
end
self:clearScreen()
-- Request initial screen
rednet.send(self.activeServer.id, { action = "ks_sync" }, "ksw_term")
local cursorX, cursorY = 1, 2
while self.running and self.activeServer do
self:drawHeader()
self:drawStatusBar()
-- Position cursor
term.setCursorPos(cursorX, cursorY)
-- Wait for input or server message
local timer = os.startTimer(0.1)
local event = {os.pullEvent()}
if event[1] == "rednet_message" then
local id, msg = event[2], event[3]
if id == self.activeServer.id and msg then
-- Server sent display data
if msg.ks_display then
-- Clear and redraw
self:clearScreen()
self:drawHeader()
-- Draw content
for i, line in ipairs(msg.ks_display) do
term.setCursorPos(1, i + 1)
term.write(line)
end
cursorX = msg.cursorX or 1
cursorY = (msg.cursorY or 0) + 1
elseif msg.ks_print then
-- Server printed something
term.setCursorPos(1, cursorY)
term.write(msg.ks_print)
cursorY = cursorY + 1
elseif msg.ks_clear then
self:clearScreen()
cursorX, cursorY = 1, 2
elseif msg.ks_cursor then
cursorX = msg.x or 1
cursorY = (msg.y or 0) + 1
elseif msg.ks_disconnect then
print("Server disconnected")
self.activeServer = nil
sleep(2)
return
end
end
elseif event[1] == "key" then
local key = event[2]
-- Function keys
if key == keys.f1 then
-- Server menu
self.activeServer = nil
return self:runTerminal()
elseif key == keys.f2 then
-- Disconnect
rednet.send(self.activeServer.id, { action = "ks_disconnect" }, "ksw_term")
self.activeServer = nil
print("Disconnected")
sleep(1)
return self:runTerminal()
elseif key == keys.f3 then
-- Clear screen request
rednet.send(self.activeServer.id, { action = "ks_clear" }, "ksw_term")
elseif key == keys.q then
-- Quit
self.running = false
rednet.send(self.activeServer.id, { action = "ks_disconnect" }, "ksw_term")
else
-- Send key to server
rednet.send(self.activeServer.id, {
action = "ks_key",
key = key,
keys = keys
}, "ksw_term")
end
elseif event[1] == "char" then
-- Send char to server
rednet.send(self.activeServer.id, {
action = "ks_char",
char = event[2]
}, "ksw_term")
elseif event[1] == "timer" and event[2] == timer then
-- Just a check timer, send ping
rednet.send(self.activeServer.id, { action = "ks_ping" }, "ksw_term")
end
end
end
-- ============================================
-- MAIN
-- ============================================
function main()
term.clear()
term.setCursorPos(1,1)
print("===================================================")
print(" KIRITO SOFTWORKS TERMINAL CLIENT v" .. TERM.version)
print(" Multi-Server Terminal Emulator")
print("===================================================")
print()
if not TERM:openModem() then
print("ERROR: No modem found!")
return
end
print("Modem ready")
print()
while TERM.running do
TERM:runTerminal()
end
term.clear()
term.setCursorPos(1,1)
print("Goodbye!")
end
main()