2014-07-03 17:40:33 -06:00
|
|
|
-- scripts/modtools/reaction-trigger.lua
|
2014-06-29 04:12:54 -06:00
|
|
|
-- author expwnent
|
|
|
|
-- replaces autoSyndrome: trigger commands when custom reactions are completed
|
2015-03-22 14:54:38 -06:00
|
|
|
--@ module = true
|
2014-06-29 04:12:54 -06:00
|
|
|
|
|
|
|
local eventful = require 'plugins.eventful'
|
2014-08-15 00:52:20 -06:00
|
|
|
local syndromeUtil = require 'syndrome-util'
|
2014-06-30 02:29:42 -06:00
|
|
|
local utils = require 'utils'
|
2014-06-29 04:12:54 -06:00
|
|
|
|
|
|
|
reactionHooks = reactionHooks or {}
|
|
|
|
|
2014-07-03 17:40:33 -06:00
|
|
|
eventful.enableEvent(eventful.eventType.UNLOAD,1)
|
|
|
|
eventful.onUnload.reactionTrigger = function()
|
|
|
|
reactionHooks = {}
|
|
|
|
end
|
|
|
|
|
2015-02-02 00:25:42 -07:00
|
|
|
function getWorkerAndBuilding(job)
|
2014-06-29 04:12:54 -06:00
|
|
|
local workerId = -1
|
|
|
|
local buildingId = -1
|
|
|
|
for _,generalRef in ipairs(job.general_refs) do
|
|
|
|
if generalRef:getType() == df.general_ref_type.UNIT_WORKER then
|
|
|
|
if workerId ~= -1 then
|
|
|
|
print(job)
|
|
|
|
printall(job)
|
|
|
|
error('reaction-trigger: two workers on same job: ' .. workerId .. ', ' .. generalRef.unit_id)
|
|
|
|
else
|
|
|
|
workerId = generalRef.unit_id
|
|
|
|
if workerId == -1 then
|
|
|
|
print(job)
|
|
|
|
printall(job)
|
|
|
|
error('reaction-trigger: invalid worker')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif generalRef:getType() == df.general_ref_type.BUILDING_HOLDER then
|
|
|
|
if buildingId ~= -1 then
|
|
|
|
print(job)
|
|
|
|
printall(job)
|
|
|
|
error('reaction-trigger: two buildings same job: ' .. buildingId .. ', ' .. generalRef.building_id)
|
|
|
|
else
|
|
|
|
buildingId = generalRef.building_id
|
|
|
|
if buildingId == -1 then
|
|
|
|
print(job)
|
|
|
|
printall(job)
|
|
|
|
error('reaction-trigger: invalid building')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return workerId,buildingId
|
|
|
|
end
|
|
|
|
|
|
|
|
local function processCommand(job, worker, target, building, command)
|
|
|
|
local result = {}
|
|
|
|
for _,arg in ipairs(command) do
|
|
|
|
if arg == '\\WORKER_ID' then
|
|
|
|
table.insert(result,''..worker.id)
|
|
|
|
elseif arg == '\\TARGET_ID' then
|
2014-11-28 21:01:44 -07:00
|
|
|
table.insert(result,''..target.id)
|
2014-06-29 04:12:54 -06:00
|
|
|
elseif arg == '\\BUILDING_ID' then
|
|
|
|
table.insert(result,''..building.id)
|
|
|
|
elseif arg == '\\LOCATION' then
|
|
|
|
table.insert(result,''..job.pos.x)
|
|
|
|
table.insert(result,''..job.pos.y)
|
|
|
|
table.insert(result,''..job.pos.z)
|
|
|
|
elseif arg == '\\REACTION_NAME' then
|
|
|
|
table.insert(result,''..job.reaction_name)
|
2014-07-03 06:58:20 -06:00
|
|
|
elseif string.sub(arg,1,1) == '\\' then
|
|
|
|
table.insert(result,string.sub(arg,2))
|
2014-06-29 04:12:54 -06:00
|
|
|
else
|
|
|
|
table.insert(result,arg)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
|
|
|
|
eventful.onJobCompleted.reactionTrigger = function(job)
|
|
|
|
if job.completion_timer > 0 then
|
|
|
|
return
|
|
|
|
end
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-06-29 04:12:54 -06:00
|
|
|
-- if job.job_type ~= df.job_type.CustomReaction then
|
|
|
|
-- --TODO: support builtin reaction triggers if someone asks
|
|
|
|
-- return
|
|
|
|
-- end
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-06-29 04:12:54 -06:00
|
|
|
if not job.reaction_name or job.reaction_name == '' then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
-- print('reaction name: ' .. job.reaction_name)
|
|
|
|
if not job.reaction_name or not reactionHooks[job.reaction_name] then
|
|
|
|
return
|
|
|
|
end
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-06-29 04:12:54 -06:00
|
|
|
local worker,building = getWorkerAndBuilding(job)
|
|
|
|
worker = df.unit.find(worker)
|
|
|
|
building = df.building.find(building)
|
|
|
|
if not worker or not building then
|
|
|
|
--this probably means that it finished before EventManager could get a copy of the job while the job was running
|
|
|
|
--TODO: consider printing a warning once
|
|
|
|
return
|
|
|
|
end
|
2015-02-14 20:53:06 -07:00
|
|
|
|
2014-06-29 04:12:54 -06:00
|
|
|
local function doAction(action)
|
|
|
|
local didSomething
|
2014-06-30 02:29:42 -06:00
|
|
|
if action.command then
|
|
|
|
local processed = processCommand(job, worker, worker, building, action.command)
|
2014-07-01 00:15:38 -06:00
|
|
|
dfhack.run_command(table.unpack(processed))
|
2014-06-29 04:12:54 -06:00
|
|
|
end
|
|
|
|
if action.syndrome then
|
|
|
|
didSomething = syndromeUtil.infectWithSyndromeIfValidTarget(worker, action.syndrome, action.resetPolicy) or didSomething
|
|
|
|
end
|
|
|
|
if action.workerOnly then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
if didSomething and not action.allowMultipleTargets then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
local function foreach(unit)
|
|
|
|
if unit == worker then
|
|
|
|
return false
|
|
|
|
elseif unit.pos.z ~= building.z then
|
|
|
|
return false
|
|
|
|
elseif unit.pos.x < building.x1 or unit.pos.x > building.x2 then
|
|
|
|
return false
|
|
|
|
elseif unit.pos.y < building.y1 or unit.pos.y > building.y2 then
|
|
|
|
return false
|
|
|
|
else
|
2014-06-30 02:29:42 -06:00
|
|
|
if action.command then
|
|
|
|
processCommand(job, worker, unit, building, action.command)
|
2014-06-29 04:12:54 -06:00
|
|
|
end
|
|
|
|
if action.syndrome then
|
|
|
|
didSomething = syndrome.infectWithSyndromeIfValidTarget(unit,action.syndrome,action.resetPolicy) or didSomething
|
|
|
|
end
|
|
|
|
if didSomething and not action.allowMultipleTargets then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
for _,unit in ipairs(df.global.world.units.all) do
|
|
|
|
if foreach(unit) then
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
for _,action in ipairs(reactionHooks[job.reaction_name]) do
|
|
|
|
doAction(action)
|
|
|
|
end
|
|
|
|
end
|
2014-07-03 17:40:33 -06:00
|
|
|
eventful.enableEvent(eventful.eventType.JOB_COMPLETED,0) --0 is necessary to catch cancelled jobs and not trigger them
|
2014-06-29 04:12:54 -06:00
|
|
|
|
2014-07-09 04:21:52 -06:00
|
|
|
validArgs = validArgs or utils.invert({
|
2014-06-30 22:55:52 -06:00
|
|
|
'help',
|
|
|
|
'clear',
|
|
|
|
'reactionName',
|
|
|
|
'syndrome',
|
2014-07-03 17:40:33 -06:00
|
|
|
'command',
|
|
|
|
'allowNonworkerTargets',
|
|
|
|
'allowMultipleTargets'
|
2014-06-30 22:55:52 -06:00
|
|
|
})
|
2015-02-02 00:25:42 -07:00
|
|
|
|
|
|
|
if moduleMode then
|
|
|
|
return
|
|
|
|
end
|
2014-06-30 22:55:52 -06:00
|
|
|
local args = utils.processArgs({...}, validArgs)
|
2014-07-03 17:40:33 -06:00
|
|
|
|
|
|
|
if args.help then
|
|
|
|
print([[scripts/modtools/reaction-trigger.lua
|
|
|
|
arguments:
|
|
|
|
-help
|
|
|
|
print this help message
|
|
|
|
-clear
|
|
|
|
unregister all reaction hooks
|
|
|
|
-reactionName name
|
|
|
|
specify the name of the reaction
|
|
|
|
-syndrome name
|
|
|
|
specify the name of the syndrome to be applied to the targets
|
|
|
|
-allowNonworkerTargets
|
|
|
|
allow other units in the same building to be targetted by either the script or the syndrome
|
|
|
|
-allowMultipleTargets
|
|
|
|
allow multiple targets to the script or syndrome
|
|
|
|
if absent:
|
|
|
|
if running a script, only one target will be used
|
|
|
|
if applying a syndrome, then only one target will be infected
|
|
|
|
-resetPolicy policy
|
|
|
|
set the reset policy in the case that the syndrome is already present
|
|
|
|
policy
|
|
|
|
NewInstance (default)
|
|
|
|
DoNothing
|
|
|
|
ResetDuration
|
|
|
|
AddDuration
|
|
|
|
-command [ commandStrs ]
|
|
|
|
specify the command to be run on the target(s)
|
|
|
|
special args
|
|
|
|
\\WORKER_ID
|
|
|
|
\\TARGET_ID
|
|
|
|
\\BUILDING_ID
|
|
|
|
\\LOCATION
|
|
|
|
\\REACTION_NAME
|
2014-11-09 16:37:39 -07:00
|
|
|
\\anything -> \anything
|
2014-07-03 17:40:33 -06:00
|
|
|
anything -> anything
|
|
|
|
]])
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2014-06-30 02:29:42 -06:00
|
|
|
if args.clear then
|
|
|
|
reactionHooks = {}
|
2014-06-29 04:12:54 -06:00
|
|
|
end
|
|
|
|
|
2014-06-30 02:29:42 -06:00
|
|
|
if not args.reactionName then
|
2014-06-29 04:12:54 -06:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2014-06-30 02:29:42 -06:00
|
|
|
if not reactionHooks[args.reactionName] then
|
|
|
|
reactionHooks[args.reactionName] = {}
|
2014-06-29 04:12:54 -06:00
|
|
|
end
|
|
|
|
|
2014-06-30 02:29:42 -06:00
|
|
|
if args.syndrome then
|
|
|
|
local foundIt
|
|
|
|
for _,syndrome in ipairs(df.global.world.raws.syndromes.all) do
|
|
|
|
if syndrome.syn_name == args.syndrome then
|
|
|
|
args.syndrome = syndrome
|
|
|
|
foundIt = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if not foundIt then
|
|
|
|
error('Could not find syndrome ' .. args.syndrome)
|
|
|
|
end
|
2014-06-29 04:12:54 -06:00
|
|
|
end
|
2014-06-30 02:29:42 -06:00
|
|
|
|
|
|
|
table.insert(reactionHooks[args.reactionName], args)
|
2014-06-29 04:12:54 -06:00
|
|
|
|