- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "Module:Iterator"
Jump to navigation
Jump to search
m |
|||
Line 32: | Line 32: | ||
end | end | ||
− | function Iterator.equipmentBy(context, n, pred) | + | function Iterator.equipmentBy(context, n, pred, pre) |
local predKey = stringKey('pred', context, n) | local predKey = stringKey('pred', context, n) | ||
if predKey then | if predKey then | ||
Line 53: | Line 53: | ||
local i = 1 | local i = 1 | ||
local current = nil | local current = nil | ||
+ | local preFlag = true | ||
return { | return { | ||
next = function() | next = function() | ||
Line 58: | Line 59: | ||
local e = collection[i] | local e = collection[i] | ||
if pred(e, i) then | if pred(e, i) then | ||
+ | if pre and preFlag then | ||
+ | local value = pre(e, i) | ||
+ | if value then | ||
+ | current = value | ||
+ | preFlag = false | ||
+ | return true | ||
+ | end | ||
+ | end | ||
current = e._name | current = e._name | ||
i = i + 1 | i = i + 1 | ||
+ | preFlag = true | ||
return true | return true | ||
end | end | ||
Line 79: | Line 89: | ||
return e._id >= from and e._id <= to | return e._id >= from and e._id <= to | ||
end) | end) | ||
+ | end | ||
+ | |||
+ | function Iterator.equipmentByIdWithHeaders(context, n) | ||
+ | local from = numberKey('from', context, n, 1) | ||
+ | local to = numberKey('to', context, n, 500) | ||
+ | local prevMod = 0 | ||
+ | return Iterator.equipmentBy( | ||
+ | context, n, | ||
+ | function(e) | ||
+ | return e._id >= from and e._id <= to | ||
+ | end, | ||
+ | function(e) | ||
+ | local currentMod = (e._id - 1) % 10 | ||
+ | if currentMod <= prevMod then | ||
+ | prevMod = currentMod | ||
+ | return "!#No " .. U.pad(e._id - currentMod, 3, "0") .. " - " .. U.pad(e._id - currentMod + 9, 3, "0") | ||
+ | else | ||
+ | prevMod = currentMod | ||
+ | return false | ||
+ | end | ||
+ | end | ||
+ | ) | ||
end | end | ||
Line 106: | Line 138: | ||
end | end | ||
testIterator('equipmentById', { from = '11', to = '20' }) | testIterator('equipmentById', { from = '11', to = '20' }) | ||
+ | testIterator('equipmentByIdWithHeaders', { from = '1', to = '30' }) | ||
testIterator('equipmentByType', { type = '2' }) | testIterator('equipmentByType', { type = '2' }) | ||
testIterator('equipmentByType', { type = '1', sort = '_icon' }) | testIterator('equipmentByType', { type = '1', sort = '_icon' }) |
Revision as of 19:17, 28 October 2017
Documentation for this module may be created at Module:Iterator/doc
-- [[Category:Todo]]:
-- more generic interface and compositions (filtering, grouping, mapping, sorting, etc.)
-- prevent clients from infinite loops
local U = require('Module:Utils')
local EquipmentData = require('Module:EquipmentData')
local CollectionEquipment = require('Module:Collection/Equipment')
local Iterator = {}
-- legacy, not a proper iterator
function Iterator.array(arr, i, n)
i = i or 0
n = n and math.min(#arr, n) or #arr
function step(n, i)
if i < n then
i = i + 1
return i, arr[i]
end
end
return function()
return step, n, i
end
end
function stringKey(name, context, n, default)
return context and context[name .. (n and tostring(n) or '')] or default
end
function numberKey(name, context, n, default)
return context and tonumber(context[name .. (n and tostring(n) or '')]) or default
end
function Iterator.equipmentBy(context, n, pred, pre)
local predKey = stringKey('pred', context, n)
if predKey then
pred = function(e)
local obj = EquipmentData(e)
return obj[predKey](obj)
end
end
local collection = U.icopy(CollectionEquipment)
local sortKey = stringKey('sort', context, n)
if sortKey then
table.sort(collection, function(a, b)
if a[sortKey] ~= b[sortKey] then
return a[sortKey] < b[sortKey]
else
return a._id < b._id
end
end)
end
local i = 1
local current = nil
local preFlag = true
return {
next = function()
for _ = i, #collection do
local e = collection[i]
if pred(e, i) then
if pre and preFlag then
local value = pre(e, i)
if value then
current = value
preFlag = false
return true
end
end
current = e._name
i = i + 1
preFlag = true
return true
end
i = i + 1
end
current = nil
return false
end,
current = function()
return current
end,
}
end
function Iterator.equipmentById(context, n)
local from = numberKey('from', context, n, 1)
local to = numberKey('to', context, n, 500)
return Iterator.equipmentBy(context, n, function(e)
return e._id >= from and e._id <= to
end)
end
function Iterator.equipmentByIdWithHeaders(context, n)
local from = numberKey('from', context, n, 1)
local to = numberKey('to', context, n, 500)
local prevMod = 0
return Iterator.equipmentBy(
context, n,
function(e)
return e._id >= from and e._id <= to
end,
function(e)
local currentMod = (e._id - 1) % 10
if currentMod <= prevMod then
prevMod = currentMod
return "!#No " .. U.pad(e._id - currentMod, 3, "0") .. " - " .. U.pad(e._id - currentMod + 9, 3, "0")
else
prevMod = currentMod
return false
end
end
)
end
function Iterator.equipmentByType(context, n)
local type = numberKey('type', context, n)
return Iterator.equipmentBy(context, n, function(e)
return e._type == type
end)
end
function Iterator.equipmentByTypeAndIcon(context, n)
local type = numberKey('type', context, n)
local icon = numberKey('icon', context, n)
return Iterator.equipmentBy(context, n, function(e)
return e._type == type and e._icon == icon
end)
end
function Iterator.test()
function testIterator(name, args)
local iterator = Iterator[name](args)
mw.log(name)
while iterator.next() do
mw.log(' ' .. iterator.current())
end
mw.log()
end
testIterator('equipmentById', { from = '11', to = '20' })
testIterator('equipmentByIdWithHeaders', { from = '1', to = '30' })
testIterator('equipmentByType', { type = '2' })
testIterator('equipmentByType', { type = '1', sort = '_icon' })
testIterator('equipmentByTypeAndIcon', { type = '1', icon = '16' })
testIterator('equipmentBy', { pred = 'is_large_caliber_main_gun', sort = '_type' })
end
-- p.test()
return Iterator