81 lines
1.9 KiB
Lua
81 lines
1.9 KiB
Lua
-- scripts/modtools/force.lua
|
|
-- author Putnam
|
|
-- edited by expwnent
|
|
-- Forces an event.
|
|
|
|
local utils = require 'utils'
|
|
|
|
local function findCiv(arg)
|
|
local entities = df.global.world.entities.all
|
|
if tonumber(arg) then return arg end
|
|
if arg then
|
|
for eid,entity in ipairs(entities) do
|
|
if entity.entity_raw.code == arg then return entity end
|
|
end
|
|
end
|
|
return nil
|
|
end
|
|
|
|
validArgs = validArgs or utils.invert({
|
|
'eventType',
|
|
'help',
|
|
'civ'
|
|
})
|
|
|
|
local args = utils.processArgs({...}, validArgs)
|
|
if next(args) == nil or args.help then
|
|
print([[force usage
|
|
arguments:
|
|
-help
|
|
print this help message
|
|
-eventType event
|
|
specify the type of the event to trigger
|
|
examples:
|
|
MegaBeast
|
|
Migrants
|
|
Caravan
|
|
Diplomat
|
|
WildlifeCurious
|
|
WildlifeMischievous
|
|
WildlifeFlier
|
|
CivAttack
|
|
NightCreature
|
|
-civ entity
|
|
specify the civ of the event, if applicable
|
|
examples:
|
|
player
|
|
MOUNTAIN
|
|
EVIL
|
|
28
|
|
]])
|
|
print('force: -eventType [Megabeast, Migrants, Caravan, Diplomat, WildlifeCurious, WildlifeMischievous, WildlifeFlier, CivAttack, NightCreature] -civ [player,ENTITY_ID]')
|
|
return
|
|
end
|
|
|
|
if not args.eventType then
|
|
error 'Specify an eventType.'
|
|
elseif not df.timed_event_type[args.eventType] then
|
|
error('Invalid eventType: ' .. args.eventType)
|
|
end
|
|
|
|
if args.civ == 'player' then
|
|
args.civ = df.historical_entity.find(df.global.ui.civ_id)
|
|
elseif args.civ then
|
|
args.civ = findCiv(args.civ)
|
|
end
|
|
|
|
if args.eventType == 'Migrants' then
|
|
args.civ = df.historical_entity.find(df.global.ui.civ_id)
|
|
end
|
|
|
|
local timedEvent = df.timed_event:new()
|
|
timedEvent['type'] = df.timed_event_type[args.eventType]
|
|
timedEvent.season = df.global.cur_season
|
|
timedEvent.season_ticks = df.global.cur_season_tick
|
|
if args.civ then
|
|
timedEvent.entity = args.civ
|
|
end
|
|
|
|
df.global.timed_events:insert('#', timedEvent)
|
|
|