Module:Move7: Difference between revisions

From Wavu Wiki, the 🌊 wavy Tekken wiki
No edit summary
No edit summary
Line 7: Line 7:


p.display = function(frame)
p.display = function(frame)
local function getParentId(id)
return id:match'(.*),'
end
local args = {}
local args = {}
for k, v in pairs(frame:getParent().args) do
for k, v in pairs(frame:getParent().args) do
Line 16: Line 12:
end
end
local parentId = getParentId(args['id']) -- args['parent']
local parentId = args['parent']
if parentId == nil or parentId == "" then
if parentId == nil or parentId == "" then
return frame:expandTemplate{ title = 'MoveData', args = args }
return frame:expandTemplate{ title = 'MoveData', args = args }
Line 22: Line 18:
local leads = {}
local leads = {}
while (true) do
while (true) do
local parent = cargo.query(tables, 'input,target,damage,id', { where = "id='" .. parentId .. "'" })[1]
local parent = cargo.query(tables, 'input,target,damage,parent', { where = "id='" .. parentId .. "'" })[1]
if parent == nil then
if parent == nil then
return 'Error: parent = "' .. parentId .. '" not found'
return 'Error: parent = "' .. parentId .. '" not found'
Line 37: Line 33:
end
end
local newParentId = getParentId(parent['id'])
if parent['parent'] ~= '' then
if newParentId ~= nil then
parentId = parent['parent']
parentId = newParentId
else
else
break
break

Revision as of 14:00, 22 August 2023

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

local p = {};
local cargo = mw.ext.cargo
local tables = 'MoveDataCargoTest'

p.fields = 'id,name,input,target,damage,reach,tracksLeft,tracksRight,startup,recv,tot,crush,block,hit,ch,notes'


p.display = function(frame)
	local args = {}
	for k, v in pairs(frame:getParent().args) do
		args[k] = v
	end
	
	local parentId = args['parent']
	if parentId == nil or parentId == "" then
		return frame:expandTemplate{ title = 'MoveData', args = args }
	else
		local leads = {}
		while (true) do
			local parent = cargo.query(tables, 'input,target,damage,parent', { where = "id='" .. parentId .. "'" })[1]
			if parent == nil then
				return 'Error: parent = "' .. parentId .. '" not found'
			end

			for k, v in pairs(parent) do
				if k ~= 'parent' then
					if leads[k .. 'Lead'] == nil then
						leads[k .. 'Lead'] = ''
					end
					
					leads[k .. 'Lead'] = v .. leads[k .. 'Lead']
				end
			end
			
			if parent['parent'] ~= '' then
				parentId = parent['parent']
			else
				break
			end
		end

		for k, v in pairs(leads) do
			args[k] = v
		end
		
		return frame:expandTemplate{ title = 'MoveData', args = args }
	end
end

p.queryOverride = function(frame)
	local args = frame:getParent().args
	local id = args[1]
	if id == nil then
		return "Error: no id"
	end
	id = id:gsub("%s+", "")
	
	local result = cargo.query(tables, p.fields, { where = "id = '" .. id .. "'" })[1]
	if result == nil then
		return "Error: move with id = '" .. id .. "' not found"
	end
	
	for k, v in pairs(result) do
		local override = args[k]
		if override ~= nil then
			result[k] = override
		end
	end
	
	return frame:expandTemplate{ title = 'MoveDataCargoTest/Display', args = result }
end

return p