Module:Infobox Animal: Difference between revisions
From Eco - English Wiki
[unchecked revision] | [unchecked revision] |
m 1 revision imported |
No edit summary |
||
Line 51: | Line 51: | ||
-- Animals Icon Image | -- Animals Icon Image | ||
local image = 'NoImage.png|link=https:// | local image = 'NoImage.png|link=https://www.politzentrale.de/index.php?title=Special:Upload&wpDestFile=' .. animalimagename .. '_Animal.png|[[Category:Pages_with_missing_animal]]' | ||
if mw.title.makeTitle('File', animalimagename .. '_Animal.png').exists then | if mw.title.makeTitle('File', animalimagename .. '_Animal.png').exists then | ||
image = animalimagename .. '_Animal.png' | image = animalimagename .. '_Animal.png' |
Revision as of 01:06, 9 December 2019
Documentation
This module provides the back end functionality of the Template:Infobox_Animal.
If the template is passed an Infobox will be made using details from the following Modules:
local p = {}
-- Grabs args from the parent frame
-- Trims and parses the args into a table, then returns the table
function norm()
local origArgs = mw.getCurrentFrame():getParent().args
local args = {}
for k, v in pairs( origArgs ) do
v = mw.text.trim( tostring( v ) )
if v ~= '' then
args[k] = v
end
end
return args
end
-- Build an Animal Infobox
function animalBox( args, animalData )
-- check that all necessary arguments are passed correctly
if args.name == nil or args.name == '' then
return '\'name\' must be specified.'
end
local animal = args.name
local animalimagename = string.gsub(animal, ' ', '')
local animalTable = animalData.animals[animal]
if animalTable == nil then
return animal .. ' could not be found in Module:AnimalData.'
end
-- string used to build the infobox
local infobox = '{| class=\"infobox\"\n'
-- name of the animal
infobox = infobox .. '|- style=\"background-color: darkred; text-align: center;\"\n| colspan=\"2\" | \'\'\'<big>' .. animal .. '</big>\'\'\'\n'
-- Water, Flying or Land Animal
infobox = infobox .. '|- style=\"text-align: center; background-color: #517ab2;\"\n| colspan=\"2\"'
if animalTable.isSwimming == 'Swimming' then
infobox = infobox .. '| \'\'\'Water Animal\'\'\'\n'
elseif animalTable.isFlying == 'Flying' then
infobox = infobox .. '| \'\'\'Flying Animal\'\'\'\n'
else
infobox = infobox .. '| \'\'\'Land Animal\'\'\'\n'
end
-- Animals Icon Image
local image = 'NoImage.png|link=https://www.politzentrale.de/index.php?title=Special:Upload&wpDestFile=' .. animalimagename .. '_Animal.png|[[Category:Pages_with_missing_animal]]'
if mw.title.makeTitle('File', animalimagename .. '_Animal.png').exists then
image = animalimagename .. '_Animal.png'
elseif mw.title.makeTitle('File', animalimagename .. '_Animal.jpg').exists then
image = animalimagename .. '_Animal.jpg'
end
infobox = infobox .. '|-\n| colspan=\"2\" style=\"padding: 10px;\" | [[File:' .. image .. '|center|border|240px]]\n'
-- 'General' section header
infobox = infobox .. '|- style=\"background-color: #4B9130; text-align: center;\"\n| colspan=\"2\" | \'\'\'General\'\'\'\n'
-- Health
if animalTable.health ~= nil then
infobox = infobox .. '|-\n| Health:\n| style=\"text-align: right;\" | ' .. animalTable.health .. '\n'
end
-- Idle Speed
if animalTable.wanderingSpeed ~= nil then
infobox = infobox .. '|-\n| Idle Speed:\n| style=\"text-align: right;\" | ' .. animalTable.wanderingSpeed .. ' mps\n'
end
-- Eats
if animalTable.foodSources ~= nil then
infobox = infobox .. '|-\n| Eats:\n| style=\"text-align: right;\" | ' .. animalTable.foodSources .. '\n'
end
-- Carbon Released
if animalTable.carbonRelease ~= nil then
infobox = infobox .. '|-\n| Carbon Released:\n| style=\"text-align: right;\" | ' .. animalTable.carbonRelease .. ' ppm \n'
end
-- 'Hunting Infomation' section header
infobox = infobox .. '|- style=\"background-color: #4B9130; text-align: center;\"\n| colspan=\"2\" | \'\'\'Hunting\'\'\'\n'
-- Flees
if animalTable.flees ~= nil then
infobox = infobox .. '|-\n| Flees:\n| style=\"text-align: right;\" | Yes \n'
else
infobox = infobox .. '|-\n| Flees:\n| style=\"text-align: right;\" | No \n'
end
-- Animals Fear
if animalTable.fearFactor ~= nil then
infobox = infobox .. '|-\n| [[Fear Factor]]:\n| style=\"text-align: right;\" | ' .. animalTable.fearFactor .. '\n'
end
-- Running Speed
if animalTable.speed ~= nil then
infobox = infobox .. '|-\n| Flee Speed:\n| style=\"text-align: right;\" | ' .. animalTable.speed .. ' mps \n'
end
-- Harvest
if animalTable.resourceItem ~= nil then
infobox = infobox .. '|-\n| Harvest Item:\n| style=\"text-align: right;\" | ' .. animalTable.resourceItem .. '\n'
end
infobox = infobox .. '|}'
return infobox
end
-- Main entry point for the Module
function p.AnimalMain()
-- get args from the Template
local args = norm()
-- get animal data
local animalData = require( "Module:AnimalData" )
return animalBox( args, animalData )
end
return p