Editing Module:Param Parse
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 3: | Line 3: | ||
--]=] |
--]=] |
||
-- <nowiki> |
-- <nowiki> |
||
require('strict') |
|||
local Infobox = require('Module:Infobox') |
local Infobox = require('Module:Infobox') |
||
local currency = require('Module:Currency').parse |
local currency = require('Module:Currency').parse |
||
Line 35: | Line 34: | ||
return nil |
return nil |
||
end |
end |
||
num = parse.number(out) |
|||
if num == nil then |
if num == nil then |
||
return nil |
return nil |
||
Line 41: | Line 40: | ||
ret = ret .. num |
ret = ret .. num |
||
count = count + 1 |
count = count + 1 |
||
end |
|||
if count == 0 then |
|||
return nil |
|||
end |
end |
||
return ret |
return ret |
||
Line 111: | Line 107: | ||
-- Premade Params -- |
-- Premade Params -- |
||
-------------------- |
-------------------- |
||
-- Standardized actions function |
|||
parse.actions = { |
|||
name = 'actions', |
|||
func = parse.has_content, |
|||
} |
|||
-- Standardized name function |
-- Standardized name function |
||
Line 125: | Line 115: | ||
category_incomplete = 'Needs name', |
category_incomplete = 'Needs name', |
||
} |
} |
||
-- Standardized examine function |
|||
local rarities = {"Common", "Uncommon", "Rare", "Epic"} |
|||
parse.examine = { |
|||
function parse.get_rarity_func(name) |
|||
name = 'examine', |
|||
for _, rarity in ipairs(rarities) do |
|||
func = parse.has_content, |
|||
if name:sub(1, #rarity) == rarity then |
|||
smw_property = 'Examine', |
|||
return rarity |
|||
category_incomplete = 'Needs examine', |
|||
end |
|||
end |
|||
return nil |
|||
end |
|||
parse.rarity_from_name = { |
|||
name = 'rarity_from_name', |
|||
func = {name = parse.get_rarity_func, params = {Infobox.raw_param('name')}} |
|||
} |
|||
-- Standardized description function |
|||
function parse.description_func(description, examine) |
|||
if not description and examine then |
|||
description = examine |
|||
end |
|||
return parse.has_content(description) |
|||
end |
|||
parse.description = { |
|||
name = 'description', |
|||
func = {name = parse.description_func, params = {Infobox.raw_param('description'), Infobox.raw_param('examine')}}, |
|||
smw_property = 'Description', |
|||
category_incomplete = 'Needs description', |
|||
} |
} |
||
Line 218: | Line 188: | ||
['mine of mantuban'] = 'Mine of Mantuban', |
['mine of mantuban'] = 'Mine of Mantuban', |
||
['crenopolis'] = 'Crenopolis', |
['crenopolis'] = 'Crenopolis', |
||
['stonemaw hill'] = 'Stonemaw Hill' |
['stonemaw hill'] = 'Stonemaw Hill' |
||
['bleakholm crags'] = 'Bleakholm Crags' |
|||
} |
} |
||
function parse.episode_func(episode) |
function parse.episode_func(episode) |
||
Line 261: | Line 230: | ||
['mine of mantuban'] = 'Yes', |
['mine of mantuban'] = 'Yes', |
||
['crenopolis'] = 'Yes', |
['crenopolis'] = 'Yes', |
||
['stonemaw hill'] = 'Yes' |
['stonemaw hill'] = 'Yes' |
||
['bleakholm crags'] = 'Yes' |
|||
} |
} |
||
function parse.premium_func(episode) |
function parse.premium_func(episode) |
||
Line 279: | Line 247: | ||
-- Release |
-- Release |
||
function unix_time(date) |
|||
-- Convert a time to unix time |
-- Convert a time to unix time |
||
if date == nil then |
if date == nil then |
||
Line 319: | Line 287: | ||
-- Value |
-- Value |
||
function parse.value_func(val) |
function parse.value_func(val) |
||
return currency(val) |
|||
local status, val = pcall(currency, val) |
|||
if status then |
|||
return val |
|||
end |
|||
end |
end |
||
parse.value = { |
parse.value = { |
||
Line 480: | Line 445: | ||
smw_func = parse.difficulty_smw, |
smw_func = parse.difficulty_smw, |
||
category_incomplete = 'Needs difficulty' |
category_incomplete = 'Needs difficulty' |
||
} |
|||
local valid_quest_types = { |
|||
['main'] = 'Main', |
|||
['side'] = 'Side' |
|||
} |
|||
function parse.quest_type_func(type) |
|||
local valid_type = valid_quest_types[string.lower(type or '')] |
|||
if valid_type then |
|||
return valid_type |
|||
else |
|||
return 'None' |
|||
end |
|||
return nil |
|||
end |
|||
function parse.quest_type_smw(type) |
|||
local valid_type = valid_quest_types[string.lower(type or '')] |
|||
if valid_type then |
|||
return valid_type |
|||
end |
|||
return nil |
|||
end |
|||
-- Quest type |
|||
parse.quest_type = { |
|||
name = 'quest_type', |
|||
func = parse.quest_type_func, |
|||
smw_property = 'quest_type', |
|||
smw_func = parse.quest_type_smw, |
|||
category_incomplete = 'Needs quest_type' |
|||
} |
} |
||
Line 532: | Line 467: | ||
local level_valid = parse.number(level) |
local level_valid = parse.number(level) |
||
local profession_valid = parse.has_content(profession) |
local profession_valid = parse.has_content(profession) |
||
local profession_valid_link = profession_valid |
|||
if not profession_valid and not level_valid then |
if not profession_valid and not level_valid then |
||
Line 549: | Line 483: | ||
end |
end |
||
return '[[File:'..profession_valid..'_icon.png|link='.. |
return '[[File:'..profession_valid..'_icon.png|link='..profession_valid..'|width=18x18]] '..level_valid |
||
end |
end |
||
Line 564: | Line 498: | ||
end |
end |
||
return level_valid |
return profession_valid..','..level_valid |
||
end |
end |
||
Line 570: | Line 504: | ||
name = 'unlock_level', |
name = 'unlock_level', |
||
func = {name = parse.unlock_level_func, params = {Infobox.raw_param('profession_a'), Infobox.raw_param('unlock_level')}}, |
func = {name = parse.unlock_level_func, params = {Infobox.raw_param('profession_a'), Infobox.raw_param('unlock_level')}}, |
||
smw_property = ' |
smw_property = 'Unlocked at', |
||
smw_func = {name = parse.unlock_level_smw, params = {Infobox.raw_param('profession_a'), Infobox.raw_param('unlock_level')}}, |
smw_func = {name = parse.unlock_level_smw, params = {Infobox.raw_param('profession_a'), Infobox.raw_param('unlock_level')}}, |
||
category_incomplete = 'Needs unlock level', |
|||
} |
} |
||
-- Knowledge |
-- Knowledge |
||
function parse.knowledge_func(points) |
|||
parse.knowledge = { |
|||
local points_valid = parse.number(points) |
|||
name = 'knowledge', |
|||
func = parse.number, |
|||
if not points_valid then |
|||
smw_property = 'Knowledge', |
|||
return nil |
|||
category_incomplete = 'Needs knowledge', |
|||
end |
|||
} |
|||
return '[[File:Knowledge_icon.png|link=Knowledge|width=18x18]] '..points_valid |
|||
parse.health = { |
|||
name = 'health', |
|||
func = parse.number, |
|||
smw_property = 'Health', |
|||
category_incomplete = 'Needs health', |
|||
} |
|||
parse.experience = { |
|||
name = 'experience', |
|||
func = parse.number, |
|||
smw_property = 'Experience', |
|||
category_incomplete = 'Needs experience', |
|||
} |
|||
local valid_attack_styles = { |
|||
['none'] = 'None', |
|||
['impact'] = 'Impact', |
|||
['cryonae'] = 'Cryonae', |
|||
['arborae'] = 'Arborae', |
|||
['tempestae'] = 'Tempestae', |
|||
['infernae'] = 'Infernae', |
|||
['necromae'] = 'Necromae', |
|||
} |
|||
local function attack_style_func(style) |
|||
local attack_style = valid_attack_styles[string.lower(style or '')] |
|||
if attack_style then |
|||
if attack_style == 'None' then |
|||
return 'None' |
|||
else |
|||
return string.format('[[File:%s damage icon.png|18px|link=%s]] [[%s]]', attack_style, attack_style, attack_style) |
|||
end |
|||
end |
|||
return nil |
|||
end |
end |
||
function parse.knowledge_smw(points) |
|||
local points_valid = parse.number(points) |
|||
local attack_style = valid_attack_styles[string.lower(style or '')] |
|||
if attack_style then |
|||
if not points_valid then |
|||
return attack_style |
|||
else |
|||
return nil |
return nil |
||
end |
end |
||
return 'knowledge,'..points_valid |
|||
end |
end |
||
parse. |
parse.knowledge = { |
||
name = ' |
name = 'knowledge', |
||
func = {name = parse.knowledge_func, params = {Infobox.raw_param('knowledge')}}, |
|||
func = attack_style_func, |
|||
smw_property = ' |
smw_property = 'Knowledge', |
||
smw_func = {name = parse.knowledge_smw, params = {Infobox.raw_param('knowledge')}}, |
|||
smw_func = attack_style_smw, |
|||
category_incomplete = 'Needs attack style', |
|||
} |
|||
parse.immune_to = { |
|||
name = 'immune_to', |
|||
func = attack_style_func, |
|||
smw_property = 'Immune to', |
|||
smw_func = attack_style_smw, |
|||
category_incomplete = 'Needs immune to', |
|||
} |
|||
parse.vulnerable_to = { |
|||
name = 'vulnerable_to', |
|||
func = attack_style_func, |
|||
smw_property = 'Vulnerable to', |
|||
smw_func = attack_style_smw, |
|||
category_incomplete = 'Needs vulnerable to', |
|||
} |
} |
||