{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 8 — p.infobox |
Information
This uses the InfoboxNeue module. for more information, visit Star Citizen.
This defines the Signalbox Infobox used by pages.
Example Implementation
{{SignalBox
|image=DC Box.png
|stations_controlled=[[Dovedale Central]], [[Pallion Harbour]], [[Gleethrop End]]
|closest_station=[[Dovedale Central]]
|abbreviation=DC
|signal_type=[[Signals|Semaphore Signals]]
|home_signals_controlled='''29'''
|distant_signals_controlled='''5'''
|points_controlled='''9'''
|shunt_signals_controlled='''7'''
|xp=2000 XP
|status=in_operation
|status_description=Since the release of the game.
}}
Documentation
Creates an infobox for a signal box.
Parameter | Description | Type | Status | |
---|---|---|---|---|
Crossings Controlled | crossings_controlled | The crossings which a signal box controls. (en) The value of this parameter should be one or more hyperlinks. If multiple are provided, separate them with commas.
| Line | optional |
Distant Signals Controlled | distant_signals_controlled | The amount of distant signals which a signal box controls. (en)
| Number | optional |
Status Description | status_description | Information about the status. Example: The version in which the feature was added into or removed from the game. (en)
| Content | optional |
XP | xp | The XP required to control a box or a crossing. Note: The value should be separated from the unit by a space character. (en)
| Line | optional |
Home Signals Controlled | home_signals_controlled | The amount of semaphore stop signals which a signal box controls. (en)
| Number | optional |
Stations Controlled | stations_controlled | The stations which a signal box controls. (en) The value of this parameter should be one or more hyperlinks. If multiple are provided, separate them with commas.
| Line | optional |
Image | image | The thumbnail or gallery of the article. To just set the thumbnail, set the value to the name of the image (with its extension). To create a gallery, use the following format: ''Title1=Image1.png;Title2=Image2.jpg''. The file prefixes are optional for both formats. (en)
| Content | required |
Title | title | The title of the article's subject. The page name is the default value. For SMW subobjects, setting the title is important for the correct name to be displayed in queries. (en)
| Content | optional |
Points Controlled | points_controlled | The amount of points which a signal box controls. (en)
| Number | optional |
Status | status | The current status of the article's subject. (en)
| Content | required |
Shunt Signals Controlled | shunt_signals_controlled | The amount of shunt signals which a signal box controls. (en)
| Number | optional |
Closest Station | closest_station | The closest station to the article's subject. (en) The value of this parameter should be one or more hyperlinks. If multiple are provided, separate them with commas.
| Line | optional |
Signal Type | signal_type | The signal type used in the controlled zone of a signal box. (en) The value of this parameter should be one or more hyperlinks. If multiple are provided, separate them with commas.
| Line | optional |
local getArgs = require( 'Module:Arguments' ).getArgs
local infobox = require( 'Module:InfoboxNeue' ):new()
local getStatus = require("Module:Status").get
local showProperty = require("Module:SMWUtil").get
local p = {}
function p.infobox(frame)
local args = getArgs(frame)
--[[Deprecated arguments:
image1: replaced with image (Does not support galleries)
title1: replaced with title
operations_information: Unused
others: Unused
xp_requirment: replaced with xp (bad spelling anyway)
--]]
--Main arguments
local imgPath = args.image
local title = args.title or mw.title.getCurrentTitle().text
local captionTitle = args.caption_title
local caption = args.caption
local status = args.status
local statusDescription = args.status_description
--Info
local stationCode = args.abbreviation or args.station_code
local signalType = args.signal_type
local nearestStation = args.closest_station or args.nearest_station
local xp = args.xp
--Operations Info
local stationsControlled = args.stations_controlled
local crossingsControlled = args.crossings_controlled
--Statistics
local home = args.home_signals_controlled
local distant = args.distant_signals_controlled
local points = args.points_controlled
local shunts = args.shunt_signals_controlled
infobox:renderImageOrGallery(imgPath)
if status then
local text, class = getStatus(status)
infobox:renderIndicator( {
data = text,
desc = statusDescription,
class = class
} )
else
-- render the caption indicator only if there was no status provided
infobox:renderIndicator( {
data = captionTitle,
desc = caption,
} )
end
infobox:renderHeader( {
title = title,
subtitle = 'Signal Box'
} )
local otherInfo = {
infobox:renderItem( {
label = "Station Code",
data = stationCode
} ),
infobox:renderItem( {
label = 'Signal Type',
data = signalType
} ),
infobox:renderItem( {
label = 'Nearest station',
data = nearestStation
} ),
infobox:renderItem( {
label = 'XP Requirement',
data = showProperty(frame, mw.title.getCurrentTitle().text, "XP")
} ),
}
infobox:renderSection( {
content = table.concat(otherInfo),
col = 3
} )
local controlled = {
infobox:renderItem( {
label = 'Stations controlled',
data = stationsControlled
} ),
infobox:renderItem( {
label = 'Crossings controlled',
data = crossingsControlled
} ),
}
infobox:renderSection( {
title="Operations Information",
content = table.concat(controlled),
col = 2
} )
local stats = {
infobox:renderItem( {
label = 'Home signals controlled',
data = home,
row = true,
spacebetween = true
} ),
infobox:renderItem( {
label = 'Distant signals controlled',
data = distant,
row = true,
spacebetween = true
} ),
infobox:renderItem( {
label = 'Points controlled',
data = points,
row = true,
spacebetween = true
} ),
infobox:renderItem( {
label = 'Shunt signals controlled',
data = shunts,
row = true,
spacebetween = true
} ),
}
infobox:renderSection( {
title = "Statistics",
content = table.concat(stats),
} )
return infobox:renderInfobox(args)
end
return p