2,875
edits
No edit summary |
No edit summary |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
--This module polls various game data sources to produce a full list of skill | -- This module polls various game data sources to produce a full list of skill | ||
--level unlocks for each skill. The game has a hard-coded set of "milestones" | -- level unlocks for each skill. The game has a hard-coded set of "milestones" | ||
--for each skill that does the same thing, but it is not exhaustive and not | -- for each skill that does the same thing, but it is not exhaustive and not | ||
--permanently visible for most combat skills. | -- permanently visible for most combat skills. | ||
-- TODO: Args to filter by level range and unlock type | |||
local Shared = require('Module:Shared') | local Shared = require('Module:Shared') | ||
Line 15: | Line 17: | ||
local GameData = require('Module:GameData') | local GameData = require('Module:GameData') | ||
local SkillData = GameData.skillData | local SkillData = GameData.skillData | ||
local Num = require('Module:Number') | |||
-- This excludes certain checks pertinent to all skills, like equipment | -- This excludes certain checks pertinent to all skills, like equipment | ||
Line 26: | Line 29: | ||
['Prayer'] = {'prayers'}, | ['Prayer'] = {'prayers'}, | ||
['Slayer'] = {'areas'}, | ['Slayer'] = {'areas'}, | ||
['Farming'] = {'gatheringitems', 'farmingplots'}, | ['Farming'] = {'mastery', 'gatheringitems', 'farmingplots'}, | ||
['Township'] = {'townshipunlocks'}, | ['Township'] = {'townshipunlocks'}, | ||
['Woodcutting'] = {'gatheringitems'}, | ['Woodcutting'] = {'mastery', 'gatheringitems'}, | ||
['Fishing'] = {'gatheringitems'}, | ['Fishing'] = {'mastery', 'gatheringitems'}, | ||
['Firemaking'] = {'firemaking'}, | ['Firemaking'] = {'mastery', 'firemaking'}, | ||
['Cooking'] = {'artisanitems'}, | ['Cooking'] = {'mastery', 'artisanitems'}, | ||
['Mining'] = {'gatheringitems'}, | ['Mining'] = {'mastery', 'gatheringitems'}, | ||
['Smithing'] = {'artisanitems'}, | ['Smithing'] = {'mastery', 'artisanitems'}, | ||
['Thieving'] = {'thieving'}, | ['Thieving'] = {'mastery', 'thieving'}, | ||
['Fletching'] = {'artisanitems'}, | ['Fletching'] = {'mastery', 'artisanitems'}, | ||
['Crafting'] = {'artisanitems'}, | ['Crafting'] = {'mastery', 'artisanitems'}, | ||
['Runecrafting'] = {'artisanitems'}, | ['Runecrafting'] = {'mastery', 'artisanitems'}, | ||
['Herblore'] = {'artisanitems'}, | ['Herblore'] = {'mastery', 'artisanitems'}, | ||
['Agility'] = {'agilityslots'}, | ['Agility'] = {'mastery', 'agilityslots'}, | ||
['Summoning'] = {'artisanitems'}, | ['Summoning'] = {'mastery', 'artisanitems'}, | ||
['Astrology'] = {'constellations'}, | ['Astrology'] = {'mastery', 'constellations'}, | ||
['Alt. Magic'] = {'altmagic'}, | ['Alt. Magic'] = {'altmagic'}, | ||
} | } | ||
Line 50: | Line 53: | ||
['plot'] = 4, | ['plot'] = 4, | ||
['obstacleslot'] = 5, | ['obstacleslot'] = 5, | ||
['spell'] = | ['pillar'] = 6, | ||
['prayer'] = | ['spell'] = 7, | ||
['thieving'] = | ['prayer'] = 8, | ||
['gathering'] = | ['thieving'] = 9, | ||
['artisan'] = | ['constellation'] = 10, | ||
['item'] = | ['gathering'] = 11, | ||
['combatArea'] = | ['artisan'] = 12, | ||
['slayerArea'] = | ['item'] = 13, | ||
['dungeon'] = | ['combatArea'] = 14, | ||
['shop'] = | ['slayerArea'] = 15, | ||
['trader'] = | ['dungeon'] = 16, | ||
['obstacle'] = | ['shop'] = 17, | ||
['trader'] = 18, | |||
['obstacle'] = 19 | |||
} | } | ||
local VERBS_PER_SUBTYPE = { | local VERBS_PER_SUBTYPE = { | ||
Line 86: | Line 91: | ||
['ancient'] = 'Cast', | ['ancient'] = 'Cast', | ||
['archaic'] = 'Cast', | ['archaic'] = 'Cast', | ||
['prayer'] = ' | ['prayer'] = 'Use', | ||
['altMagic'] = 'Cast', | ['altMagic'] = 'Cast', | ||
['tree'] = 'Cut', | ['tree'] = 'Cut', | ||
Line 866: | Line 871: | ||
end | end | ||
end | end | ||
return otherReqs | return otherReqs | ||
Line 925: | Line 919: | ||
local entityType = args.type | local entityType = args.type | ||
local typeParam = args.typeParam | local typeParam = args.typeParam | ||
local subType = args.subType | local subType = args.subType | ||
local subTypeParam = args.subTypeParam | local subTypeParam = args.subTypeParam | ||
Line 954: | Line 947: | ||
end) | end) | ||
for i, item in ipairs(itemList) do | for i, item in ipairs(itemList) do | ||
local processed = {} | local processed = {} | ||
Line 981: | Line 973: | ||
end) | end) | ||
for i, area in ipairs(areaList) do | for i, area in ipairs(areaList) do | ||
local processed = {} | local processed = {} | ||
Line 1,212: | Line 1,203: | ||
-- Manually add pillars | -- Manually add pillars | ||
table.insert(entityList, {['entityName'] = 'Passive Pillars', ['entityType'] = ' | table.insert(entityList, {['entityName'] = 'Passive Pillars', ['entityType'] = 'pillar', ['subType'] = 'pillar', ['skillLevel'] = 99, ['otherReqs'] = {}}) | ||
table.insert(entityList, {['entityName'] = 'Elite Passive Pillars', ['entityType'] = ' | table.insert(entityList, {['entityName'] = 'Elite Passive Pillars', ['entityType'] = 'pillar', ['subType'] = 'pillar', ['skillLevel'] = 120, ['otherReqs'] = {}}) | ||
return entityList | return entityList | ||
Line 1,248: | Line 1,239: | ||
processed['entityName'] = gatherable.name | processed['entityName'] = gatherable.name | ||
elseif skillName == 'Mining' then | elseif skillName == 'Mining' then | ||
processed['subType'] = node. | processed['subType'] = node.category | ||
elseif skillName == 'Farming' then | elseif skillName == 'Farming' then | ||
processed['entityName'] = gatherable.name | processed['entityName'] = gatherable.name | ||
Line 1,285: | Line 1,276: | ||
table.insert(entityList, processed) | table.insert(entityList, processed) | ||
end | end | ||
return entityList | |||
end | |||
function p._addSkillMastery(entityList, skillName) | |||
-- Add the "Skill Mastery" perk when relevant | |||
table.insert(entityList, {['entityName'] = 'Skill Mastery', ['entityType'] = 'special', ['subType'] = 'skillmastery', ['skillLevel'] = 99, ['otherReqs'] = {}}) | |||
return entityList | return entityList | ||
Line 1,302: | Line 1,300: | ||
['farmingplots'] = p._addFarmingPlots, | ['farmingplots'] = p._addFarmingPlots, | ||
['townshipunlocks'] = p._addTownshipUnlocks, | ['townshipunlocks'] = p._addTownshipUnlocks, | ||
['agilityslots'] = p._addAgilityObstacleSlotsAndPillars | ['agilityslots'] = p._addAgilityObstacleSlotsAndPillars, | ||
['mastery'] = p._addSkillMastery | |||
} | } | ||
Line 1,316: | Line 1,315: | ||
else | else | ||
for i, req in ipairs(entity.otherReqs) do | for i, req in ipairs(entity.otherReqs) do | ||
-- TODO: "Completion" requirement | -- TODO: "Completion" requirement? Might not be needed | ||
if req.type == 'SkillLevel' then | if req.type == 'SkillLevel' then | ||
local skillInfo = Icons.Icon({Constants.getSkillName(req.skillID), type='skill', notext='true'}) .. ' ' .. req.level | local skillInfo = Icons.Icon({Constants.getSkillName(req.skillID), type='skill', notext='true'}) .. ' ' .. req.level | ||
Line 1,340: | Line 1,338: | ||
table.insert(extraReqs, Shop._getPurchaseIcon({req.purchase})) | table.insert(extraReqs, Shop._getPurchaseIcon({req.purchase})) | ||
elseif req.type == 'totalMastery' then | elseif req.type == 'totalMastery' then | ||
table.insert(extraReqs, | table.insert(extraReqs, Num.formatnum(req.mastery) .. ' ' .. Icons.Icon({req.skill, type='skill', notext=true}) .. ' ' .. Icons.Icon({'Mastery'})) | ||
elseif req.type == 'TownshipBuilding' then | |||
local building = Township._getBuildingByID(req.buildingID) | |||
table.insert(extraReqs, Icons.Icon({building.name, type='building', qty=req.count})) | |||
end | end | ||
end | end | ||
Line 1,357: | Line 1,358: | ||
if entity.overrideText then | if entity.overrideText then | ||
return entity.overrideText | return entity.overrideText | ||
end | |||
if entity.subType == 'skillmastery' then | |||
return 'Gain ' .. Icons.Icon({skillName, type='skill', notext='true'}) .. ' [[Mastery#The_Mastery_Pool|Skill Mastery]]' | |||
end | end | ||
if skillName == 'Farming' and entity.seed then | if skillName == 'Farming' and entity.seed then | ||
Line 1,388: | Line 1,392: | ||
if entity.subType == 'fish' then | if entity.subType == 'fish' then | ||
iconType = 'item' | iconType = 'item' | ||
elseif | elseif Shared.contains({ | ||
'melvorD:Ore', | |||
'melvorD:Essence', | |||
'melvorD:Gem', | |||
'melvorItA:AbyssalOre', | |||
'melvorItA:AbyssalGem', | |||
'melvorItA:Outcrop', | |||
'melvorItA:AbyssalEssence' | |||
}, entity.subType) then | |||
iconType = 'rock' | iconType = 'rock' | ||
else | else | ||
Line 1,399: | Line 1,411: | ||
end | end | ||
if entity.entityType == 'shop' then | if entity.entityType == 'shop' then | ||
iconType = string.lower(entity.subType) | iconType = string.lower(entity.subType) | ||
end | end | ||
Line 1,416: | Line 1,420: | ||
end | end | ||
if entity.entityType == 'obstacle' then | if entity.entityType == 'obstacle' then | ||
iconType = 'agility' | |||
end | |||
if entity.entityType == 'obstacleslot' then | |||
iconType = 'agility' | iconType = 'agility' | ||
iconLink = 'Obstacles' | iconLink = 'Obstacles' | ||
end | end | ||
if entity.entityType == ' | if entity.entityType == 'pillar' then | ||
iconType = 'agility' | iconType = 'agility' | ||
iconLink = 'Passive_Pillars' | iconLink = 'Passive_Pillars' | ||
Line 1,451: | Line 1,458: | ||
end | end | ||
function p._getSkillUnlockTable(skillName) | function p._getSkillUnlockTable(skillName, args) | ||
local itemsOnly = args.itemsOnly ~= nil and args.itemsOnly or false | |||
-- TODO: Pass these min/max level params along to filter by them | |||
local minLevel = args.minLevel ~= nil and args.minLevel or 0 | |||
local maxLevel = args.maxLevel ~= nil and args.maxLevel or 999 | |||
-- What do we need to check for this skill? Avoid checking everything for | -- What do we need to check for this skill? Avoid checking everything for | ||
-- every skill to save time, except for a few broad things | -- every skill to save time, except for a few broad things | ||
local entityList = {} | local entityList = {} | ||
entityList = p._addItemsWithSkillRequirement(entityList, skillName) | entityList = p._addItemsWithSkillRequirement(entityList, skillName) | ||
-- Now loop through the stuff relevant to this skill | if not itemsOnly then | ||
entityList = p._addShopPurchasesWithSkillRequirements(entityList, skillName) | |||
entityList = p._addTraderItemsWithSkillRequirements(entityList, skillName) | |||
entityList = p._addAgilityObstaclesWithSkillRequirements(entityList, skillName) | |||
-- Now loop through the stuff relevant to this skill | |||
for i, dataSource in ipairs(SKILL_CHECK_MAP[skillName]) do | |||
entityList = SOURCE_FUNCS[dataSource](entityList, skillName) | |||
end | |||
end | end | ||
Line 1,550: | Line 1,565: | ||
function p.getSkillUnlockTable(frame) | function p.getSkillUnlockTable(frame) | ||
local | local args = frame.args ~= nil and frame.args or frame | ||
return p._getSkillUnlockTable(skillName | local skillName = args[1] | ||
return p._getSkillUnlockTable(skillName, args) | |||
end | end | ||
return p | return p |
edits