- 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:DropList"
Jump to navigation
Jump to search
m |
(fix ship order) |
||
Line 10: | Line 10: | ||
} | } | ||
− | local | + | local diff_colors = { |
['Easy'] = '5a5', | ['Easy'] = '5a5', | ||
['Medium'] = 'da6', | ['Medium'] = 'da6', | ||
Line 17: | Line 17: | ||
} | } | ||
− | local | + | local diff_names = { |
['Easy'] = 'Easy+', | ['Easy'] = 'Easy+', | ||
['Medium'] = 'Medium+', | ['Medium'] = 'Medium+', | ||
Line 26: | Line 26: | ||
function parseArgs(args) | function parseArgs(args) | ||
− | local | + | local tbl = { nodes = {}, rows = {} } |
-- header args | -- header args | ||
for node in string.gmatch(args.nodes, args_grammar.comma_list) do | for node in string.gmatch(args.nodes, args_grammar.comma_list) do | ||
local node = node:match(args_grammar.to_trim) | local node = node:match(args_grammar.to_trim) | ||
− | table. | + | table.insert(tbl.nodes, { name = node, boss = node == args.boss }) |
− | |||
− | |||
− | |||
end | end | ||
Line 42: | Line 39: | ||
local ship, nodes = arg:match(args_grammar.ship_and_nodes) | local ship, nodes = arg:match(args_grammar.ship_and_nodes) | ||
-- TODO: check ship existence? | -- TODO: check ship existence? | ||
− | table.rows | + | table.insert(tbl.rows, 1, {}) |
− | local row = | + | local row = tbl.rows[1] |
row.ship = ship | row.ship = ship | ||
row.nodes = {} | row.nodes = {} | ||
− | for _, node in pairs( | + | for _, node in pairs(tbl.nodes) do |
row.nodes[node.name] = nil | row.nodes[node.name] = nil | ||
end | end | ||
Line 57: | Line 54: | ||
-- TODO: check node existence? | -- TODO: check node existence? | ||
if node then | if node then | ||
− | row.nodes[node] = { color = diff and | + | row.nodes[node] = { color = diff and diff_colors[diff] or diff_colors['?'], diff = diff and diff_names[diff] or '?' } |
end | end | ||
end | end | ||
Line 63: | Line 60: | ||
end | end | ||
− | return | + | return tbl |
end | end | ||
Line 77: | Line 74: | ||
} | } | ||
− | function showTable( | + | function showTable(tbl) |
local res = table_format.header | local res = table_format.header | ||
-- header | -- header | ||
− | for _, node in pairs( | + | for _, node in pairs(tbl.nodes) do |
res = res .. string.format(node.boss and table_format.header_boss_node or table_format.header_node, node.name) | res = res .. string.format(node.boss and table_format.header_boss_node or table_format.header_node, node.name) | ||
end | end | ||
-- rows | -- rows | ||
− | for | + | for _, row in pairs(tbl.rows) do |
− | res = res .. string.format(table_format.ship_cell, ship) | + | res = res .. string.format(table_format.ship_cell, row.ship) |
− | for _, node in pairs( | + | for _, node in pairs(tbl.nodes) do |
local node = row.nodes[node.name] | local node = row.nodes[node.name] | ||
res = res .. (node and string.format(table_format.node_cell, node.color, node.diff) or table_format.empty_cell) | res = res .. (node and string.format(table_format.node_cell, node.color, node.diff) or table_format.empty_cell) |
Revision as of 04:34, 17 October 2015
Documentation for this module may be created at Module:DropList/doc
local DropList = {}
local args_grammar = {
to_trim = '^%s*(.-)%s*$',
comma_list = '[^,]+',
ship_and_nodes = '^%s*(.-)%s*:%s*(.-)%s*$',
just_node = '^%s*(%a)%s*$',
node_and_diff = '^%s*(%a)%s*/%s*(%S-)%s*$'
}
local diff_colors = {
['Easy'] = '5a5',
['Medium'] = 'da6',
['Hard'] = 'd33',
['?'] = '0ff'
}
local diff_names = {
['Easy'] = 'Easy+',
['Medium'] = 'Medium+',
['Hard'] = 'Hard+',
['?'] = '?'
}
function parseArgs(args)
local tbl = { nodes = {}, rows = {} }
-- header args
for node in string.gmatch(args.nodes, args_grammar.comma_list) do
local node = node:match(args_grammar.to_trim)
table.insert(tbl.nodes, { name = node, boss = node == args.boss })
end
-- ship args
for arg_name, arg in pairs(args) do
if tonumber(arg_name) then
local ship, nodes = arg:match(args_grammar.ship_and_nodes)
-- TODO: check ship existence?
table.insert(tbl.rows, 1, {})
local row = tbl.rows[1]
row.ship = ship
row.nodes = {}
for _, node in pairs(tbl.nodes) do
row.nodes[node.name] = nil
end
for node_and_diff in string.gmatch(nodes, args_grammar.comma_list) do
local node, diff = node_and_diff:match(args_grammar.node_and_diff)
if not node or not diff then
node = node_and_diff:match(args_grammar.just_node)
diff = nil
end
-- TODO: check node existence?
if node then
row.nodes[node] = { color = diff and diff_colors[diff] or diff_colors['?'], diff = diff and diff_names[diff] or '?' }
end
end
end
end
return tbl
end
local table_format = {
header = '{| class="wikitable sortable" align="center" width="90%" style="text-align:center"\n!Ship\n',
header_node = '!width="10%%"|%s\n',
header_boss_node = '!width="10%%" style="background-color:pink;color:red;"|\'\'\'%s\'\'\'\n',
ship_cell = '|-\n|[[%s]]\n',
node_cell = '|style="background-color:#%s;"|%s\n',
empty_cell = '|\n',
footer = '|}\n'
}
function showTable(tbl)
local res = table_format.header
-- header
for _, node in pairs(tbl.nodes) do
res = res .. string.format(node.boss and table_format.header_boss_node or table_format.header_node, node.name)
end
-- rows
for _, row in pairs(tbl.rows) do
res = res .. string.format(table_format.ship_cell, row.ship)
for _, node in pairs(tbl.nodes) do
local node = row.nodes[node.name]
res = res .. (node and string.format(table_format.node_cell, node.color, node.diff) or table_format.empty_cell)
end
end
res = res .. table_format.footer
return res
end
function DropList.show(frame)
return showTable(parseArgs(frame.args))
end
return DropList