forked from DFHack/scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
catsplosion.lua
96 lines (81 loc) · 2.54 KB
/
catsplosion.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
-- Make cats just /multiply/.
--[====[
catsplosion
===========
Makes cats (and other animals) just *multiply*. It is not a good idea to run this
more than once or twice.
Usage:
:catsplosion: Make all cats pregnant
:catsplosion list: List IDs of all animals on the map
:catsplosion ID ...: Make animals with given ID(s) pregnant
Animals will give birth within two in-game hours (100 ticks or fewer).
]====]
local world = df.global.world
if not dfhack.isWorldLoaded() then
qerror('World not loaded.')
end
local args = {...}
local list_only = false
local creatures = {}
if #args > 0 then
for _, arg in pairs(args) do
if arg == 'list' then
list_only = true
else
creatures[arg:upper()] = true
end
end
else
creatures.CAT = true
end
local total = 0
local total_changed = 0
local total_created = 0
local males = {} --as:df.unit[][]
local females = {} --as:df.unit[][]
for _, unit in pairs(world.units.all) do
local id = world.raws.creatures.all[unit.race].creature_id
males[id] = males[id] or {}
females[id] = females[id] or {}
table.insert((dfhack.units.isFemale(unit) and females or males)[id], unit)
end
if list_only then
print("Type Male # Female #")
-- sort IDs alphabetically
local ids = {} --as:string[]
for id in pairs(males) do
table.insert(ids, id)
end
table.sort(ids)
for _, id in pairs(ids) do
print(("%22s %6d %8d"):format(id, #males[id], #females[id]))
end
return
end
for id in pairs(creatures) do
total = total + #(females[id] or {})
for _, female in pairs(females[id]) do
if female.pregnancy_timer ~= 0 then
female.pregnancy_timer = math.random(1, 100)
total_changed = total_changed + 1
elseif not female.pregnancy_genes then
local preg = df.unit_genes:new()
preg.appearance:assign(female.appearance.genes.appearance)
preg.colors:assign(female.appearance.genes.colors)
female.pregnancy_genes = preg
female.pregnancy_timer = math.random(1, 100)
female.pregnancy_caste = female.caste -- To handle female only species
total_created = total_created + 1
end
end
end
if total_changed ~= 0 then
print(("%d pregnancies accelerated."):format(total_changed))
end
if total_created ~= 0 then
print(("%d pregnancies created."):format(total_created))
end
if total == 0 then
qerror("No creatures matched.")
end
print(("Total creatures checked: %d"):format(total))