Module:EncounterTable: Difference between revisions

m
further reformatting
m (quick reformat pass)
m (further reformatting)
Line 1: Line 1:
local p = {}
local EncounterTable = {}
local process_args = require'Module:ProcessArgs'
local text_util = require'Module:Text Utility'


function p.splitEncounterTableArgs(row)
--# Requires
 
local ProcessArgs = require'Module:ProcessArgs'
local TextUtility = require'Module:Text Utility'
 
--# Interface
 
function EncounterTable.splitEncounterTableArgs(row)
     local TABLE_ARGS = {'table', 'item', 'quantity', 'weight'}
     local TABLE_ARGS = {'table', 'item', 'quantity', 'weight'}
     return text_util.splitArgs(row, TABLE_ARGS)
     return TextUtility.splitArgs(row, TABLE_ARGS)
end
end




function p.start(frame)
function EncounterTable.start(frame)
     local args = process_args.merge(true)
     local args = ProcessArgs.merge(true)
     local tblName = args.name or ''
     local tblName = args.name or ''
     local pick = args.roll or 'once'
     local pick = args.roll or 'once'
Line 17: Line 22:


     for i, row in ipairs(args) do
     for i, row in ipairs(args) do
         local newrow = p.splitEncounterTableArgs(row)
         local newrow = EncounterTable.splitEncounterTableArgs(row)
         result[i] = newrow
         result[i] = newrow
         totalWeight = totalWeight + tonumber(newrow.weight)
         totalWeight = totalWeight + tonumber(newrow.weight)
Line 72: Line 77:
     end
     end


     return p.formatTable(finalTable)
     return EncounterTable.formatTable(finalTable)
end
end


function p.formatTable(final)
function EncounterTable.formatTable(final)
     local TABLE_HEADER = '<tr><th>Item</th><th>Quantity</th><th>Weight</th><th>Chance</th></tr>'
     local TABLE_HEADER = '<tr><th>Item</th><th>Quantity</th><th>Weight</th><th>Chance</th></tr>'
     local tr = ''
     local tableRows = ''


     for _, v in ipairs(final) do
     for _, entry in ipairs(final) do
         tr = tr .. ' <tr><td>' .. v.item .. '</td><td>' .. v.quantity .. '</td><td>' .. v.weight .. '</td><td>' .. v.chance .. '</td></tr>'
         tableRows = tableRows .. ('<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>'):format(entry.item, entry.quantity, entry.weight, entry.chance)
     end
     end


     return '<table class="wikitable sortable">' .. TABLE_HEADER  .. tr .. '</table>'
     return ('<table class="wikitable sortable">%s%s</table>'):format(TABLE_HEADER, tableRows)
end
end


return p
return EncounterTable