mirror of
https://github.com/ciribob/DCS-CTLD.git
synced 2025-08-15 06:17:22 +00:00
debug
This commit is contained in:
11
CTLD.lua
11
CTLD.lua
@@ -8192,11 +8192,14 @@ function ctld.eventHandler:onEvent(event)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local function processHumanPlayer()
|
local function processHumanPlayer(mistDBsHumansByName)
|
||||||
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- unitName = %s", ctld.p(unitName))
|
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- unitName = %s", ctld.p(unitName))
|
||||||
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- mist.DBs.humansByName[unitName] = %s", ctld.p(mist.DBs.humansByName[unitName]))
|
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- mist.DBs.humansByName[unitName] = %s", ctld.p(mist.DBs.humansByName[unitName]))
|
||||||
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- mist.DBs.humansByName = %s", ctld.p(mist.DBs.humansByName))
|
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- mist.DBs.humansByName = %s", ctld.p(mist.DBs.humansByName))
|
||||||
if mist.DBs.humansByName[unitName] then -- it's a human unit
|
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- mistDBsHumansByName[unitName] = %s", ctld.p(mistDBsHumansByName[unitName]))
|
||||||
|
ctld.logTrace("in the 'processHumanPlayer' function processHumanPlayer()- mistDBsHumansByName = %s", ctld.p(mistDBsHumansByName))
|
||||||
|
--if mist.DBs.humansByName[unitName] then -- it's a human unit
|
||||||
|
if mistDBsHumansByName[unitName] then -- it's a human unit
|
||||||
ctld.logDebug("caught event %s for human unit [%s]", ctld.p(eventName), ctld.p(unitName))
|
ctld.logDebug("caught event %s for human unit [%s]", ctld.p(eventName), ctld.p(unitName))
|
||||||
local _unit = Unit.getByName(unitName)
|
local _unit = Unit.getByName(unitName)
|
||||||
if _unit ~= nil then
|
if _unit ~= nil then
|
||||||
@@ -8237,11 +8240,11 @@ function ctld.eventHandler:onEvent(event)
|
|||||||
ctld.logTrace("give MiST some time to handle the BIRTH event too")
|
ctld.logTrace("give MiST some time to handle the BIRTH event too")
|
||||||
timer.scheduleFunction(function()
|
timer.scheduleFunction(function()
|
||||||
ctld.logTrace("calling the 'processHumanPlayer' function in a timer")
|
ctld.logTrace("calling the 'processHumanPlayer' function in a timer")
|
||||||
processHumanPlayer()
|
processHumanPlayer(mist.DBs.humansByName)
|
||||||
end, nil, timer.getTime() + 0.5)
|
end, nil, timer.getTime() + 0.5)
|
||||||
else
|
else
|
||||||
ctld.logTrace("calling the 'processHumanPlayer' function immediately")
|
ctld.logTrace("calling the 'processHumanPlayer' function immediately")
|
||||||
processHumanPlayer()
|
processHumanPlayer(mist.DBs.humansByName)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user