Editing Module:Sandbox/User:Alsang

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

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('Module:Mw.html extension')
require('Module:Mw.html extension')
local param = require( 'Module:Paramtest' )
local Array = require('Module:Array')
local currency = require('Module:Currency')
local currency = require('Module:Currency').parse
local lang = mw.getContentLanguage()
local yesno = require('Module:Yesno')
local xpdata = mw.loadData('Module:Experience/data')
local purge = require('Module:Purge')._purge


local p = {}
local p = {}


function p.main(frame)
-- non dynamic module, no inputs
return p._main(frame:getParent().args)
function p.main()
end
-- returns only directly needed parameter needed for the row,
-- other parameters are determined by subqueries of chained pages
local query = {
'[[Activity JSON::~*]]',
'? = name',
'?Activity JSON = activityJSON',
'limit = 1500'
}
local results = mw.smw.ask(query)
results = p.screenResults(results)


local function recipe_sort(recipe_a, recipe_b)
return p.displayTable(results)
-- Sort unknown levels to the end
if (recipe_a.level == nil) ~= (recipe_b.level == nil) then
--for debugging
return recipe_b.level == nil
--return '<pre>'..mw.text.jsonEncode(results, mw.text.JSON_PRETTY)..'</pre>'
end

if recipe_a.level ~= nil then
return recipe_a.level < recipe_b.level
end


-- Sort by name if same level
return recipe_a.output[1].name < recipe_b.output[1].name
end
end


function p._main(args)
-- goes through a list of results and culls the ones which are not needed for this table
args = args or {}
function p.screenResults(results)
local item = args[1] or mw.title.getCurrentTitle().text
local resultsScreened = {}
local showPrices = yesno(args.showPrices)
local showValues = yesno(args.showValues)
local limit = tonumber(args.limit or 0) or 0
if limit <= 0 then
limit = 500
end
-- iterate through products
-- Query for data
local smw_data = mw.smw.ask{
for _, item in ipairs(results) do
'[[Uses item::' .. item .. ']] OR [[Activity input::' .. item .. ']] OR [[Activity container::' .. item .. ']]',
'?Recipe JSON',
-- if theres only one activity, wrap in table
'?Activity JSON',
if type(item.activityJSON)=='string' then
showValues and '?Value',
item.activityJSON = { item.activityJSON }
limit = limit
}
if not smw_data then
return ":''No products found. To force an update, click "
..purge('dml-'..mw.uri.anchorEncode(item), 'here', 'span')
..".''[[Category:Empty products lists]]"
end

-- Create a list of all recipes, grouped by output item (to keep them together in the sort)
local produced_items = {}
for _, product in ipairs(smw_data) do
local jsons = product['Recipe JSON'] or product['Activity JSON']
if type(jsons) == 'string' then
jsons = { jsons }
end
end
local parsed = {}
for j,json in ipairs(item.activityJSON) do
for _, json in ipairs(jsons) do
local json = mw.text.jsonDecode(json)
json.Value = product.Value
local activityJSON = mw.text.jsonDecode(json)
-- Filter out when this item isn't actually used (Will happen on pages with multiple recipes)
if Array.any(json.materials, function(mat)
if activityJSON.duration and tonumber(activityJSON.duration)==20 then
local itemNew = {}
return mat.name == item
end) then
itemNew.name = item.name
table.insert(parsed, json)
itemNew.XP = activityJSON.xp
itemNew.lvl = activityJSON.level
itemNew.profession = activityJSON.profession
itemNew.duration = activityJSON.duration
itemNew.product = activityJSON.output[1].name
itemNew.XPperHour = itemNew.XP and tonumber(itemNew.XP) and itemNew.duration and tonumber(itemNew.duration) and tonumber(itemNew.XP) * 3600 / tonumber(itemNew.duration)
itemNew.fitXP = xpdata.knowledge[itemNew.lvl]*4*0.0005
if itemNew.lvl>=200 then
itemNew.fitXP = itemNew.fitXP * 4
end
itemNew.fitXP = math.floor(itemNew.fitXP * 100 ) / 100
local query = mw.smw.ask('[[Sold item::' .. itemNew.product .. ']][[Shop sell price::!~N/A]]|?Shop sell price=data|mainlabel=-')
if type(query)=='table' then
-- price is returned as a number
itemNew.productSellPrice = tonumber(query[1].data)*0.005
else
-- will return nil if the item is not in a shop, or if it is in a shop but can only be sold to the shop
itemNew.productSellPrice = nil
end
table.insert(resultsScreened,itemNew)
end
end
end
end
table.sort(parsed, recipe_sort)
table.insert(produced_items, parsed)
end
end

-- sort the results by recipe level
-- Sort by the smallest recipe in the group
table.sort(resultsScreened, function(item1, item2)
table.sort(produced_items, function(item1, item2)
local lvl1 = item1.lvl
local first1 = item1[1]
local lvl2 = item2.lvl
local first2 = item2[1]
if (lvl1 == nil) ~= (lvl2 == nil) then --one of two are empty
if (first1 == nil) ~= (first2 == nil) then
return first2 == nil
return lvl2 == nil -- true if lvl2 is nil but not lvl1, false if lvl1 is nil but not lvl2
end
end
if lvl1 == nil then
if first1 == nil then
return false -- Both empty, equivalent
return false -- Both empty, equivalent
end
end

return lvl1 < lvl2 -- normal comparison
return recipe_sort(first1, first2)
end)
end)


-- Flatten into a single list
return resultsScreened
local recipes = {}
for _, product in ipairs(produced_items) do
for _, json in ipairs(product) do
table.insert(recipes, json)
end
end


-- Calculate shop prices
end
if showPrices then
local price_cache = {}
for _, recipe in ipairs(recipes) do
for _, item in ipairs(recipe.materials) do
-- Extract item name and quantity from the "item,#" format


-- Query for the shop buy price of the item
-- make the table
local shopPriceResult = price_cache[item.name] or mw.smw.ask{
function p.displayTable(results)
'[[Sold item::' .. item.name .. ']]',
'?Shop buy price'
} or {}
price_cache[item.name] = shopPriceResult
local shopPrice

if shopPriceResult[1] then
shopPrice = tonumber(shopPriceResult[1]['Shop buy price'] or 0) or 0
end

-- Update the product with the total price
if shopPrice ~= nil then
item.price = shopPrice * item.quantity
end
end
end
end

-- Create table
local out = mw.html.create('table')
local out = mw.html.create('table')
:addClass('wikitable sortable')
:addClass('wikitable align-right-1 sortable')
:tag('tr')
:tag('tr')
:tag('th')
:tag('th')
:wikitext('Page')
:attr{ colspan = '3' }
:wikitext('Recipe')
:done()
:done()
:tag('th')
:tag('th'):wikitext('Level'):done()
:wikitext('Product')
:IF(showValues)
:done()
:tag('th'):wikitext('Value'):done()
:tag('th')
:END()
:wikitext('Profession')
:tag('th'):wikitext('Ingredients'):done()
:done()
:IF(showPrices)
:tag('th')
:tag('th'):wikitext('Price'):done()
:wikitext('Level')
:END()
:done()
:tag('th')
:wikitext('XP')
:done()
:tag('th')
:wikitext('0.0005 of levelup XP')
:done()
:tag('th')
:wikitext('sell price<br>per action')
:done()
-- :tag('th')
-- :wikitext('Duration')
-- :done()
-- :tag('th')
-- :wikitext('XP/hr')
-- :done()
:done()
:done()


for i, item in ipairs(results) do
for _, recipe in ipairs(recipes) do
local row = out:tag('tr')
local row = out:tag('tr')
--level
:tag('td')
:tag('td')
:css{ ['border-right'] = '0', ['padding-right'] = '0' }
:wikitext(item.name)
:attr{ ['data-sort-value'] = recipe.output[1].name }
:wikitext(recipe.output[1].quantity .. ' &times;')
:done()
:done()
:tag('td')
:tag('td')
:addClass('plinkt-image no-border')
:wikitext('[[' .. item.product .. ']]')
:css{ ['border-left'] = '0', ['padding-left'] = '0' }
:wikitext('[[File:' .. recipe.output[1].name .. '.png|link=' .. recipe.output[1].name .. '|30px]]')
:done()
:done()
:tag('td')
:tag('td')
:addClass('plinkt-link no-border')
:wikitext('[[' .. item.profession .. ']]')
:wikitext('[[' .. recipe.output[1].name .. ']]')
:done()
:done()
:tag('td')
:tag('td')
:wikitext(item.lvl)
:IF(recipe.profession)
:wikitext(('[[File:%s small icon.png|15px|link=%s]] %s'):format(recipe.profession, recipe.profession, recipe.level or 'Unknown'))
:ELSE()
:wikitext(('[[FileUnknown profession small icon.png|15px|link=Professions]] %s'):format(recipe.level or 'Unknown'))
:END()
:done()
:done()

:tag('td')
if showValues then
:wikitext(item.XP)
if recipe.Value then
row:tag('td')
:wikitext(currency(recipe.Value))
:done()
else
row:tag('td')
:attr{ ['data-sort-value'] = '' }
:wikitext('Unknown')
:done()
end
end

local ingredients = row:tag('td')
:attr{ ['data-sort-value'] = table.concat(Array.map(recipe.materials, function(item) return item.name end), '\0') }
:tag('ul')
:css{ ['list-style'] = 'none', ['margin'] = '0', ['padding-left'] = '0' }

for _, item in ipairs(recipe.materials) do
ingredients:tag('li')
:wikitext(('%s &times; [[File:%s.png|link=%s|18px]] [[%s]]'):format(item.quantity, item.name, item.name, item.name))
:done()
:done()
end
:tag('td')

:wikitext(item.fitXP)
if showPrices then
:done()
:tag('td')
local prices = row:tag('td')
:tag('ul')
:wikitext(item.productSellPrice)
:css{ ['list-style'] = 'none', ['margin'] = '0', ['padding-left'] = '0' }
:done()

-- :tag('td')
for _, item in ipairs(recipe.materials) do
-- :wikitext(item.duration)
if item.price then
-- :done()
prices:tag('li'):wikitext(currency(item.price)):done()
-- :tag('td')
else
-- :wikitext(item.XPperHour)
prices:tag('li'):wikitext('Unknown'):done()
-- :done()
end
end
end


:done()
end
end


Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see Brighter Shores:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)
Preview page with this template

This page is a member of a hidden category: