🌟現在、鉄壁 鉄壁ヘッドショットには対応済みです。
鉄壁HSは通常HSと同じダメージになります。LMG及びDMR、チャージライフル、ハンマーポイント弾を除き、すべてのダメージ値が一致していることを確認しています。

「モジュール:Utility/Formatter」の版間の差分

提供:Apex Data
ナビゲーションに移動 検索に移動
(ホップアップのリンクに対応)
(formatに境界線の指定を追加)
22行目: 22行目:
end
end


local function _withFrame_format(that, default, common, rare, epic)
local function _withFrame_format(that, default, common, rare, epic, separator)
return default .. ' → '
return default .. separator
.. that:common(common) .. ' → '
.. that:common(common) .. separator
.. that:rare(rare) .. ' → '
.. that:rare(rare) .. separator
.. that:epic(epic)
.. that:epic(epic)
end
end


function withFrame.format(self, default, common, rare, epic, footer)
function withFrame.format(self, default, common, rare, epic, footer, separator)
separator = separator or ' → '
if footer ~= nil then
if footer ~= nil then
return _withFrame_format(self, default, common, rare, epic) .. footer
return _withFrame_format(self, default, common, rare, epic, separator) .. footer
else
else
return _withFrame_format(self, default, common, rare, epic)
return _withFrame_format(self, default, common, rare, epic, separator)
end
end
end
end


function withFrame.format_to4(self, default, common, rare, epic, legendary, footer)
function withFrame.format_to4(self, default, common, rare, epic, legendary, footer, separator)
footer = footer or ''
footer = footer or ''
return _withFrame_format(self, default, common, rare, epic) .. ' → '
separator = separator or ' → '
return _withFrame_format(self, default, common, rare, epic, separator) .. separator
.. self:legendary(legendary) .. footer
.. self:legendary(legendary) .. footer
end
end


function withFrame.format_and5(self, default, common, rare, epic, heirloom, footer)
function withFrame.format_and5(self, default, common, rare, epic, heirloom, footer, separator)
footer = footer or ''
footer = footer or ''
return _withFrame_format(self, default, common, rare, epic) .. ' → '
separator = separator or ' → '
return _withFrame_format(self, default, common, rare, epic, separator) .. separator
.. self:heirloom(heirloom) .. footer
.. self:heirloom(heirloom) .. footer
end
end
110行目: 113行目:
end
end


function withoutFrame.format(self, default, common, rare, epic, footer)
function withoutFrame.format(self, default, common, rare, epic, footer, separator)
footer = footer or ''
footer = footer or ''
return default .. ' → '
separator = separator or ' → '
.. self:common(common) .. ' → '
return default .. separator
.. self:rare(rare) .. ' → '
.. self:common(common) .. separator
.. self:rare(rare) .. separator
.. self:epic(epic) .. footer
.. self:epic(epic) .. footer
end
end


function withoutFrame.format_to4(self, default, common, rare, epic, legendary, footer)
function withoutFrame.format_to4(self, default, common, rare, epic, legendary, footer, separator)
footer = footer or ''
footer = footer or ''
return self:format(default, common, rare, epic) .. ' → '
separator = separator or ' → '
return self:format(default, common, rare, epic) .. separator
.. self:legendary(legendary) .. footer
.. self:legendary(legendary) .. footer
end
end


function withoutFrame.format_and5(self, default, common, rare, epic, heirloom, footer)
function withoutFrame.format_and5(self, default, common, rare, epic, heirloom, footer, separator)
footer = footer or ''
footer = footer or ''
return self:format(default, common, rare, epic) .. ' → '
separator = separator or ' → '
return self:format(default, common, rare, epic) .. separator
.. self:heirloom(heirloom) .. footer
.. self:heirloom(heirloom) .. footer
end
end

2021年2月2日 (火) 14:59時点における版

このモジュールについての説明文ページを モジュール:Utility/Formatter/doc に作成できます

-- frame変数がある場合のFormatter
local withFrame = {}

function withFrame.common(self, text)
	return self.frame:expandTemplate { title = 'Common', args = { text }}
end

function withFrame.rare(self, text)
	return self.frame:expandTemplate { title = 'Rare', args = { text }}
end

function withFrame.epic(self, text)
	return self.frame:expandTemplate { title = 'Epic', args = { text }}
end

function withFrame.legendary(self, text)
	return self.frame:expandTemplate { title = 'Legendary', args = { text }}
end

function withFrame.heirloom(self, text)
	return self.frame:expandTemplate { title = 'Heirloom', args = { text }}
end

local function _withFrame_format(that, default, common, rare, epic, separator)
	return default .. separator
		.. that:common(common) .. separator
		.. that:rare(rare) .. separator
		.. that:epic(epic)
end

function withFrame.format(self, default, common, rare, epic, footer, separator)
	separator = separator or ' → '
	if footer ~= nil then
		return _withFrame_format(self, default, common, rare, epic, separator) .. footer
	else
		return _withFrame_format(self, default, common, rare, epic, separator)
	end
end

function withFrame.format_to4(self, default, common, rare, epic, legendary, footer, separator)
	footer = footer or ''
	separator = separator or ' → '
	return _withFrame_format(self, default, common, rare, epic, separator) .. separator
		.. self:legendary(legendary) .. footer
end

function withFrame.format_and5(self, default, common, rare, epic, heirloom, footer, separator)
	footer = footer or ''
	separator = separator or ' → '
	return _withFrame_format(self, default, common, rare, epic, separator) .. separator
		.. self:heirloom(heirloom) .. footer
end

function withFrame.ammo(self, text, size, link)
	size = size or 24
	link = link or ''
	return self.frame:expandTemplate { title = 'Ammo', args = { text, size = size, link = link }}
end

function withFrame.hopup(self, text, size, link)
	size = size or 16
	link = link or ''
	return self.frame:expandTemplate { title = 'Hopup', args = { text, size = size, link = link }}
end

local levelTableWithFrame = {
	withFrame.common,
	withFrame.rare,
	withFrame.epic,
	withFrame.legendary,
	withFrame.heirloom,
}
function withFrame.level(self, level, text)
	return levelTableWithFrame[level](self, text)
end

-- frame変数がない場合のFormatter
local withoutFrame = {}

function withoutFrame.common(self, text)
	local html = mw.html.create('span')
		:css('color', '#A8A8A8')
		:wikitext(text)
	return tostring(html)
end

function withoutFrame.rare(self, text)
	local html = mw.html.create('span')
		:css('color', '#51A8D6')
		:wikitext(text)
	return tostring(html)
end

function withoutFrame.epic(self, text)
	local html = mw.html.create('span')
		:css('color', '#B237C8')
		:wikitext(text)
	return tostring(html)
end

function withoutFrame.legendary(self, text)
	local html = mw.html.create('span')
		:css('color', '#CEAD21')
		:wikitext(text)
	return tostring(html)
end

function withoutFrame.heirloom(self, text)
	local html = mw.html.create('span')
		:css('color', '#FF4E1D')
		:wikitext(text)
	return tostring(html)
end

function withoutFrame.format(self, default, common, rare, epic, footer, separator)
	footer = footer or ''
	separator = separator or ' → '
	return default .. separator
		.. self:common(common) .. separator
		.. self:rare(rare) .. separator
		.. self:epic(epic) .. footer
end

function withoutFrame.format_to4(self, default, common, rare, epic, legendary, footer, separator)
	footer = footer or ''
	separator = separator or ' → '
	return self:format(default, common, rare, epic) .. separator
		.. self:legendary(legendary) .. footer
end

function withoutFrame.format_and5(self, default, common, rare, epic, heirloom, footer, separator)
	footer = footer or ''
	separator = separator or ' → '
	return self:format(default, common, rare, epic) .. separator
		.. self:heirloom(heirloom) .. footer
end

function withoutFrame.ammo(self, text, size, link)
	return '[' .. text .. ']'
end

function withoutFrame.hopup(self, text, size, link)
	if text == 'スカルピアサーライフリング' then
		return '[スカピ]'
	else
		return '[' .. text .. ']'
	end
end

local levelTableWithoutFrame = {
	withoutFrame.common,
	withoutFrame.rare,
	withoutFrame.epic,
	withoutFrame.legendary,
	withoutFrame.heirloom,
}
function withoutFrame.level(self, level, text)
	return levelTableWithoutFrame[level](self, text)
end

-- コンストラクター
local p = {}

function p.new(frame)
	local obj
	if frame ~= nil then
		obj = setmetatable({
			frame = frame,
		}, { __index = withFrame })
	else
		obj = setmetatable({}, { __index = withoutFrame })
	end
	return obj
end

return p