messenger = {} messenger.version = "2.2.0" messenger.verbose = false messenger.requiredLibs = { "dcsCommon", -- always "cfxZones", -- Zones, of course } messenger.messengers = {} --[[-- Version History 1.0.0 - initial version 1.0.1 - messageOut? synonym - spelling types in about 1.1.0 - DML flag support - clearScreen option - inValue? - message preprocessor 1.1.1 - firewalled coalition to msgCoalition - messageOn? - messageOff? 1.2.0 - msgTriggerMethod (original Watchflag integration) 1.2.1 - qoL: = newline, = zone name, = value 1.3.0 - messenger? saves messageOut? attribute 1.3.1 - message now can interpret value as time with <:h> <:m> <:s> 1.3.2 - message interprets as time in HH:MM:SS of current time - can interpret , , - zone-local verbosity 1.3.3 - mute/messageMute option to start messenger in mute 2.0.0 - re-engineered message wildcards - corrected dynamic content for time and latlon (classic) - new timeFormat attribute - - - added - added imperial - - - - - - - messageError - unit - group 2.0.1 - config optimization 2.1.0 - unit only: dynamicUnitProcessing with other units/zones - bearing to unit/zone - response mapped by unit's heading - bearing in clock position to unit/zone - range to unit/zone - bearing in left/right/ahead/behind - bearing in starboard/port/ahead/aft - added dynamicGroupProcessing to select unit 1 - responses attribute - - response randomized - respons mapped by unit's heading - closing speed - velocity (speed) - aspect - fix to messageMute - 2.1.1 - cosmetic: only output text if len>0 and not cls 2.2.0 - - made dynamic string gen more portable in prep for move to cfxZones - refactoring wildcard processing: moved to cfxZones --]]-- function messenger.addMessenger(theZone) table.insert(messenger.messengers, theZone) end function messenger.getMessengerByName(aName) for idx, aZone in pairs(messenger.messengers) do if aName == aZone.name then return aZone end end if messenger.verbose then trigger.action.outText("+++msgr: no messenger with name <" .. aName ..">", 30) end return nil end -- -- Dynamic Group and Dynamic Unit processing are -- unique to messenger, and are not available via -- cfxZones or dcsCommon -- function messenger.dynamicGroupProcessing(msg, theZone, theGroup) if not theGroup then return msg end -- access first unit local theUnit = theGroup:getUnit(1) if not theUnit then return msg end if not Unit.isExist(theUnit) then return msg end -- we always use unit 1 as reference return messenger.dynamicUnitProcessing(msg, theZone, theUnit) end function messenger.dynamicUnitProcessing(inMsg, theZone, theUnit) -- replace all occurences of with their values -- bae = bearingInDegreesFromAtoB -- rng = range -- asp = aspect (not yet implemented) -- cls = closing velocity (not yet implemented) -- clk = o'clock -- hnd = handedness (left/right/ahead/behind -- sde = side (starboard / port / ahead / aft) -- rbea = responses mapped to bearing. maps all responses like clock, with "12" being the first response. requires msgResponses set local here = theUnit:getPoint() local uHead = dcsCommon.getUnitHeading(theUnit) * 57.2958 -- to degrees. local locales = {"bea", "rng", "clk", "hnd", "sde", "rbea", "cls", "pcls", "asp"} local outMsg = inMsg for idx, aLocale in pairs(locales) do local pattern = "<" .. aLocale .. ":%s*[%s%w%*%d%.%-_]+>" repeat -- iterate all patterns one by one local startLoc, endLoc = string.find(outMsg, pattern) if startLoc then local theValParam = string.sub(outMsg, startLoc, endLoc) -- strip lead and trailer local param = string.gsub(theValParam, "<" .. aLocale .. ":%s*", "") param = string.gsub(param, ">","") -- find zone or unit param = dcsCommon.trim(param) local thePoint = nil local cls = 0 local aspct = 0 local tZone = cfxZones.getZoneByName(param) local tUnit = Unit.getByName(param) local aspect = 0 local tHead = 0 if tZone then thePoint = cfxZones.getPoint(tZone) -- if this zone follows a unit, get the master units elevaltion if tZone.linkedUnit and Unit.isExist(tZone.linkedUnit) then local lU = tZone.linkedUnit local masterPoint = lU:getPoint() thePoint.y = masterPoint.y cls = -dcsCommon.getClosingVelocity(theUnit, lU) tHead = dcsCommon.getUnitHeading(lU) * 57.2958 else -- since zones always have elevation of 0, -- now get the elevation from the map thePoint.y = land.getHeight({x = thePoint.x, y = thePoint.z}) end elseif tUnit then if Unit.isExist(tUnit) then thePoint = tUnit:getPoint() cls = -dcsCommon.getClosingVelocity(theUnit, tUnit) tHead = dcsCommon.getUnitHeading(tUnit) * 57.2958 end else -- nothing to do, remove me. end local locString = theZone.errString if thePoint then -- now that we have a point, we can do locale-specific -- processing. return result in locString local pcls = cls local r = dcsCommon.dist(here, thePoint) --local alt = thePoint.y local uSize = "m" if theZone.imperialUnits then r = math.floor(r * 3.28084) -- feet uSize = "ft" if r > 1000 then -- convert to nautical mile r = math.floor(r * 10 / 6076.12) / 10 uSize = "nm" end cls = math.floor(cls * 1.9438452) -- m/s to knots pcls = math.floor(pcls * 32.8084) / 10 -- ft/s else r = math.floor(r) -- meters if r > 1000 then r = math.floor (r / 100) / 10 uSize = "km" end cls = math.floor(cls * 3.6) -- m/s to km/h pcls = math.floor(pcls * 10) / 10 -- m/s end local bea = dcsCommon.bearingInDegreesFromAtoB(here, thePoint) local beaInv = 360 - bea -- from tUnit to player local direction = bea - uHead -- tUnit as seen from player heading uHead if direction < 0 then direction = direction + 360 end aspect = beaInv - tHead -- set up locale exchange string if aLocale == "bea" then locString = tostring(bea) elseif aLocale == "asp" then locString = dcsCommon.aspectByDirection(aspect) elseif aLocale == "clk" then locString = tostring(dcsCommon.getClockDirection(direction)) elseif aLocale == "rng" then locString = tostring(r)..uSize elseif aLocale == "cls" then locString = tostring(cls) elseif aLocale == "pcls" then locString = tostring(pcls) elseif aLocale == "hnd" then locString = dcsCommon.getGeneralDirection(direction) elseif aLocale == "sde" then locString = dcsCommon.getNauticalDirection(direction) elseif aLocale == "rbea" and (theZone.msgResponses) then local offset = cfxZones.rspMapper360(direction, #theZone.msgResponses) locString = dcsCommon.trim(theZone.msgResponses[offset]) else locString = "" end end -- replace pattern in original with new val outMsg = string.gsub(outMsg, pattern, locString, 1) -- only one sub! end -- if startloc until not startLoc end -- for all locales return outMsg end -- -- reat attributes -- function messenger.createMessengerWithZone(theZone) -- start val - a range local aMessage = cfxZones.getStringFromZoneProperty(theZone, "message", "") theZone.message = aMessage -- refactoring: messenger.preProcMessage(aMessage, theZone) removed theZone.spaceBefore = cfxZones.getBoolFromZoneProperty(theZone, "spaceBefore", false) theZone.spaceAfter = cfxZones.getBoolFromZoneProperty(theZone, "spaceAfter", false) theZone.soundFile = cfxZones.getStringFromZoneProperty(theZone, "soundFile", "") theZone.clearScreen = cfxZones.getBoolFromZoneProperty(theZone, "clearScreen", false) theZone.duration = cfxZones.getNumberFromZoneProperty(theZone, "duration", 30) if cfxZones.hasProperty(theZone, "messageDuration") then theZone.duration = cfxZones.getNumberFromZoneProperty(theZone, "messageDuration", 30) end -- msgTriggerMethod theZone.msgTriggerMethod = cfxZones.getStringFromZoneProperty(theZone, "triggerMethod", "change") if cfxZones.hasProperty(theZone, "msgTriggerMethod") then theZone.msgTriggerMethod = cfxZones.getStringFromZoneProperty(theZone, "msgTriggerMethod", "change") end -- trigger flag f? in? messageOut?, add messenger? if cfxZones.hasProperty(theZone, "f?") then theZone.triggerMessagerFlag = cfxZones.getStringFromZoneProperty(theZone, "f?", "none") -- may want to add deprecated note later end -- can also use in? for counting. we always use triggerMessagerFlag if cfxZones.hasProperty(theZone, "in?") then theZone.triggerMessagerFlag = cfxZones.getStringFromZoneProperty(theZone, "in?", "none") end if cfxZones.hasProperty(theZone, "messageOut?") then theZone.triggerMessagerFlag = cfxZones.getStringFromZoneProperty(theZone, "messageOut?", "none") end -- try default only if no other is set if not theZone.triggerMessagerFlag then if not cfxZones.hasProperty(theZone, "messenger?") then trigger.action.outText("*** Note: messenger in <" .. theZone.name .. "> can't be triggered", 30) end theZone.triggerMessagerFlag = cfxZones.getStringFromZoneProperty(theZone, "messenger?", "none") end -- if theZone.triggerMessagerFlag then theZone.lastMessageTriggerValue = cfxZones.getFlagValue(theZone.triggerMessagerFlag, theZone)-- save last value -- end theZone.messageOff = cfxZones.getBoolFromZoneProperty(theZone, "mute", false) --false if cfxZones.hasProperty(theZone, "messageMute") then theZone.messageOff = cfxZones.getBoolFromZoneProperty(theZone, "messageMute", false) end -- advisory: messageOff, messageOffFlag and lastMessageOff are all distinct if cfxZones.hasProperty(theZone, "messageOff?") then theZone.messageOffFlag = cfxZones.getStringFromZoneProperty(theZone, "messageOff?", "*none") theZone.lastMessageOff = cfxZones.getFlagValue(theZone.messageOffFlag, theZone) end if cfxZones.hasProperty(theZone, "messageOn?") then theZone.messageOnFlag = cfxZones.getStringFromZoneProperty(theZone, "messageOn?", "*none") theZone.lastMessageOn = cfxZones.getFlagValue(theZone.messageOnFlag, theZone) end -- reveiver: coalition, group, unit if cfxZones.hasProperty(theZone, "coalition") then theZone.msgCoalition = cfxZones.getCoalitionFromZoneProperty(theZone, "coalition", 0) elseif cfxZones.hasProperty(theZone, "msgCoalition") then theZone.msgCoalition = cfxZones.getCoalitionFromZoneProperty(theZone, "msgCoalition", 0) end if cfxZones.hasProperty(theZone, "group") then theZone.msgGroup = cfxZones.getStringFromZoneProperty(theZone, "group", "") elseif cfxZones.hasProperty(theZone, "msgGroup") then theZone.msgGroup = cfxZones.getStringFromZoneProperty(theZone, "msgGroup", "") end if cfxZones.hasProperty(theZone, "unit") then theZone.msgUnit = cfxZones.getStringFromZoneProperty(theZone, "unit", "") elseif cfxZones.hasProperty(theZone, "msgUnit") then theZone.msgUnit = cfxZones.getStringFromZoneProperty(theZone, "msgUnit", "") end if (theZone.msgGroup and theZone.msgUnit) or (theZone.msgGroup and theZone.msgCoalition) or (theZone.msgUnit and theZone.msgCoalition) then trigger.action.outText("+++msg: WARNING - messenger in <" .. theZone.name .. "> has conflicting coalition, group and unit, use only one.", 30) end -- flag whose value can be read: to be deprecated if cfxZones.hasProperty(theZone, "messageValue?") then theZone.messageValue = cfxZones.getStringFromZoneProperty(theZone, "messageValue?", "") trigger.action.outText("+++Msg: Warning - zone <" .. theZone.name .. "> uses 'messageValue' attribute. Migrate to now!") end -- time format for new theZone.msgTimeFormat = cfxZones.getStringFromZoneProperty(theZone, "timeFormat", "<:h>:<:m>:<:s>") theZone.imperialUnits = cfxZones.getBoolFromZoneProperty(theZone, "imperial", false) if cfxZones.hasProperty(theZone, "imperialUnits") then theZone.imperialUnits = cfxZones.getBoolFromZoneProperty(theZone, "imperialUnits", false) end theZone.errString = cfxZones.getStringFromZoneProperty(theZone, "error", "") if cfxZones.hasProperty(theZone, "messageError") then theZone.errString = cfxZones.getStringFromZoneProperty(theZone, "messageError", "") end -- possible responses for mapping if cfxZones.hasProperty(theZone, "responses") then local resp = cfxZones.getStringFromZoneProperty(theZone, "responses", "none") theZone.msgResponses = dcsCommon.string2Array(resp, ",") end if messenger.verbose or theZone.verbose then trigger.action.outText("+++Msg: new messenger in <".. theZone.name .."> will say '".. theZone.message .. "' (raw)", 30) end end -- -- Update -- function messenger.getMessage(theZone) local msg = theZone.message -- see if it has a "$val" in there local zName = theZone.name if not zName then zName = "" end local zVal = "" if theZone.messageValue then trigger.action.outText("+++Msg: Warning - zone <" .. theZone.name .. "> uses 'messageValue' attribute. Migrate to now!") zVal = cfxZones.getFlagValue(theZone.messageValue, theZone) zVal = tostring(zVal) if not zVal then zVal = "" end end -- old-school to provide value from messageValue -- to be removed mid-2023 msg = string.gsub(msg, "", zVal) local z = tonumber(zVal) if not z then z = 0 end msg = dcsCommon.processHMS(msg, z) -- remainder hand-off to cfxZones (refactoring of messenger code msg = cfxZones.processStringWildcards(msg, theZone, theZone.msgTimeFormat, theZone.imperialUnits, theZone.msgResponses) return msg end function messenger.isTriggered(theZone) -- this module has triggered if theZone.messageOff then if messenger.verbose or theZone.verbose then trigger.action.outFlag("msg: message for <".. theZone.name .."> is OFF",30) end return end local fileName = "l10n/DEFAULT/" .. theZone.soundFile local msg = messenger.getMessage(theZone) if messenger.verbose or theZone.verbose then trigger.action.outText("+++Msg: <".. theZone.name .."> will say <".. msg .. ">", 30) end if theZone.spaceBefore then msg = "\n"..msg end if theZone.spaceAfter then msg = msg .. "\n" end if theZone.msgCoalition then if #msg > 0 or theZone.clearScreen then trigger.action.outTextForCoalition(theZone.msgCoalition, msg, theZone.duration, theZone.clearScreen) end trigger.action.outSoundForCoalition(theZone.msgCoalition, fileName) elseif theZone.msgGroup then local theGroup = Group.getByName(theZone.msgGroup) if theGroup and Group.isExist(theGroup) then local ID = theGroup:getID() msg = messenger.dynamicGroupProcessing(msg, theZone, theGroup) if #msg > 0 or theZone.clearScreen then trigger.action.outTextForGroup(ID, msg, theZone.duration, theZone.clearScreen) end trigger.action.outSoundForGroup(ID, fileName) end elseif theZone.msgUnit then local theUnit = Unit.getByName(theZone.msgUnit) if theUnit and Unit.isExist(theUnit) then local ID = theUnit:getID() msg = messenger.dynamicUnitProcessing(msg, theZone, theUnit) if #msg > 0 or theZone.clearScreen then trigger.action.outTextForUnit(ID, msg, theZone.duration, theZone.clearScreen) end trigger.action.outSoundForUnit(ID, fileName) end else -- out to all if #msg > 0 or theZone.clearScreen then trigger.action.outText(msg, theZone.duration, theZone.clearScreen) end trigger.action.outSound(fileName) end end function messenger.update() -- call me in a second to poll triggers timer.scheduleFunction(messenger.update, {}, timer.getTime() + 1) for idx, aZone in pairs(messenger.messengers) do -- make sure to re-start before reading time limit -- new trigger code if cfxZones.testZoneFlag(aZone, aZone.triggerMessagerFlag, aZone.msgTriggerMethod, "lastMessageTriggerValue") then if messenger.verbose or aZone.verbose then trigger.action.outText("+++msgr: triggered on in? for <".. aZone.name ..">", 30) end messenger.isTriggered(aZone) end -- old trigger code if cfxZones.testZoneFlag(aZone, aZone.messageOffFlag, aZone.msgTriggerMethod, "lastMessageOff") then aZone.messageOff = true if messenger.verbose or aZone.verbose then trigger.action.outText("+++msg: messenger <" .. aZone.name .. "> turned ***OFF***", 30) end end if cfxZones.testZoneFlag(aZone, aZone.messageOnFlag, aZone.msgTriggerMethod, "lastMessageOn") then aZone.messageOff = false if messenger.verbose or aZone.verbose then trigger.action.outText("+++msg: messenger <" .. aZone.name .. "> turned ON", 30) end end end end -- -- Config & Start -- function messenger.readConfigZone() local theZone = cfxZones.getZoneByName("messengerConfig") if not theZone then if messenger.verbose then trigger.action.outText("+++msgr: NO config zone!", 30) end theZone = cfxZones.createSimpleZone("messengerConfig") end messenger.verbose = cfxZones.getBoolFromZoneProperty(theZone, "verbose", false) if messenger.verbose then trigger.action.outText("+++msgr: read config", 30) end end function messenger.start() -- lib check if not dcsCommon.libCheck then trigger.action.outText("cfx Messenger requires dcsCommon", 30) return false end if not dcsCommon.libCheck("cfx Messenger", messenger.requiredLibs) then return false end -- read config messenger.readConfigZone() -- process messenger Zones -- old style local attrZones = cfxZones.getZonesWithAttributeNamed("messenger") for k, aZone in pairs(attrZones) do messenger.createMessengerWithZone(aZone) -- process attributes messenger.addMessenger(aZone) -- add to list end -- new style that saves messageOut? flag by reading flags attrZones = cfxZones.getZonesWithAttributeNamed("messenger?") for k, aZone in pairs(attrZones) do messenger.createMessengerWithZone(aZone) -- process attributes messenger.addMessenger(aZone) -- add to list end -- start update messenger.update() trigger.action.outText("cfx Messenger v" .. messenger.version .. " started.", 30) return true end -- let's go! if not messenger.start() then trigger.action.outText("cfx Messenger aborted: missing libraries", 30) messenger = nil end