Module:SourcesQuery: Difference between revisions
From IdleOn MMO Wiki
Kiokurashi (talk | contribs) mNo edit summary |
Kiokurashi (talk | contribs) mNo edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local cargo = mw.ext.cargo | local cargo = mw.ext.cargo | ||
function p.PullSourcesFromList(frame) | function p.PullSourcesFromList(frame) | ||
Line 21: | Line 20: | ||
function p.Main( frame ) | function p.Main( frame ) | ||
local item = frame.args.item | local item = frame.args.item | ||
local fullList = {} | |||
local result = '' | local result = '' | ||
SmithingSources(item) | fullList = SmithingSources(item, fullList) | ||
DropTableSources(item) | fullList = DropTableSources(item, fullList) | ||
QuestSources(item) | fullList = QuestSources(item, fullList) | ||
VendorSources(item) | fullList = VendorSources(item, fullList) | ||
PostOfficeSources(item) | fullList = PostOfficeSources(item, fullList) | ||
CustomSources(item) | fullList = CustomSources(item, fullList) | ||
if #fullList == 0 then | if #fullList == 0 then | ||
Line 40: | Line 40: | ||
end | end | ||
function SmithingSources(item) | function SmithingSources(item, transferList) | ||
local fullList = transferList | |||
local tables = 'AnvilCraft' | local tables = 'AnvilCraft' | ||
local fields = 'RecipeFrom' | local fields = 'RecipeFrom' | ||
Line 56: | Line 57: | ||
fullList[#fullList+1] = string.format('[[Smithing]]%s', from) | fullList[#fullList+1] = string.format('[[Smithing]]%s', from) | ||
end | end | ||
return fullList | |||
end | end | ||
function DropTableSources(item) | function DropTableSources(item, transferList) | ||
local fullList = transferList | |||
local tables = 'DropTables' | local tables = 'DropTables' | ||
local fields = 'DropSourceEntity' | local fields = 'DropSourceEntity' | ||
Line 74: | Line 76: | ||
fullList[#fullList+1] = string.format('[[%s]]', source) | fullList[#fullList+1] = string.format('[[%s]]', source) | ||
end | end | ||
return fullList | |||
end | end | ||
function QuestSources(item) | function QuestSources(item, transferList) | ||
local fullList = transferList | |||
local tables = 'Quests' | local tables = 'Quests' | ||
local fields = '_pageName' | local fields = '_pageName' | ||
Line 91: | Line 94: | ||
fullList[#fullList+1] = string.format('[[%s]]', source) | fullList[#fullList+1] = string.format('[[%s]]', source) | ||
end | end | ||
return fullList | |||
end | end | ||
function VendorSources(item) | function VendorSources(item, transferList) | ||
local fullList = transferList | |||
local tables = 'VendorItems' | local tables = 'VendorItems' | ||
local fields = 'Vendor' | local fields = 'Vendor' | ||
Line 108: | Line 112: | ||
fullList[#fullList+1] = string.format('[[Vendors#%s|%s]] (Shop)', vendor, vendor) | fullList[#fullList+1] = string.format('[[Vendors#%s|%s]] (Shop)', vendor, vendor) | ||
end | end | ||
return fullList | |||
end | end | ||
function PostOfficeSources(item) | function PostOfficeSources(item, transferList) | ||
local fullList = transferList | |||
local companies = {'Simple Shippin', 'Plan-it Express', 'Dudes Next Door', 'Down Undelivery', 'Alpine Suppliers', 'Cosmic Carrier'} | local companies = {'Simple Shippin', 'Plan-it Express', 'Dudes Next Door', 'Down Undelivery', 'Alpine Suppliers', 'Cosmic Carrier'} | ||
local shortNames = {'SS', 'PE', 'DND', 'DU', 'AS', 'CC'} -- Handling it this way so we can control the order. | local shortNames = {'SS', 'PE', 'DND', 'DU', 'AS', 'CC'} -- Handling it this way so we can control the order. | ||
Line 136: | Line 141: | ||
end | end | ||
fullList[#fullList+1] = string.format('[[Post Office#Companies & Rewards|Post Office]] (%s)', table.concat(compTable, ", ")) | fullList[#fullList+1] = string.format('[[Post Office#Companies & Rewards|Post Office]] (%s)', table.concat(compTable, ", ")) | ||
return fullList | |||
end | end | ||
function CustomSources(item) | function CustomSources(item, transferList) | ||
local fullList = transferList | |||
local tables = 'ExtraSourceData' | local tables = 'ExtraSourceData' | ||
local fields = 'Link, SpecialText, EventRules' | local fields = 'Link, SpecialText, EventRules' | ||
Line 164: | Line 170: | ||
-- If item is a special drop then append the following to the last entry so it isn't split by commas later. | -- If item is a special drop then append the following to the last entry so it isn't split by commas later. | ||
if EventRulesCounter > 0 then fullList[#fullList] = fullList[#fullList] .. "<br/>''Additional Event drop.''" end | if EventRulesCounter > 0 then fullList[#fullList] = fullList[#fullList] .. "<br/>''Additional Event drop.''" end | ||
return fullList | |||
end | end | ||
Revision as of 04:07, 23 March 2024
Documentation for this module may be created at Module:SourcesQuery/doc
local p = {}
local cargo = mw.ext.cargo
function p.PullSourcesFromList(frame)
local item = frame.args.item
local tables = 'ItemSources'
local fields = 'SourcesList'
local args = {
where = 'ItemSources.Item="'.. item ..'"',
orderBy = 'ItemSources.Item'
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
-- There should only ever be one option if it exists so return that.
return results[1].SourcesList
end
function p.Main( frame )
local item = frame.args.item
local fullList = {}
local result = ''
fullList = SmithingSources(item, fullList)
fullList = DropTableSources(item, fullList)
fullList = QuestSources(item, fullList)
fullList = VendorSources(item, fullList)
fullList = PostOfficeSources(item, fullList)
fullList = CustomSources(item, fullList)
if #fullList == 0 then
result = 'Unobtainable'
else
result = table.concat(fullList, ', ')
end
-- Set LuaVar variable Sources so that we don't need to re-query on the same page.
mw.ext.VariablesLua.vardefine('Sources', result)
return result
end
function SmithingSources(item, transferList)
local fullList = transferList
local tables = 'AnvilCraft'
local fields = 'RecipeFrom'
local args = {
where = 'AnvilCraft.Item="'.. item ..'"',
orderBy = 'AnvilCraft.Item'
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
local from = ''
for r = 1, #results do
if 'Start' ~= results[r].RecipeFrom then
from = string.format(' (%s)', results[r].RecipeFrom)
end
fullList[#fullList+1] = string.format('[[Smithing]]%s', from)
end
return fullList
end
function DropTableSources(item, transferList)
local fullList = transferList
local tables = 'DropTables'
local fields = 'DropSourceEntity'
local args = {
where = 'DropTables.DropItem="'.. item ..'" AND NOT DropTables.DropSourceEntity LIKE "%DropTable%"',
groupBy = 'DropTables.DropSourceEntity',
orderBy = 'DropTables.DropSourceEntity ASC'
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
local source = ''
for r = 1, #results do
source = results[r].DropSourceEntity
fullList[#fullList+1] = string.format('[[%s]]', source)
end
return fullList
end
function QuestSources(item, transferList)
local fullList = transferList
local tables = 'Quests'
local fields = '_pageName'
local args = {
where = 'Quests.Rewards HOLDS LIKE "%>'.. item ..'<%"',
groupBy = 'Quests._pageName',
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
local source = ''
for r = 1, #results do
source = results[r]._pageName
fullList[#fullList+1] = string.format('[[%s]]', source)
end
return fullList
end
function VendorSources(item, transferList)
local fullList = transferList
local tables = 'VendorItems'
local fields = 'Vendor'
local args = {
where = 'VendorItems.Item="'.. item ..'"',
orderBy = 'VendorItems.Vendor',
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
local vendor = ''
for r = 1, #results do
vendor = results[r].Vendor
fullList[#fullList+1] = string.format('[[Vendors#%s|%s]] (Shop)', vendor, vendor)
end
return fullList
end
function PostOfficeSources(item, transferList)
local fullList = transferList
local companies = {'Simple Shippin', 'Plan-it Express', 'Dudes Next Door', 'Down Undelivery', 'Alpine Suppliers', 'Cosmic Carrier'}
local shortNames = {'SS', 'PE', 'DND', 'DU', 'AS', 'CC'} -- Handling it this way so we can control the order.
local boolTracker = {0, 0, 0, 0, 0, 0} --Used to track which Company offers the same item as a reward.
local tables = 'PORewards'
local fields = 'Company'
local args = {
where = 'PORewards.Item="'.. item ..'"',
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
local company = ''
for r = 1, #results do
company = results[r].Company
for c = 1, #companies do
if company == companies[c] then boolTracker[c] = 1 end
end
end
local compTable = {}
for b = 1, #boolTracker do
if boolTracker[b] == 1 then
compTable[#compTable+1] = string.format('<span class="simple-tooltip simple-tooltip-inline tooltipstered" style="color: #b847cb;" data-simple-tooltip="%s">[[Post Office#%s|%s]]</span>', companies[b], companies[b], shortNames[b])
end
end
fullList[#fullList+1] = string.format('[[Post Office#Companies & Rewards|Post Office]] (%s)', table.concat(compTable, ", "))
return fullList
end
function CustomSources(item, transferList)
local fullList = transferList
local tables = 'ExtraSourceData'
local fields = 'Link, SpecialText, EventRules'
local args = {
where = 'ExtraSourceData.Item="'.. item ..'"',
orderBy = 'ExtraSourceData.Source',
}
local results = cargo.query( tables, fields, args )
if #results == 0 then return end -- if no results, return original string and continue.
local EventRulesCounter = 0
local link = ''
local sText = ''
for r = 1, #results do
link = results[r].Link
sText = results[r].SpecialText
EventRulesCounter = EventRulesCounter + results[r].EventRules
if sText ~= 'None' then
sText = string.format(' (%s)', sText)
else
sText = ''
end
fullList[#fullList+1] = string.format('[[%s]]%s', link, sText)
end
-- If item is a special drop then append the following to the last entry so it isn't split by commas later.
if EventRulesCounter > 0 then fullList[#fullList] = fullList[#fullList] .. "<br/>''Additional Event drop.''" end
return fullList
end
-- This one is just to get the Drop Chance value for an Item.
function p.DropChance(frame)
local item = frame.args.item
local result = ''
local tables = 'DropTables'
local fields = 'DropItem, DropRate'
-- DropItem="{{{1|{{PAGENAME}}}}}" AND NOT DropSourceEntity LIKE "%DropTable%"
local args = {
where = 'DropTables.DropItem = "'.. item ..'" AND NOT DropSourceEntity LIKE "%DropTable%"',
orderBy = 'DropTables.DropRate DESC'
}
local results = cargo.query( tables, fields, args )
if #results == 0 then result = 0 else result = '' .. results[1].DropRate end -- Gets the highest drop rate.
mw.ext.VariablesLua.vardefine('Chance', result)
return result
end
return p