File size: 16,371 Bytes
b6a38d7 |
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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 |
DefineClass.Console = {
__parents = { "XWindow" },
IdNode = true,
ZOrder = 200000000,
Dock = "box",
history_queue = false,
history_queue_idx = 0,
completion_list = false,
-- completion popup related
completion_popup = false,
completion_last_suggestion = false, -- used to autoselect a better item on popup refresh
-- used by tab rotation
completion_start_idx = false,
completion_list_idx = 0,
}
function Console:Init()
XEdit:new({
Id = "idEdit",
Dock = "bottom",
TextStyle = "Console",
MaxLen = 2048,
OnTextChanged = function(edit)
XEdit.OnTextChanged(edit)
self:TextChanged()
end,
OnShortcut = function(edit, shortcut, source, ...)
if shortcut == "Tab" then return "continue" end
return XEdit.OnShortcut(edit, shortcut, source, ...)
end
}, self)
self:UpdateMargins()
self.history_queue = {}
end
function Console:UpdateMargins()
self.idEdit.Margins = box(10, 0, 10, VirtualKeyboardHeight() + 10)
end
function Console:TextChanged()
-- wait the text control to update its cursor pos.
if self:IsThreadRunning("UpdateSuggestions") then
return
end
self:CreateThread("UpdateSuggestions", function()
if self.completion_popup then
self:UpdateCompletionList()
self:UpdateAutoCompleteDialog()
elseif self.completion_list and self.completion_start_idx and self.completion_list_idx <= #self.completion_list then
-- Detect rotations so we don't clear the completion state
local text = self.idEdit:GetText()
local completion_text = self.completion_list[self.completion_list_idx].value
if not string.ends_with(text, completion_text) then
self.completion_list = false
self.completion_start_idx = false
self.completion_list_idx = 0
end
else
self.completion_list = false
self.completion_start_idx = false
self.completion_list_idx = 0
end
end)
end
function Console:OnKillFocus(new_focus)
if self.completion_popup then
if not new_focus or not new_focus:IsWithin(self.completion_popup) then
self:CloseAutoComplete()
end
end
XWindow.OnKillFocus(self, new_focus)
end
function Console:delete()
self:CloseAutoComplete()
XWindow.delete(self)
end
function Console:OnShortcut(shortcut, source, ...)
if shortcut == "Enter" then
if self.completion_popup then
self:ApplyActiveSuggestion()
else
local text = self.idEdit:GetText()
self.idEdit:SetText("")
self:Show(false)
if text == "" then
ShowConsoleLogBackground(false, "immediate")
return "break"
end
self:Exec(text)
end
return "break"
elseif shortcut == "Down" then
if not self.completion_popup then
self:HistoryDown()
return "break"
end
elseif shortcut == "Up" then
if not self.completion_popup then
self:HistoryUp()
return "break"
end
elseif shortcut == "Tab" then
if self.completion_popup then
self:ApplyActiveSuggestion()
else
self:TryAutoComplete()
end
return "break"
elseif shortcut == "Escape" then
if self.completion_popup then
self:CloseAutoComplete()
else
self:Show(false)
end
return "break"
end
-- Route unprocessed shortcuts to the list control
if self.completion_popup then
return self.completion_popup.idList:OnShortcut(shortcut, source, ...)
end
end
function Console:UpdateCompletionList()
self.completion_last_suggestion = self:ActiveSuggestion()
local text = self.idEdit:GetText()
local cursor_pos = self.completion_start_idx or self.idEdit:GetCursorCharIdx()
local completion_list = {}
for _, v in ipairs(self.history_queue) do
if v:starts_with(text, "case insensitive") then
completion_list[#completion_list + 1] = { name = v, value = v, kind = "h" }
end
end
self.completion_list = GetAutoCompletionList(text, cursor_pos, completion_list)
end
function Console:TryAutoComplete()
local text = self.idEdit:GetText()
if not self.history_queue then
self:ReadHistory()
end
if text == "" then
self.completion_list = table.map(self.history_queue, function(h)
return { name = h, value = h, kind = "h" }
end)
self:UpdateAutoCompleteDialog()
return
end
local list = self.completion_list
if not list or #list == 0 then
self:UpdateCompletionList()
end
list = self.completion_list
if list and #list < 6 and #list > 0 then
-- tab rotate
if not self.completion_start_idx then
self.completion_start_idx = self.idEdit:GetCursorCharIdx()
local len
for i, text in ipairs(list) do
if not len or len > #text then
len = #text
self.completion_list_idx = i
end
end
else
self.completion_list_idx = self.completion_list_idx + 1
if self.completion_list_idx > #list then
self.completion_list_idx = 1
end
end
self:ApplyActiveSuggestion()
else
self:UpdateAutoCompleteDialog()
end
end
function Console:ApplyActiveSuggestion()
local completed_text = self:ActiveSuggestion()
if not completed_text then
return
end
completed_text = completed_text.value
local text = self.idEdit:GetText()
local replace_end = self.idEdit:GetCursorCharIdx()
local replace_start = self.completion_start_idx or self.idEdit:GetCursorCharIdx()
local lower_text, lower_auto_complete = string.lower(text), string.lower(completed_text)
local found = false
for i = 1, replace_start do
if string.find(lower_auto_complete, string.sub(lower_text, i, replace_start), nil, true) == 1 then
replace_start = i
found = true
break
end
end
local new_text
if found then
new_text = string.format("%s%s%s", string.sub(text, 1, replace_start - 1), completed_text, string.sub(text, replace_end + 1))
else
new_text = string.format("%s%s%s", string.sub(text, 1, replace_start), completed_text, string.sub(text, replace_end + 1))
end
self.idEdit:SetText(new_text)
local new_cursor_pos = (found and replace_start - 1 or replace_start) + string.len(completed_text)
self.idEdit:SetCursor(self.idEdit:CursorFromCharIdx(new_cursor_pos))
if self.completion_popup then
self:CloseAutoComplete()
self.completion_list = false
end
end
function Console:ActiveSuggestion()
local popup = self.completion_popup
local completion_list = self.completion_list
local completion_list_idx = self.completion_list_idx
if popup then
local suggestion_idx = popup.idList.focused_item
local completed_text = completion_list[suggestion_idx]
return completed_text
elseif completion_list and #completion_list > 0 and completion_list_idx > 0 and completion_list_idx <= #completion_list then
return completion_list[completion_list_idx]
end
return false
end
function Console:CloseAutoComplete()
if self.completion_popup then
self.completion_popup:delete()
self.completion_popup = false
end
end
function Console:UpdateAutoCompleteDialog()
self:CloseAutoComplete()
if not self.completion_list or #self.completion_list <= 0 then
return
end
local popup = XPopup:new({
IdNode = true,
AutoFocus = false,
ZOrder = self.ZOrder,
BorderWidth = 1,
BorderColor = RGB(16, 16, 16),
}, self.desktop:GetModalWindow() or self.desktop)
self.completion_popup = popup
local list = XList:new({
Id = "idList",
VScroll = "idScroll",
MaxHeight = 400,
ForceInitialSelection = true,
WorkUnfocused = true,
BorderWidth = 0,
}, popup)
list.OnDoubleClick = function(container_list, item_idx)
self:ApplyActiveSuggestion()
end
XSleekScroll:new({
Id = "idScroll",
Target = "idList",
Dock = "right",
Margins = box(1, 1, 1, 1),
AutoHide = true,
}, popup)
for i, value in ipairs(self.completion_list) do
list:CreateTextItem(Untranslated(string.format("<color 50 50 250>[%s]</color> %s", value.kind or "", value.name)), { Translate = true })
end
local x, _ = self.idEdit:GetCursorXY()
local anchor_box = self.idEdit.box
popup:SetAnchor(sizebox(x, anchor_box:miny(), anchor_box:sizex(), anchor_box:sizey()))
popup:SetAnchorType("top")
popup:Open()
-- Select the best match based on last selection
for i, value in ipairs(self.completion_list) do
if value == self.completion_last_suggestion then
list:SetSelection(i)
end
end
end
function Console:AddHistory(txt)
-- Remove previous copy of the string in the queue and push it in the front
for k, v in ipairs(self.history_queue) do
if v ==txt then
table.remove(self.history_queue, k)
break
end
end
if #self.history_queue >= const.nConsoleHistoryMaxSize then
table.remove(self.history_queue)
end
table.insert(self.history_queue, 1, txt)
self.history_queue_idx = 0
self:StoreHistory()
end
function Console:HistoryDown()
if self.history_queue_idx <= 1 then
self.history_queue_idx = #self.history_queue
else
self.history_queue_idx = self.history_queue_idx - 1
end
self.idEdit:SetText(self.history_queue[self.history_queue_idx] or "")
end
function Console:HistoryUp()
if self.history_queue_idx + 1 <= #self.history_queue then
self.history_queue_idx = self.history_queue_idx + 1
else
self.history_queue_idx = 1
end
self.idEdit:SetText(self.history_queue[self.history_queue_idx] or "")
end
function Console:StoreHistory()
local i = 0
LocalStorage.history_log = {}
for j, k in ipairs(self.history_queue) do
LocalStorage.history_log[j] = k
i = i + 1
end
LocalStorage.history_log[0] = i + 1
SaveLocalStorage()
end
function Console:ReadHistory()
local size = LocalStorage.history_log and LocalStorage.history_log[0] or 0
self.history_queue = {}
for i = 1, size do
table.insert(self.history_queue, LocalStorage.history_log[i])
end
self.history_queue_idx = 0
end
ConsoleRules = {
{ "^!$", "ClearShowMe()" },
{ "^!(.*)", "ShowMe('%s')" },
{ "^~(.*)", "Inspect((%s))" },
{ "^:%s*(.*)", "NetPrintCall('rfnChatMsg', '%s')" },
{ "^*r%s*(.*)", "CreateRealTimeThread(function() %s end) return" },
{ "^*g%s*(.*)", "CreateGameTimeThread(function() %s end) return" },
{ "^(%a[%w.]*)$", "ConsolePrint(print_format(__run(%s)))" },
{ "(.*)", "ConsolePrint(print_format(%s))" },
{ "(.*)", "%s" },
{ "^SSA?A?0%d+ (.*)", "ViewShot([[%s]])" },
}
function Console:Exec(text)
self:AddHistory(text)
AddConsoleLog("> ", true)
AddConsoleLog(text, false)
local err = ConsoleExec(text, ConsoleRules)
if err then ConsolePrint(err) end
end
function Console:ExecuteLast()
if self.history_queue and #self.history_queue > 0 then
self:Exec(self.history_queue[1])
end
end
function Console:Show(show)
local was_visible = self:GetVisible()
self:SetVisible(show)
ShowConsoleLogBackground(show)
self:SetModal(show)
if show and not was_visible then
self.idEdit:SetFocus()
self.idEdit:SetText("")
self:ReadHistory()
end
if not show then
self:CloseAutoComplete()
UnlockCamera("Console")
elseif cameraFly.IsActive() then
LockCamera("Console")
end
end
function OnMsg.DesktopCreated()
CreateConsole()
end
function DestroyConsole()
if rawget(_G, "dlgConsole") then
dlgConsole:delete()
dlgConsole = false
end
SetEngineVar("", "LuaConsole", false)
DestroyConsoleLog()
end
function CreateConsole()
if rawget(_G, "dlgConsole") then
dlgConsole:delete()
end
rawset(_G, "dlgConsole", Console:new({}, GetDevUIViewport()))
dlgConsole:Show(false)
SetEngineVar("", "LuaConsole", true)
end
if FirstLoad and rawget(_G, "ConsoleEnabled") == nil then
ConsoleEnabled = false
end
function ShowConsole(visible)
if not (AreCheatsEnabled() or ConsoleEnabled or Platform.asserts) then
return
end
if visible and not rawget(_G, "dlgConsole") then
CreateConsole()
end
if visible and (Platform.ged or Platform.asserts) then
ShowConsoleLog(true)
end
if rawget(_G, "dlgConsole") then
dlgConsole:Show(visible)
end
end
function ConsoleResize()
if rawget(_G, "dlgConsole") then
dlgConsole:UpdateMargins()
end
ConsoleLogResize()
end
function ConsoleExecuteLast()
if rawget(_G, "dlgConsole") then
dlgConsole:ExecuteLast()
end
end
function ConsoleSetEnabled(enabled)
enabled = enabled or false
ConsoleEnabled = enabled
ShowConsoleLog(enabled)
end
local signature_cache = { }
local function GetFunctionSignature(fn)
if signature_cache[fn] then return signature_cache[fn] end
if not fn or type(fn) ~= "function" then return end
local info = debug.getinfo(fn)
if info.what ~= "Lua" then return end
local err, lua_file = AsyncFileToString(info.short_src)
if err or not lua_file then return end
local lines = string.split(lua_file, "\n")
local line = lines[info.linedefined]
if not line then return end
local _, start_at = string.find(line, "function%s+")
local end_at = string.find(line, ")", start_at)
if not start_at or not end_at then return end
local signature = line
local open_braket_at = string.find(signature, "%(")
local method_from = string.find(line, ":")
local member_from = method_from or string.find(line, "%.")
if member_from and member_from < open_braket_at then
start_at = member_from
end
signature = string.sub(line, start_at + 1, end_at)
open_braket_at = string.find(signature, "%(")
local fn_name = string.sub(signature, 1, open_braket_at - 1)
local params = string.sub(signature, open_braket_at + 1, -2)
if method_from then
--TODO params = (#params > 0) and ("self, " .. params) or "self"
end
local formatted_signature = fn_name .. "<color 150 150 150>(" .. params .. ")</color>"
signature_cache[fn] = formatted_signature
return formatted_signature
end
local function FormatValue(v)
local vtype = type(v)
if vtype == "string" then
return string.format("\"%s\"", v)
elseif vtype == "table" then
if IsValid(v) then
return string.format("obj:%s", v.class)
else
return string.format("table#%d", #v)
end
elseif IsPoint(v) and v == InvalidPos() then
return "(invalid pos)"
end
return tostring(v)
end
_G.__enum = pairs
local env, blacklist
function GetAutoCompletionList(strEnteredSoFar, nCursorPos, Result)
if not nCursorPos then
nCursorPos = -1
end
local strEnteredToCursor = string.sub(strEnteredSoFar, 1, nCursorPos)
local str1, str2
local functions_only = false
-- print("--")
str1, str2 = string.match(strEnteredToCursor, "([%d%a_.%[%]]*)%[%s*\"([%d%a_]*)$")
str2 = str2 or ""
if not str1 then
-- print("CP1")
str1, str2 = string.match(strEnteredToCursor, "([%d%a_%.%[%]]*)%s*%.%s*([%d%a_]*)$")
str2 = str2 or ""
if not str1 then
str1, str2 = string.match(strEnteredToCursor, "([%d%a_%.%[%]]*)%s*%:%s*([%d%a_]*)$")
if str1 then
functions_only = true
else
-- print("CP2")
str2 = string.match(strEnteredToCursor, "([%d%a_]*)$")
str1 = ""
end
end
end
Result = Result or {}
if str1 then
-- print("str 1 -" .. str1 .. "; str2 -" .. str2)
local TablesToAccess = {}
local Gathered = {}
local ResultCount = 0
local original_env = _G
blacklist = blacklist or Platform.asserts and empty_table or ModEnvBlacklist
env = env or Platform.asserts and original_env or g_ConsoleFENV
if str1 == "" then
table.insert(TablesToAccess, {true, env})
table.insert(TablesToAccess, {true, original_env})
else
table.insert(TablesToAccess, {pcall(load("return " .. str1, "", "t", env))})
table.insert(TablesToAccess, {pcall(load("return _G." .. str1, "", "t", env))})
end
for _, v in ipairs(TablesToAccess) do
local OK, TableToAccess = unpack_params(v)
local meta = getmetatable(TableToAccess)
if OK and functions_only and meta then
table.insert(TablesToAccess, {true, meta})
end
if OK and type(TableToAccess) == "table" then
for k,v in (meta and meta.__enum or pairs)(TableToAccess) do
if not Gathered[k] and (TableToAccess ~= original_env or not blacklist[k]) then
if type(k) == "string" and (not functions_only or type(v) == "function") then
if string.starts_with(k, str2, true) then
ResultCount = ResultCount + 1
local signature = GetFunctionSignature(v)
if signature then
Result[#Result + 1] = { name = signature, value = k, kind = "f" }
else
if type(v) == "function" then
Result[#Result + 1] = { name = string.format("%s<color 150 150 150>(...)</color>", k), value = k, kind = "f" }
else
Result[#Result + 1] = { name = string.format("%s<color 150 150 150> = %s</color>", k, FormatValue(v)), value = k, kind = "v" }
end
end
Gathered[k] = true
if ResultCount > 200 then break end
end
end
end
end
end
if ResultCount > 200 then break end
end
end
table.sortby(Result, "value", CmpLower)
return Result
end
|