Editing Module:DetectivePassiveList
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
require('strict') |
require('strict') |
||
require('Module:Mw.html extension') |
require('Module:Mw.html extension') |
||
local param = require( 'Module:Paramtest' ) |
|||
local lang = mw.getContentLanguage() |
|||
local |
local currency = require('Module:Currency') |
||
local lang = mw.getContentLanguage() |
|||
local purge = require('Module:Purge')._purge |
|||
local p = {} |
local p = {} |
||
Line 10: | Line 10: | ||
function p.main() |
function p.main() |
||
-- returns only directly needed parameter needed for the row, |
|||
local queryString = '[[Category:Detective]] AND [[Category:Pages with activities]]' |
|||
-- other parameters are determined by subqueries of chained pages |
|||
local |
local query = { |
||
'[[Variant of::Forensics (activity)||Evidence Filing||Interrogation||Stakeout]]', |
|||
return item.passive |
|||
'?Variant of #- = variant', |
|||
end |
|||
'?Profession Level A = lvl', |
|||
'? #- = name', |
|||
local results = plist.generate_recipe_table(queryString,screenFunction) |
|||
'?Image #- = Image', |
|||
'?Activity XP = XP', |
|||
'?Activity duration = duration', |
|||
'?Activity coins = coins', |
|||
'?Activity input #- = material', |
|||
'?Skill node name = product', |
|||
'sort = Profession Level A', |
|||
'limit = 500' |
|||
} |
|||
local results = mw.smw.ask(query) |
|||
results = p.formatResults(results) |
results = p.formatResults(results) |
||
Line 25: | Line 35: | ||
--return '<pre>'..mw.text.jsonEncode(results, mw.text.JSON_PRETTY)..'</pre>' |
--return '<pre>'..mw.text.jsonEncode(results, mw.text.JSON_PRETTY)..'</pre>' |
||
end |
|||
-- makes the html for the cells containing currency directly |
|||
-- Replaces nil with an "unknown" cell |
|||
local function currency_cell(amount) |
|||
if not amount then |
|||
return mw.html.create('td') |
|||
:addClass('table-bg-gray') |
|||
:css{ ['text-align'] = 'center' } |
|||
:attr{ colspan = '10' } |
|||
:wikitext("''unknown''") |
|||
:done() |
|||
end |
|||
return currency._cell(amount, { html = 'yes' }) |
|||
end |
end |
||
-- do calculations and determine strings to go in cells |
-- do calculations and determine strings to go in cells |
||
function p.formatResults(results) |
function p.formatResults(results) |
||
--simple check for nil results |
|||
if results==nil or results[1]==nil then |
|||
return nil |
|||
end |
|||
-- iterate through products |
-- iterate through products |
||
for _, item in ipairs(results) do |
for _, item in ipairs(results) do |
||
item. |
item.material = item.material or '' |
||
-- work out if the product is coins or items |
-- work out if the product is coins or items |
||
item.usesPotion = |
item.usesPotion = item.variant=='Forensics (activity)' |
||
if not item.usesPotion then |
|||
-- it it uses a potion, need to account for that in profit |
|||
item.profit = item.coins |
|||
item.buy = 0 |
|||
else |
|||
if item.usesPotion then |
|||
item.potion = (item.materials and item.materials[1] and item.materials[1].name) or '' |
|||
--shamelessley lifted from Module:Products |
|||
item.profit = item.coins and item.buyPrice and item.coins - item.buyPrice |
|||
local shopPriceQuery = '[[:+]][[Sold item::' .. item.material .. ']]|?Shop buy price=data|mainlabel=' .. item.material |
|||
local shopPriceResult = mw.smw.ask(shopPriceQuery) or {} |
|||
local shopPrice = 0 |
|||
if shopPriceResult[1] and shopPriceResult[1]["data"] then |
|||
shopPrice = tonumber(shopPriceResult[1]["data"]) or 0 |
|||
else |
|||
item.buy = nil |
|||
end |
|||
item.buy = shopPrice * 0.005 |
|||
end |
end |
||
item.profit = item.coins and item.buy and item.coins - item.buy |
|||
-- no downtime for passives |
-- no downtime for passives |
||
item.productPerHour = item.duration and 1 / item.duration * 3600 |
item.productPerHour = item.duration and 1 / item.duration * 3600 |
||
-- properties per hour |
-- properties per hour |
||
item. |
item.XPPerHour = item.XP and item.productPerHour and math.floor(item.XP * item.productPerHour) |
||
item.profitPerHour = item. |
item.profitPerHour = item.coins and item.productPerHour and math.floor(item.profit * item.productPerHour) |
||
end |
end |
||
Line 62: | Line 92: | ||
-- make the table |
-- make the table |
||
function p.displayTable(results) |
function p.displayTable(results) |
||
--simple check for nil results |
|||
if results==nil or results[1]==nil then |
|||
return 'No data found for table' |
|||
end |
|||
local out = mw.html.create('table') |
local out = mw.html.create('table') |
||
:addClass('wikitable sortable') |
:addClass('wikitable sortable') |
||
:tag('caption') |
|||
:wikitext('This list is updated dynamically. '..purge()) |
|||
:done() |
|||
:tag('tr') |
:tag('tr') |
||
:tag('th') |
:tag('th') |
||
Line 82: | Line 103: | ||
:done() |
:done() |
||
:tag('th') |
:tag('th') |
||
:attr{ colspan = '3' } |
|||
:wikitext('Materials') |
:wikitext('Materials') |
||
:done() |
:done() |
||
Line 92: | Line 112: | ||
:attr{ colspan = '10' } |
:attr{ colspan = '10' } |
||
:wikitext('Payment') |
:wikitext('Payment') |
||
:done() |
|||
:tag('th') |
|||
:attr{ colspan = '10' } |
|||
:wikitext('Profit') |
|||
:done() |
:done() |
||
:tag('th') |
:tag('th') |
||
Line 104: | Line 128: | ||
:done() |
:done() |
||
:done() |
:done() |
||
local unknown_value_cell = mw.html.create('td') |
|||
:addClass('table-bg-gray') |
|||
:css{ ['text-align'] = 'center' } |
|||
:wikitext("''unknown''") |
|||
for i, item in ipairs(results) do |
for i, item in ipairs(results) do |
||
Line 109: | Line 138: | ||
--level |
--level |
||
:IF(item. |
:IF(item.lvl) |
||
:tag('td') |
:tag('td') |
||
:css{ ['text-align'] = 'center' } |
:css{ ['text-align'] = 'center' } |
||
:wikitext(item. |
:wikitext(item.lvl) |
||
:done() |
:done() |
||
:ELSE() |
:ELSE() |
||
:node(unknown_value_cell) |
|||
:node(plist.unknown_value_edit_cell(item.pageName,1)) |
|||
:END() |
:END() |
||
-- activity |
-- activity |
||
:tag('td') |
|||
:node(plist.two_column_image_text(item.pageName,item.pageImage,item.pageName,item.pageName)) |
|||
:css{ ['border-right'] = '0', ['text-align'] = 'right', ['max-width'] = '100px' } |
|||
:addClass('plinkt-link no-border') |
|||
:attr{ ['data-sort-value'] = item.name } |
|||
:wikitext('[[' .. item.Image .. '|link=' .. item.name .. '|30x30px]]') |
|||
:done() |
|||
:tag('td') |
|||
:addClass('plinkt-link no-border') |
|||
:wikitext('[[' .. item.name .. ']]') |
|||
:done() |
|||
-- materials |
-- materials |
||
:IF(item.usesPotion) |
:IF(item.usesPotion) |
||
:tag('td') |
|||
:node(plist.three_column_image_text(item.potion,item.output[1].quantity,'File:'..item.potion..'.png',item.potion,item.potion)) |
|||
:wikitext('0.005 × [[File:' .. item.material .. '.png|link=' .. item.material .. '|30x30px]] [[' .. item.material .. ']]') |
|||
:node(plist.currency_cell(item.buyPrice)) |
|||
:done() |
|||
:node(currency_cell(item.buy)) |
|||
:node(currency_cell(item.coins)) |
|||
:ELSE() |
:ELSE() |
||
:tag('td') |
:tag('td') |
||
:addClass('table-na') |
:addClass('table-na') |
||
:attr{ colspan = ' |
:attr{ colspan = '21' } |
||
:wikitext('N/A') |
:wikitext('N/A') |
||
:done() |
:done() |
||
:END() |
:END() |
||
-- products (coins or items) |
|||
-- payment |
|||
: |
:node(currency_cell(item.profit)) |
||
:node(plist.currency_cell(item.coins)) |
|||
:ELSE() |
|||
:node(plist.unknown_value_edit_cell(item.pageName,10)) |
|||
:END() |
|||
-- |
-- products per hour (coins or items) |
||
:node( |
:node(currency_cell(item.profitPerHour)) |
||
-- XP |
-- XP |
||
:IF(item. |
:IF(item.XP) |
||
:tag('td') |
:tag('td') |
||
:wikitext(item. |
:wikitext(item.XP and lang:formatNum(tonumber(item.XP))) |
||
:done() |
:done() |
||
:ELSE() |
:ELSE() |
||
:node(unknown_value_cell) |
|||
:node(plist.unknown_value_edit_cell(item.pageName,1)) |
|||
:END() |
:END() |
||
-- XP per hour |
-- XP per hour |
||
:IF(item. |
:IF(item.XPPerHour) |
||
:tag('td') |
:tag('td') |
||
:wikitext(item. |
:wikitext(item.XPPerHour and lang:formatNum(tonumber(item.XPPerHour))) |
||
:done() |
:done() |
||
:ELSE() |
:ELSE() |
||
:node( |
:node(unknown_value_cell) |
||
:END() |
:END() |
||