Module:SpeciesLink: Difference between revisions

From Against the Storm Official Wiki
No edit summary
m (Clear Frog icon filename since none is uploaded yet)
 
(5 intermediate revisions by 3 users not shown)
Line 19: Line 19:
-- the data is being updated), then a question-mark icon will take the place of
-- the data is being updated), then a question-mark icon will take the place of
-- the Species's icon. This is so that people using this template will not  
-- the Species's icon. This is so that people using this template will not  
-- mistake a missing icon for an issue with this template and can efficiently
-- mistake a missing icon for an issue with this template and can efficienty
-- troubleshoot.
-- troubleshoot.
--
--
Line 33: Line 33:
     ["Foxes"] = {
     ["Foxes"] = {
         ["pagename"] = "Foxes",
         ["pagename"] = "Foxes",
         ["icon"] = "Fox_circle.png"
         ["icon"] = "fox_circle.png"
    },
    ["Frogs"] = {
        ["pagename"] = "Frogs",
        ["icon"] = ""
     },
     },
     ["Harpies"] = {
     ["Harpies"] = {
         ["pagename"] = "Harpies",
         ["pagename"] = "Harpies",
         ["icon"] = "Harpy_circle.png"
         ["icon"] = "harpy_circle.png"
     },
     },
     ["Humans"] = {
     ["Humans"] = {
         ["pagename"] = "Humans",
         ["pagename"] = "Humans",
         ["icon"] = "Human_circle.png"
         ["icon"] = "human_circle.png"
     },
     },
     ["Beavers"] = {
     ["Beavers"] = {
         ["pagename"] = "Beavers",
         ["pagename"] = "Beavers",
         ["icon"] = "Beaver_circle.png"
         ["icon"] = "beaver_circle.png"
     },
     },
     ["Lizards"] = {
     ["Lizards"] = {
         ["pagename"] = "Lizards",
         ["pagename"] = "Lizards",
         ["icon"] = "Lizard_circle.png"
         ["icon"] = "lizard_circle.png"
     },
     }
}
}


Line 70: Line 74:
-- filename to use if there is no known icon for a known building
-- filename to use if there is no known icon for a known building
local REPLACEMENT_FILENAME = "Question_mark.png"
local REPLACEMENT_FILENAME = "Question_mark.png"


--
--
Line 83: Line 89:
-- template's behavior may be different than expected.
-- template's behavior may be different than expected.
-- @param frame  a table describing the MediaWiki frame; frame['args'] is a  
-- @param frame  a table describing the MediaWiki frame; frame['args'] is a  
-- table containing the template arguments; frame['args']['Species'] is the first
-- table containg the template arguments; frame['args']['Species'] is the first
-- argument, assigned to the key 'Species'; frame['args']['iconsize'] is the  
-- argument, assigned to the key 'Species'; frame['args']['iconsize'] is the  
-- second argument, assigned to the key 'iconsize'
-- second argument, assigned to the key 'iconsize'
-- @return a string containing the wiki markup for an icon and an internal wiki  
-- @return a string containing the wiki markup for an icon and an internal wiki  
-- page link (or an error if a problem occurred)
-- page link (or an error if a problem occured)
function SpeciesLink.renderLink(frame)
function SpeciesLink.renderLink(frame)
Line 95: Line 101:
-- validate that there's a Species name to use
-- validate that there's a Species name to use
if not argSpeciesName or argSpeciesName == "" then
if not argSpeciesName or "" == argSpeciesName then
return "SpeciesLink error: no Species given"
return "SpeciesLink error: no Species given"
end
-- check if the species exists in SpeciesData
local speciesData = SpeciesData[argSpeciesName]
if not speciesData then
return "SpeciesLink error: " .. argSpeciesName .. " not found"
end
end
-- get the page name to make sure there was one
-- get the page name to make sure there was one
local speciesData = SpeciesData[argSpeciesName]
local Species = speciesData.pagename
if not speciesData or not speciesData.pagename or speciesData.pagename == "" then
if not Species or "" == Species then
return "SpeciesLink error: " .. argSpeciesName .." not found"
return "SpeciesLink error: " .. argSpeciesName .. " not found"
end
end
-- the wiki markup for the internal link to the Species's wiki page
-- the wiki markup for the internal link to the Species's wiki page
local linkPart = "[[" .. speciesData.pagename .. "]]"
local linkPart = "[[" .. Species .. "]]"
-- store the requested size for use in a moment
-- store the requested size for use in a moment
Line 127: Line 139:
-- a question mark icon instead.
-- a question mark icon instead.
local icon = speciesData.icon
local icon = speciesData.icon
if not icon or icon == "" then
if not icon or "" == icon then
icon = REPLACEMENT_FILENAME
icon = REPLACEMENT_FILENAME
end
end
-- combine the size and filename to form the iconPart
-- combine the size and filename to form the iconPart
local iconPart = "[[File:" .. icon .. "|" .. size .. "|link=" .. speciesData.pagename .. "|alt=" .. argSpeciesName .. "|" .. speciesData.pagename .. "]]"
local iconPart = "[[File:" .. icon .. "|" .. size .. "|link=" .. Species .. "|alt=" .. Species .. "|" .. Species .. "]]"
-- combine the file part with the link part
-- combine the file part with the link part

Latest revision as of 22:10, 29 September 2024

Documentation for this module may be created at Module:SpeciesLink/doc

-- This module renders the {{Species _link}} template.
-- https://hoodedhorse.com/wiki/Against_the_Storm/Template:Species_link
--
-- This template #invokes SpeciesLink.renderLink(frame), below.
--
-- The template requires an argument, the name of the Species to which to link.
-- Optionally, the template accepts a second argument to change the size of the
-- icon that accompanies the text hyperlink. The Species is passed to 
-- Module:SpeciesData, which is used to identify the wiki page to link to. It 
-- also handles some basic normalization to tolerate small mistakes in spelling,
-- spacing, or punctuation.
--
-- Using the data returned, this module creates an icon and the name of the 
-- Species, and wraps both in a link to the Species's wiki page. If no icon
-- size is specified, the icon will default to a size appropriate for display
-- in-line with other text.
--
-- IF there is a known Species that does not have an icon (might be the case if
-- the data is being updated), then a question-mark icon will take the place of
-- the Species's icon. This is so that people using this template will not 
-- mistake a missing icon for an issue with this template and can efficienty 
-- troubleshoot.
--
-- The icons are sized consistently by using existing wiki templates, {{ImgS}}, 
-- {{ImgM}}, etc. The sizes of icons are not stored or known by this module.
-- @module SpeciesLink
local SpeciesLink = {}

--
-- Dependencies
--
local SpeciesData = {
    ["Foxes"] = {
        ["pagename"] = "Foxes",
        ["icon"] = "fox_circle.png"
    },
    ["Frogs"] = {
        ["pagename"] = "Frogs",
        ["icon"] = ""
    },
    ["Harpies"] = {
        ["pagename"] = "Harpies",
        ["icon"] = "harpy_circle.png"
    },
    ["Humans"] = {
        ["pagename"] = "Humans",
        ["icon"] = "human_circle.png"
    },
    ["Beavers"] = {
        ["pagename"] = "Beavers",
        ["icon"] = "beaver_circle.png"
    },
    ["Lizards"] = {
        ["pagename"] = "Lizards",
        ["icon"] = "lizard_circle.png"
    }
}

--
-- Constants
--
-- names of the templates used to size the icons consistently
local TEMPLATE_IMGSMALL = "ImgS"
local TEMPLATE_IMGMED = "ImgM"
local TEMPLATE_IMGLARGE = "ImgL"
local TEMPLATE_IMGHUGE = "ImgH"

-- string options for icon size arguments
local S_SML = "small"
local S_MED = "med"
local S_LRG = "large"
local S_HUG = "huge"

-- filename to use if there is no known icon for a known building
local REPLACEMENT_FILENAME = "Question_mark.png"



--
-- Main rendering function
--

-------------------------------------------------------------------------------
-- Renders an icon the name of a Species linked to a wiki page corresponding
-- to the provided Species.
-- 
-- Uses MediaWiki markup to display the name of a wiki page and an icon that has 
-- been uploaded to the wiki. Both must be known by Module:SpeciesData, or the 
-- template's behavior may be different than expected.
-- @param frame  a table describing the MediaWiki frame; frame['args'] is a 
-- table containg the template arguments; frame['args']['Species'] is the first
-- argument, assigned to the key 'Species'; frame['args']['iconsize'] is the 
-- second argument, assigned to the key 'iconsize'
-- @return a string containing the wiki markup for an icon and an internal wiki 
-- page link (or an error if a problem occured)
function SpeciesLink.renderLink(frame)
	
	-- extract the arguments we care about from the frame
	local argSpeciesName = frame.args.Species
	local argIconsize = frame.args.iconsize
	
	-- validate that there's a Species name to use
	if not argSpeciesName or "" == argSpeciesName then
		return "SpeciesLink error: no Species given"
	end
	
	-- check if the species exists in SpeciesData
	local speciesData = SpeciesData[argSpeciesName]
	if not speciesData then
		return "SpeciesLink error: " .. argSpeciesName .. " not found"
	end
	
	-- get the page name to make sure there was one
	local Species = speciesData.pagename
	if not Species or "" == Species then
		return "SpeciesLink error: " .. argSpeciesName .. " not found"
	end
	
	-- the wiki markup for the internal link to the Species's wiki page
	local linkPart = "[[" .. Species .. "]]"
	
	-- store the requested size for use in a moment
	local size = ""
	
	-- Check the requested size against the allowed options. Expand the 
	-- corresponding template.
	if S_MED == argIconsize then
		size = frame:expandTemplate{title=TEMPLATE_IMGMED}
	elseif S_LRG == argIconsize then
		size = frame:expandTemplate{title=TEMPLATE_IMGLARGE}
	elseif S_HUG == argIconsize then
		size = frame:expandTemplate{title=TEMPLATE_IMGHUGE}
	else
		-- default to small size if the argument wasn't valid
		size = frame:expandTemplate{title=TEMPLATE_IMGSMALL}
	end
	
	-- If the icon filename doesn't exist, we can still continue by substituting 
	-- a question mark icon instead.
	local icon = speciesData.icon
	if not icon or "" == icon then
		icon = REPLACEMENT_FILENAME
	end
	
	-- combine the size and filename to form the iconPart
	local iconPart = "[[File:" .. icon .. "|" .. size .. "|link=" .. Species .. "|alt=" .. Species .. "|" .. Species .. "]]"
	
	-- combine the file part with the link part
	return iconPart .. " " .. linkPart
end

-- return when required into another module
return SpeciesLink