Template:InstrumentTable.dpl

From HorizonXI Wiki

Documentation

This is a phantom template for a dpl3 call in Template:InstrumentTable which takes arguments from Template:Item Statistics.

The basic idea is that Template:InstrumentTable will display information based on parameters of Template:Item Statistics. This phantom template takes the arguments from Template:Item Statistics, manipulates them and then produces an output with | as separator because the output is intended to be used as a row in a table. Template:InstrumentTable generates this table.

See Template:ArmorTable.dpl for the analoguous table for armor.

Code

align=center | {{#ifeq: {{#len:{{{level}}}}} | 1 |  {{{level}}} | {{{level}}}}}
|align=center | {{#if: {{{jobs|}}}|{{trim|<!--
-->{{#replace:<!--
-->{{#replace:{{{jobs}}}|<br>|<nowiki/> <nowiki/>}}<!--
-->|<br/>|<nowiki/> <nowiki/>}}<!--
-->}}|All Jobs}}
|{{trim|<!--
-->{{#replace:<!--
-->{{#replace:{{{stats}}}|<br>|<nowiki/> <nowiki/>}}<!--
-->|<br/>|<nowiki/> <nowiki/>}}<!--
-->}}

Code Explanation

(There are a lot of html comment < !-- and -- > in there. Their only purpose is to structure the code and they have no effect on the output)

  • The {{{level}}} line. If returning just {{{level}}}, the sorting of the table by that column would be wrong. dpl can only sort alphabetically and not numerically, therefore, single digit numbers get mixed up with multidigit numbers since it sorts by first digit, then by second digit and so on. To circumvent this, we check if {{{level}}} is a one digit number. If it is, insert a blank space html code (& nbsp;). Since html is rendered after mediawiki templates, the & is considered the first digit and will thereby cause all single digit numbers to be sorted above all two digit numbers.
  • {{{jobs}}} and {{{stats}}} needed some extra work: jobs are usually manually put into new lines by using the html < br> or < br/>. Each of those get replaced with a whitespace (the < nowiki/> < nowiki/>) and in the end, the {{trim}} template will remove all excessive whitespace.
    • Fallback if no {{{jobs}}} is given is to display "All Jobs"

Example from InstrumentTable

Name Level Jobs Stats Horizon Changes HorizonXI specific changes
Gjallarhorn 75 BRD CHR +4 All songs +2 Singing skill +10 Wind Instrument skill +10
none