Toggle menu
209
928
189
6.3K
Dovedale Railway Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Module documentation[view][edit][history][purge]
This documentation is transcluded from Module:SignalBox/doc. Changes can be proposed in the talk page.
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.

Template parameters

This template has custom formatting.

ParameterDescriptionTypeStatus
Crossings Controlledcrossings_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.

Example
[[Narmouth Crossing]]
Lineoptional
Distant Signals Controlleddistant_signals_controlled

The amount of distant signals which a signal box controls. (en)

Example
2
Numberoptional
Status Descriptionstatus_description

Information about the status. Example: The version in which the feature was added into or removed from the game. (en)

Example
Since [[Update Logs#Version 1|Version 1]]
Contentoptional
XPxp

The XP required to control a box or a crossing. Note: The value should be separated from the unit by a space character. (en)

Example
1500 XP
Lineoptional
Home Signals Controlledhome_signals_controlled

The amount of semaphore stop signals which a signal box controls. (en)

Example
5
Numberoptional
Stations Controlledstations_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.

Example
[[Dovedale Central]], [[Pallion Harbour]]
Lineoptional
Imageimage

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)

Example
Exterior=Placeholder.png;Interior=Placeholder.png
Contentrequired
Titletitle

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)

Example
Dovedale Central
Contentoptional
Points Controlledpoints_controlled

The amount of points which a signal box controls. (en)

Example
4
Numberoptional
Statusstatus

The current status of the article's subject. (en)

Suggested values
removed unknown in_development under_testing not_in_service out_of_service steam_only diesel_only available in_operation in_service public admin_only closed in_use
Example
in_operation
Contentrequired
Shunt Signals Controlledshunt_signals_controlled

The amount of shunt signals which a signal box controls. (en)

Example
6
Numberoptional
Closest Stationclosest_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.

Example
[[Satus Services]]
Lineoptional
Signal Typesignal_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.

Suggested values
Semaphore Signals
Example
[[Semaphore Signals]]
Lineoptional



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
🍪 Yum Yum Yum! Cookies help us better deliver our services. By using our site, you agree to our use of cookies.