Module:Used in recommended equipment: Difference between revisions
Jump to navigation
Jump to search
Armadyl Godsword>Kelsey No edit summary |
No edit summary |
||
(12 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
local paramTest = require('Module:Paramtest') | local paramTest = require('Module:Paramtest') | ||
local decode = mw.text.jsonDecode | local decode = mw.text.jsonDecode | ||
local html = mw.html | local html = mw.html | ||
Line 37: | Line 36: | ||
} | } | ||
local t1 = os.clock() | local t1 = os.clock() | ||
local t2 = os.clock() | local t2 = os.clock() | ||
--assert(itemData ~= nil and #itemData > 0, 'SMW query failed') | --assert(itemData ~= nil and #itemData > 0, 'SMW query failed') | ||
end | end | ||
function loadData(items) | function loadData(items) | ||
Line 65: | Line 52: | ||
} | } | ||
local t1 = os.clock() | local t1 = os.clock() | ||
local t2 = os.clock() | local t2 = os.clock() | ||
local newData = {} | local newData = {} | ||
return newData | return newData | ||
Line 109: | Line 80: | ||
local rowCountSpecial = 0 | local rowCountSpecial = 0 | ||
for _, equipmentTable in ipairs(data) do | for _, equipmentTable in ipairs(data) do | ||
Line 147: | Line 114: | ||
end | end | ||
end | end | ||
end | end | ||
end | end |
Latest revision as of 12:25, 6 May 2024
Documentation for this module may be created at Module:Used in recommended equipment/doc
local p = {}
local contains = require('Module:Array').contains
local pagesWithCats = require('Module:PageListTools').pageswithcats
local paramTest = require('Module:Paramtest')
local decode = mw.text.jsonDecode
local html = mw.html
local title = mw.title
local trim = mw.text.trim
function buildRow(positions, page, tableStyle)
local row = html.create('tr')
row:tag('td'):attr('data-sort-value', string.sub(positions, 1, 1)):wikitext(positions):done()
:tag('td'):wikitext('[[' .. page .. ']]' .. (paramTest.has_content(tableStyle) and ' <small>(' .. tableStyle .. ')</small>' or '')):done()
return row
end
function createHeader()
local tabl = html.create('table'):addClass('wikitable mw-collapsible mw-collapsed sortable align-center-1 align-left-2 autosort=1,a')
tabl:tag('tr'):tag('th'):wikitext('Rank'):done()
:tag('th'):wikitext('Method'):done()
return tabl
end
-- Returns the input item's page name and slot type
function loadItemData(item)
local query = {
'[[' .. item .. ']]',
'?=#-',
'?All Equipment slot = slot',
limit = 1,
offset = 0,
}
local t1 = os.clock()
local t2 = os.clock()
--assert(itemData ~= nil and #itemData > 0, 'SMW query failed')
end
function loadData(items)
local query = {
'[[Recommended Equipment JSON::+]]',
'?=#-',
'?Recommended Equipment JSON = json',
limit = 500,
offset = 0,
}
local t1 = os.clock()
local t2 = os.clock()
local newData = {}
return newData
end
function p._main(args)
-- CSV lists should only be used for things in the same slot that are functionally identical
-- This is primarily for redirect/generic linking, e.g. like `God blessing` when referring to any of the blessings
local itemStr = paramTest.default_to(args[1], title.getCurrentTitle().text)
local items = {}
for str in string.gmatch(itemStr, '([^,]+)') do
table.insert(items, trim(str))
end
local data = loadData(items)
-- Only using the primary page for slot/special info, others should never impact it
local itemPage, itemSlot = loadItemData(items[1])
local ret = createHeader()
local rowCount = 0
local retSpecial
local rowCountSpecial = 0
for _, equipmentTable in ipairs(data) do
local slotRowsToTraverse = {}
if(equipmentTable.json["Recommended Equipment"][itemSlot] ~= nil) then
table.insert(slotRowsToTraverse, itemSlot)
end
-- Weapon and 2h are used interchangably, so include both in the search.
if(itemSlot == 'weapon' and equipmentTable.json["Recommended Equipment"]['2h'] ~= nil) then
table.insert(slotRowsToTraverse, '2h')
elseif(itemSlot == '2h' and equipmentTable.json["Recommended Equipment"]['weapon'] ~= nil) then
table.insert(slotRowsToTraverse, 'weapon')
end
if(itemHasSpecial and equipmentTable.json["Recommended Equipment"]['special'] ~= nil) then
table.insert(slotRowsToTraverse, 'special')
end
-- Darts exist as weapons or ammo (and are included with blowpipe in weapon)
if(string.sub(itemPage, -4) == 'dart' and equipmentTable.json["Recommended Equipment"]['ammo'] ~= nil) then
table.insert(slotRowsToTraverse, 'ammo')
end
for _, slotRowName in ipairs(slotRowsToTraverse) do
local positions = ''
for i, slotEntry in ipairs(equipmentTable.json["Recommended Equipment"][slotRowName]) do
if(stringContains(items, slotEntry)) then
if(positions == '') then
positions = positions .. i
else
positions = positions .. ', ' .. i
end
end
end
end
end
if rowCount == 0 and rowCountSpecial == 0 then
do return 'Not used in any recommended equipment.' end
end
return (rowCount > 0 and tostring(ret) or '') .. (rowCountSpecial > 0 and tostring('\n===Special attack===\n') .. tostring(retSpecial) or '')
end
function p.main(frame)
local args = frame:getParent().args
return p._main(args)
end
return p