- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
Difference between revisions of "Module:Ship"
Jump to navigation
Jump to search
com>Ckwng (Add some sort of memoization) |
com>Ckwng (Default model) |
||
Line 9: | Line 9: | ||
function Ship:create(name, model) | function Ship:create(name, model) | ||
+ | if model == nil then | ||
+ | model = "" | ||
+ | end | ||
if ships[name] and ships[name][model] then | if ships[name] and ships[name][model] then | ||
return ships[name][model] | return ships[name][model] |
Revision as of 05:08, 15 December 2014
Documentation for this module may be created at Module:Ship/doc
local Ship = {}
local ships = {}
local ShipData = require('Module:ShipData')
function Ship:get(stat, name, model)
return self:create(name, model)[stat]()
end
function Ship:create(name, model)
if model == nil then
model = ""
end
if ships[name] and ships[name][model] then
return ships[name][model]
else
local ship_table = require(mw.ustring.format('Module:%s', name))
local ship = ShipData:create(ship_table[model])
if not ships[name] then
ships[name] = {}
end
ships[name][model] = ship
return ship
end
end
Ship.__call = Ship.create
setmetatable(Ship, Ship)
return Ship