Feed The Beast Wiki

Follow the Feed The Beast Wiki on Discord or Mastodon!

READ MORE

Feed The Beast Wiki
m (Taking is giving the in the world of Lua)
m (Weird things be going on)
Line 47: Line 47:
 
for subitem in mw.text.gsplit(item, "%[%[") do
 
for subitem in mw.text.gsplit(item, "%[%[") do
 
if string.find(subitem, "%]%]") then
 
if string.find(subitem, "%]%]") then
table.insert(section, "[[" .. subitem)
+
table.insert(section, "[[" .. subitem:gsub(" '''·''' ", ""))
 
else
 
else
subitem = subitem:gsub(" '''·''' ", "")
+
--subitem = subitem:gsub("-item\">", "", 1):gsub(" '''·''' ", "")
if subitem ~= "" then
+
--if subitem ~= "" then
table.insert(section, "<span class=\"nowrap navbox-item\">" .. subitem)
+
table.insert(section, --[["<span class=\"nowrap navbox-item\">" ..--]] subitem:gsub("&nbsp;'''·'''&#32;", ""))
end
+
--end
 
end
 
end
 
end
 
end

Revision as of 01:26, 5 March 2016

Documentation for this module may be created at Module:NIA/doc

local p = {}

p.items = function( f )
        local args = f.args or f
        if f == mw.getCurrentFrame() and args[1] == nil then
                args = f:getParent().args
        else
                f = mw.getCurrentFrame()
        end
        local text = ""
        for item in mw.text.gsplit(args[1], '%s*,%s*') do
                text = text .. f:callParserFunction('#icon', {item = item, size = 16, mod = args.mod})
        end
        return text
end

function shuffle(list)
	math.randomseed(os.time())
	local indices = {}
	for i = 1, #list do
		indices[#indices+1] = i
	end
	local shuffled = {}
	for i = 1, #list do
		local index = math.random(#indices)
		local value = list[indices[index]]
		table.remove(indices, index)
		shuffled[#shuffled+1] = value
	end
	return shuffled
end

p.rand = function(f)
	local args = f.args or f
	if f == mw.getCurrentFrame() and args[1] == nil then
		args = f:getParent().args
	else
		f = mw.getCurrentFrame()
	end
	if args[1] == "" then
		return ""
	end
	section = {}
	for item in mw.text.gsplit(args[1], "<span class=\"nowrap navbox") do
		if string.find(item, "&nbsp;'''·'''&#32;%[%[") then
			silly = item
			for subitem in mw.text.gsplit(item, "%[%[") do
				if string.find(subitem, "%]%]") then
					table.insert(section, "[[" .. subitem:gsub("&nbsp;'''·'''&#32;", ""))
				else
					--subitem = subitem:gsub("-item\">", "", 1):gsub("&nbsp;'''·'''&#32;", "")
					--if subitem ~= "" then
						table.insert(section, --[["<span class=\"nowrap navbox-item\">" ..--]] subitem:gsub("&nbsp;'''·'''&#32;", ""))
					--end
				end
			end
		else
			item = item:gsub("-item\">", "", 1):gsub("&nbsp;'''·'''&#32;", "")
			if item ~= "" then
				table.insert(section, "<span class=\"nowrap navbox-item\">" .. item)
			end
		end
	end
	return table.concat(shuffle(section), "&nbsp;'''·'''&#32;")
end

return p