Deprecated: ScribuntoContent overrides fillParserOutput which was deprecated in MediaWiki 1.38. [Called from MediaWiki\Content\Renderer\ContentRenderer::getParserOutput in /var/www/html/includes/content/Renderer/ContentRenderer.php at line 47] in /var/www/html/includes/debug/MWDebug.php on line 381

Deprecated: Use of AbstractContent::getParserOutput was deprecated in MediaWiki 1.38. [Called from ContentHandler::callDeprecatedContentGPO in /var/www/html/includes/content/ContentHandler.php at line 1883] in /var/www/html/includes/debug/MWDebug.php on line 381

Deprecated: Use of ParserOutput::addModules with non-array argument was deprecated in MediaWiki 1.38. [Called from ScribuntoHooks::invokeHook in /var/www/html/extensions/Scribunto/includes/common/Hooks.php at line 164] in /var/www/html/includes/debug/MWDebug.php on line 381
Module:Ships - ΔV: Wiki

Module:Ships

From ΔV: Wiki
Revision as of 02:02, 8 March 2023 by Cirdec (talk | contribs) (Moved data view code to Module:Data/View)

This ship module exists to present the data from Module:Ships/Data in tables of ships, ship variants, and ship info boxes.


Infobox

Script error: The function "infobox" does not exist.

Usage

{{#invoke:Ships|infobox|K37
|image=[[File:K37-tntrl.png|200px]]
|caption=Top-down view of the K37}}

The image and its caption are optional.

The infobox floats to the side of other content. Example output is to the right. The float is cleared here to keep it from being confused with the next section of the documentation.


Ship list

Usage

{{#invoke:Ships|list}}

Example output

Name High-Stress Low-Stress Drone hardpoints Docking bays Crew Dry mass Processed cargo Engines EMP shielding New price Variant
ND-LIS Kitsune 0 1 0 0 3 4,000 kg 18,000 kg (combined) 0
Cothon-212 0 4 0 0 3 83,700 kg 27,000 kg 1 100 MJ
Cothon-213 "Triplet" 0 4 0 0 3 84,700 kg 27,000 kg 3 Triple main engines
Cothon-211 "Chonker" 0 4 0 0 3 83,700 kg 27,000 kg 1 100 MJ Larger excavator
Cothon-217 "Bender" 0 4 0 0 3 103,700 kg 108,000 kg (combined) 1 100 MJ Variable processed cargo storage
K37 TNTRL 1 2 0 0 4 33,200 kg 7,000 kg 1
KTA24 TNTRL 1 2 0 0 4 27,970 kg 3,000 kg 1 Tug with angled reverse thrust
KX37 TNTRL 1 2 0 0 4 37,970 kg 10,000 kg 1 Extended cargo hold
Runasimi KR37 TNTRL 1 2 0 0 6 47,500 kg 4,000 kg 1 200 MJ EMP shielded
K44 MHFTR Prototype 0 4 0 0 4 54,600 kg 14,000 kg 1 Abandoned prototype
Eagle Prospector 0 2 2 0 6 27,500 kg 14,000 kg 2
Bald Eagle 0 2 2 0 6 29,500 kg 14,000 kg 4 Racing
Peacock Prospector 0 2 2 0 4 27,500 kg 14,000 kg 2 Luxury interior influences crew morale towards happy
Vulture Prospector 1 2 0 0 6 37,500 kg 14,000 kg 2 Drone hardpoints replaced with a high-stress hardpoint
Pelican Prospector 0 2 2 0 6 62,000 kg 14,000 kg 2 Larger cargo bay, grinders replaced with excavator
OCP-209 2 2 0 0 8 184,500 kg 50,000 kg (combined) 1
Antonoff-Titan K225 0 2 0 6 12 220,100 kg 7,000 kg 3
Antonoff-Titan K225-BB 0 2 0 2 12 190,100 kg 7,000 kg 3 4 docking bays removed to fit a much larger cargo bay
Antonoff-Titan K225 (modified) 0 2 0 0 12 250,100 kg 7,000 kg 9 100 MJ
Elon Interstellar Model E 1 2 0 0 5 27,000 kg 11,000 kg 2

A list of columns to display can be specified as additional arguments

{{#invoke:Ships|list|Name
|Make
|Cargo bay
|Thrusters}}


View Name
is not defined
View Make
is not defined
View Cargo bay
is not defined
View Thrusters
is not defined
View Stripped hull price is not defined

Ship variants

Usage

{{#invoke:Ships|variants|K37}}

Example output

Script error: The function "variants" does not exist.


A list of columns to display can be specified as additional arguments

{{#invoke:Ships|variants|K37
|Name|Make
|Crew|Dry mass|Cargo|Processed cargo|EMP shielding
|Variant}}

Script error: The function "variants" does not exist.


local p = {}
local d = require('Module:Data')
local dv = require('Module:Data/View')

local processedCargoTypes = 6

p.view = {}

p.view['Name'] = dv.title{'name'}
p.view['Make'] = dv.text{'make'}

local nonZero = function(n)
    return n and n ~= 0
end

p.view['Processed cargo'] = {
    format = function(ship)
        local pc  = dv.formatNum(ship.processedCargo, 'kg')
        local pcc = dv.formatNum(ship.processedCargoCombined, 'kg (combined)')
        if nonZero(ship.processedCargo) and nonZero(ship.processedCargoCombined) then
            return pc .. ' + ' .. pcc
        elseif nonZero(ship.processedCargoCombined) then
            return pcc
        elseif nonZero(ship.processedCargo) then
            return pc
        end
    end,
    sortType = 'number',
    sortValue = function(ship)
         return ship.processedCargo * processedCargoTypes + ship.processedCargoCombined
    end
}

p.view['High-Stress'] = dv.number{'highStress'}
p.view['Low-Stress'] = dv.number{'lowStress'}
p.view['Drone hardpoints'] = dv.number{'droneHardpoints'}
p.view['Docking bays'] = dv.number{'dockingBays'}
p.view['Crew'] = dv.number{'crew'}
p.view['Engines'] = dv.number{'engines'}
p.view['Thrusters'] = dv.number{'thrusters'}

p.view['Dry mass'] = dv.number{'dryMass', unit='kg'}
p.view['Cargo bay'] = dv.number{'cargoBay', unit='m^3'}
p.view['EMP shielding'] = dv.number{'empShielding', unit='MJ', omitZero=true}
p.view['New price'] = dv.number{'newPrice', unit='E$'}

p.view['Variant'] = dv.text{'variant'}

for k,v in pairs(p.view) do
    v.heading = v.heading or k
end

p.defaultColumns = {
    'Name',
    'High-Stress', 'Low-Stress', 'Drone hardpoints', 'Docking bays', 'Crew',
    'Dry mass', 'Processed cargo',
    'Engines', 'EMP shielding', 'New price', 'Variant'
}

p.list = function(f)
    local columns = {}
    for i,col in ipairs(f.args) do
        table.insert(columns, col)
    end

    if table.getn(columns) == 0 then
        columns = p.defaultColumns
    end

    local data = mw.loadData('Module:Ships/Data')

    data = d.sort(data, {
        d.on(d.path{'baseModelData', 'hullValue'}, d.asc),
        d.on(d.path{'baseModelData', 'name'}, d.asc),
        d.on(d.path{'isVariant'}, d.asc),
        d.on(d.path{'hullValue'}, d.asc),
        d.on(d.path{'name'}, d.asc),
    })

    return dv.displayTable(data, p.view, columns)
end

return p