-
Notifications
You must be signed in to change notification settings - Fork 194
/
geld.lua
105 lines (91 loc) · 2.33 KB
/
geld.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
utils = require('utils')
local validArgs = utils.invert({
'unit',
'toggle',
'ungeld',
'help',
'find',
})
local args = utils.processArgs({...}, validArgs)
unit=nil
if args.help then
print(dfhack.script_help())
return
end
if args.unit then
id=tonumber(args.unit)
if id then
unit = df.unit.find(id)
else
qerror("Invalid ID provided.")
end
else
unit = dfhack.gui.getSelectedUnit()
end
if not unit then
qerror("Invalid unit selection.")
end
if unit.sex == df.pronoun_type.she then
qerror("Cannot geld female animals")
return
end
function FindBodyPart(unit,newstate)
bfound = false
for i,wound in ipairs(unit.body.wounds) do
for j,part in ipairs(wound.parts) do
if unit.body.wounds[i].parts[j].flags2.gelded ~= newstate then
bfound = true
if newstate ~= nil then
unit.body.wounds[i].parts[j].flags2.gelded = newstate
end
end
end
end
return bfound
end
function AddParts(unit)
for i,wound in ipairs(unit.body.wounds) do
if wound.id == 1 and #wound.parts == 0 then
utils.insert_or_update(unit.body.wounds[i].parts,{ new = true, body_part_id = 1 }, 'body_part_id')
end
end
end
function Geld(unit)
unit.flags3.gelded = true
if not FindBodyPart(unit,true) then
utils.insert_or_update(unit.body.wounds,{ new = true, id = unit.body.wound_next_id }, 'id')
unit.body.wound_next_id = unit.body.wound_next_id + 1
AddParts(unit)
if not FindBodyPart(unit,true) then
error("could not find body part")
end
end
print(string.format("unit %s gelded.",unit.id))
end
function Ungeld(unit)
unit.flags3.gelded = false
FindBodyPart(unit,false)
print(string.format("unit %s ungelded.",unit.id))
end
if args.find then
print(FindBodyPart(unit) and "found" or "not found")
return
end
local oldstate = dfhack.units.isGelded(unit)
local newstate
if args.ungeld then
newstate = false
elseif args.toggle then
newstate = not oldstate
else
newstate = true
end
if newstate ~= oldstate then
if newstate then
Geld(unit)
else
Ungeld(unit)
end
else
qerror(string.format("unit %s is already %s", unit.id, oldstate and "gelded" or "ungelded"))
end