Added option to region-pops script to additively augment populations.

develop
Kelly Martin 2012-11-20 08:28:06 -06:00
parent 3b2b77c693
commit 5ac8d3be82
1 changed files with 34 additions and 0 deletions

@ -99,6 +99,16 @@ function boost_population(entry, factor, boost_count)
return boost_count return boost_count
end end
function incr_population(entry, factor, boost_count)
for _,v in ipairs(entry.records) do
if v.quantity < 10000001 then
boost_count = boost_count + 1
v.quantity = math.max(0, v.quantity + factor)
end
end
return boost_count
end
local args = {...} local args = {...}
local pops = enum_populations() local pops = enum_populations()
@ -123,6 +133,26 @@ elseif args[1] == 'boost' or args[1] == 'boost-all' then
end end
end end
print('Updated '..count..' populations.')
elseif args[1] == 'incr' or args[1] == 'incr-all' then
local factor = tonumber(args[3])
if not factor then
qerror('Invalid increment factor.')
end
local count = 0
if args[1] == 'incr' then
local entry = pops.any[args[2]] or qerror('Unknown population token.')
count = incr_population(entry, factor, count)
else
for k,entry in pairs(pops.any) do
if string.match(k, args[2]) then
count = incr_population(entry, factor, count)
end
end
end
print('Updated '..count..' populations.') print('Updated '..count..' populations.')
else else
print([[ print([[
@ -137,5 +167,9 @@ Usage:
population, otherwise decreases it. population, otherwise decreases it.
region-pops boost-all <pattern> <factor> region-pops boost-all <pattern> <factor>
Same as above, but match using a pattern acceptable to list. Same as above, but match using a pattern acceptable to list.
region-pops incr <TOKEN> <factor>
Augment (or diminish) all populations of TOKEN by factor (additive).
region-pops incr-all <pattern> <factor>
Same as above, but match using a pattern acceptable to list.
]]) ]])
end end