43 lines
1.1 KiB
Lua
43 lines
1.1 KiB
Lua
-- teleport.lua
|
|
-- teleports a unit to a location
|
|
-- author Putnam
|
|
-- edited by expwnent
|
|
|
|
local function teleport(unit,pos)
|
|
local unitoccupancy = dfhack.maps.getTileBlock(unit.pos).occupancy[unit.pos.x%16][unit.pos.y%16]
|
|
local newoccupancy = dfhack.maps.getTileBlock(pos).occupancy[pos.x%16][pos.y%16]
|
|
if newoccupancy.unit then
|
|
unit.flags1.on_ground=true
|
|
end
|
|
unit.pos.x = pos.x
|
|
unit.pos.y = pos.y
|
|
unit.pos.z = pos.z
|
|
if not unit.flags1.on_ground then unitoccupancy.unit = false else unitoccupancy.unit_grounded = false end
|
|
end
|
|
|
|
utils = require('utils')
|
|
|
|
validArgs = validArgs or utils.invert({
|
|
'unit',
|
|
'x',
|
|
'y',
|
|
'z',
|
|
'showunitid',
|
|
'showpos'
|
|
})
|
|
|
|
local args = utils.processArgs({...}, validArgs)
|
|
|
|
if args.showunitid or args.showpos then
|
|
if args.showunitid then
|
|
print(dfhack.gui.getSelectedUnit(true).id)
|
|
else
|
|
printall(df.global.cursor)
|
|
end
|
|
else
|
|
local unit = args.unit and df.unit.find(args.unit) or dfhack.gui.getSelectedUnit(true)
|
|
local pos = not(not args.x or not args.y or not args.z) and {x=args.x,y=args.y,z=args.z} or df.global.cursor
|
|
|
|
teleport(unit,pos)
|
|
end
|