File size: 10,296 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 |
if Platform.cmdline then return end
MapVar("g_debug_pointers_list", false)
if FirstLoad then
g_TrackerTexts = {}
g_TrackerTextsThread = false
end
function OnMsg.PostDoneMap()
g_TrackerTextsThread = false
end
function StartUpdateTrackerObjs()
if IsValidThread(g_TrackerTextsThread) then
Wakeup(g_TrackerTextsThread)
return
end
g_TrackerTextsThread = CreateMapRealTimeThread(function()
local clean_up_time = RealTime()
local thread = CurrentThread()
while g_TrackerTextsThread == thread do
PauseInfiniteLoopDetection("UpdateTrackerObjs")
local sleep = UpdateTrackerObjs(clean_up_time)
ResumeInfiniteLoopDetection("UpdateTrackerObjs")
WaitWakeup(sleep)
end
end)
end
OnMsg.NewMap = StartUpdateTrackerObjs
OnMsg.PersistPostLoad = StartUpdateTrackerObjs
local function GetDebugPointers()
local ptrs = g_debug_pointers_list or {}
g_debug_pointers_list = ptrs
return ptrs
end
local function AddTrackerDbgText(t)
table.insert(g_TrackerTexts, t)
StartUpdateTrackerObjs()
end
DefineClass.PointerWhite = {
__parents = { "Object" },
entity = "ArrowUnits",
}
DefineClass.Pointer = {
__parents = { "Object" },
entity = "ArrowUnits",
flags = { gofRealTimeAnim = true },
}
function Pointer:Init()
NetTempObject(self)
self:SetAxis(axis_y)
self:SetAngle(180)
self.thread = CreateMapRealTimeThread(function(self)
local move, delta, sleep = 2500, 120, 15
local x, y, z = self:GetVisualPosXYZ()
while true do
for i = 0, move, delta do
self:SetPos(x, y, z + i, sleep)
Sleep(sleep)
end
for i = move, 0, -delta do
self:SetPos(x, y, z + i, sleep)
Sleep(sleep)
end
end
end, self)
local dbg_ptrs = GetDebugPointers()
dbg_ptrs[#dbg_ptrs + 1] = self
end
function Pointer:Done()
DeleteThread(self.thread)
GetDebugPointers():Remove(self)
end
DefineClass.RealTimePoint = {
__parents = {"Mesh", "InitDone"},
time_used = -60000,
depth_test = false,
vector = false,
}
function RealTimePoint:Init()
NetTempObject(self)
local dbg_ptrs = GetDebugPointers()
dbg_ptrs[#dbg_ptrs + 1] = self
self:SetShader(ProceduralMeshShaders.mesh_linelist)
self:SetDepthTest(false)
self:SetMesh(CreateSphereVertices(guim / 2))
end
function RealTimePoint:Done()
table.remove_value(GetDebugPointers(), self)
if IsValid(self.vector) then
self.vector:delete()
end
end
function RealTimePoint:SetUp(pt, ptOrigin, color)
if not pt:IsValidZ() then
pt = pt:SetTerrainZ(10)
color = RGB(0, 255, 0)
end
self:SetMesh(CreateSphereVertices(guim / 2, RGB(255, 255, 255)))
Mesh.SetPos(self, pt)
self.vector = self.vector or Vector:new()
self.vector:Set(ptOrigin, pt, RGB(0, 255, 0))
end
function RealTimePoint:SetPos(pt, ...)
local color
if not pt:IsValidZ() then
pt = pt:SetTerrainZ(10)
color = RGB(0, 255, 0)
else
color = RGB(255, 255, 255)
end
Mesh.SetPos(self, pt, ...)
self:SetMesh(CreateSphereVertices(guim / 2, color))
if self.vector then
self.vector:Set(self.vector:GetA(), pt, RGB(0, 255, 0))
end
end
function RealTimePoint:DetachFromMap()
Mesh.DetachFromMap(self)
if IsValid(self.vector) then
self.vector:delete()
self.vector = false
end
end
DefineClass.RealTimeText = {
__parents = {"Text", "InitDone"},
time_used = -60000,
}
function RealTimeText:Init()
NetTempObject(self)
local dbg_ptrs = GetDebugPointers()
dbg_ptrs[#dbg_ptrs + 1] = self
self:SetTextStyle("EditorTextBold")
end
function RealTimeText:Done()
table.remove_entry(GetDebugPointers(), self)
end
function AddTrackerText(root, expression)
if not IsValid(root) then
local arrow = string.find(expression, "->")
if arrow then
local f
root = string.sub(expression, 1, arrow-1)
local class_name = string.trim_spaces(root)
if g_Classes[class_name] then
root = function () return MapGet("map", class_name) or empty_table end
else
local r, err = load("return " .. root)
if err then
printf("Error while evaluating %s\n%s", string.trim(root, 24, "..."), err)
return
end
root = r
end
local e = string.sub(expression, arrow+2)
if string.find(e, "return") then
local r, err = load("return function(o) " .. e .. " end" )
if err then
printf("Error while evaluating %s\n%s", string.trim(e, 24, "..."), err)
return
end
f = r()
else
local r, err = load("return function(o) return " .. e .. " end" )
if err then
printf("Error while evaluating %s\n%s", string.trim(e, 24, "..."), err)
return
end
f = r()
end
AddTrackerDbgText { id = expression, root = root, to_eval = f }
else
local init = 1
while true do
local i = string.find(expression, "[:.]", init)
if i then
init = i + 1
root = string.sub(expression, 1, i-1)
else
printf("Not a valid expression to track")
return
end
local class_name = string.trim_spaces(root)
if g_Classes[class_name] then
root = function () return MapGet("map", class_name) or empty_table end
break
else
local r, err = load("return " .. root)
if not err then
root = r
break
end
end
end
if not root then
printf("Can't deduce the root object from %s\n", string.trim(expression, 24, "..."))
return
end
local object_expression = string.sub(expression, init-1)
local r, err = load("return function(o) return o" .. object_expression .. " end")
if not err then
AddTrackerDbgText{ id = expression, root = root, to_eval = r() }
return
end
end
else
local r, err = load("return function(o) return " .. expression .. " end")
if r then
AddTrackerDbgText{ id = expression, root = root, to_eval = r() }
return
else
printf("Error while evaluating %s\n%s", string.trim(expression, 24, "..."), err)
return
end
end
end
function ShowPoint(o, pt, label, time)
AddTrackerDbgText{
id = pt,
root = o,
to_eval = function()
return pt, label
end,
expire_time = GameTime() + (time or 2000),
}
end
function UpdateTrackerObjs(clean_up_time)
local texts = g_TrackerTexts
local now = RealTime()
local objs_text = {}
local live_pts = MapFilter(GetDebugPointers(), "map", "RealTimePoint")
local pointers_alive = false
for i = #texts, 1, -1 do
local t = texts[i]
if t.expire_time and t.expire_time - GameTime() < 0 then
table.remove(texts, i)
end
local ok, root
if type(t.root) ~= "function" then
root = t.root
else
ok, root = pcall(t.root)
end
if IsValid(root) or type(root) == "table" and IsValid(root[1]) then
if IsValid(root) then
root = {root}
end
for j = 1, #root do
local r = root[j]
local labels = {}
local ok, v, text = pcall(t.to_eval, r)
if ok then
if type(v) == "table" or IsPoint(v) or IsValid(v) then
local function UnpackExaminedObj(v, resolve_tables)
if IsPoint(v) then
return v:IsValid() and {v} or {}
elseif IsValid(v) then
if v:IsValidPos() then
return {v:GetVisualPos()}, RGBA(96, 96, 255, 64)
else
return {}
end
elseif type(v) == "table" and IsValid(v[1]) then
local pts = {}
for _, o in ipairs(v) do
if o:IsValidPos() then
pts[#pts+1] = o:GetVisualPos()
end
end
return pts, RGBA(96, 96, 255, 64)
elseif resolve_tables and type(v) == "table" then
local pts = {}
if #v > 0 then
for i = 1, #v do
local o = v[i]
local elements = UnpackExaminedObj(o)
for j = 1, #elements do
table.insert(pts, elements[j])
end
end
else
for o, t in pairs(v) do
local elements = UnpackExaminedObj(o)
for j = 1, #elements do
table.insert(pts, elements[j])
labels[elements[j]] = tostring(t)
end
end
end
return pts, RGBA(255, 96, 96, 64)
end
return {}
end
local pts, color = UnpackExaminedObj(v, true)
pointers_alive = true
text = text and tostring(text)
for i = 1, #pts do
local pointer
if #live_pts > 0 then
pointer = table.remove(live_pts)
else
pointer = RealTimePoint:new()
end
pointer:SetUp(pts[i], r:GetVisualPos(), color)
pointer.time_used = now
local text = text or labels[pts[i]]
if text then
objs_text[pointer] = objs_text[pointer] or {}
table.insert(objs_text[pointer], string.trim(tostring(text), 30, "..."))
end
end
else
objs_text[r] = objs_text[r] or {}
table.insert(objs_text[r], string.trim(tostring(v), 30, "..."))
end
end
end
end
end
local live_texts = MapFilter(GetDebugPointers(), "map", "RealTimeText")
for o, t in pairs(objs_text) do
if IsValid(o) and o:IsValidPos() then
local text
if #live_texts > 0 then
text = table.remove(live_texts)
else
text = RealTimeText:new()
end
text:SetText(table.concat(t, "\n"))
text:SetPos(o:GetVisualPos())
text.time_used = now
end
end
if now - clean_up_time > 30000 then
for i = #live_texts, 1, -1 do
if now - live_texts[i].time_used > 30000 then
DoneObject(live_texts[i])
table.remove(live_texts, i)
end
end
for i = #live_pts, 1, -1 do
if now - live_pts[i].time_used > 30000 then
DoneObject(live_pts[i])
table.remove(live_pts, i)
end
end
end
if #texts > 0 or pointers_alive then
for i = 1, #live_texts do
live_texts[i]:DetachFromMap()
end
for i = 1, #live_pts do
live_pts[i]:DetachFromMap()
end
return 50 -- live and positioned texts/pts - fast update
end
DoneObjects(live_texts)
DoneObjects(live_pts)
end
function ClearTextTrackers(expression)
if expression then
table.remove_value(g_TrackerTexts, "id", expression)
else
g_TrackerTexts = {}
end
end
function HasTextTrackers(expression)
return table.find(g_TrackerTexts, "id", expression) and true or false
end
function ToggleTextTrackers(expression, description)
if HasTextTrackers(expression) then
ClearTextTrackers(expression)
if (description or "") ~= "" then
printf("Show %s: OFF", description)
end
else
AddTrackerText(false, expression)
if (description or "") ~= "" then
printf("Show %s: ON", description)
end
end
end
|