Naar inhoud springen

Module:Sports results/sandbox

Uit Wikipedia, de vrije encyclopedie

Documentatie voor deze module kan aangemaakt worden op de volgende pagina: Module:Sports results/sandbox/doc

-- Module to build results cross-tables for standings in Sports
-- See documentation for details
 
require('strict')

local p = {}
 
-- Main function
function p.main(frame)
	-- Declare locals
	local Args = frame.args
	local N_teams = 0
	local t = {}
	local t_footer = {}
	local t_return = {}
	local team_list = {}
	local ii, ii_fw, bg_col, team_name, team_code_ii
	
	-- Edit links if requested
	local template_name = Args['template_name'] or ''
	local edit_links = template_name == '' and '' 
		or frame:expandTemplate{ title = 'navbar', 
			args = { mini=1, style='float:right', template_name} }
	
	-- Load some other modules
	local p_sub = require('Module:Sports table/sub')
	
	-- Read in number of consecutive teams (ignore entries after skipping a spot)
	while Args['team'..N_teams+1] ~= nil do
		N_teams = N_teams+1
		-- Sneakily add it twice to the team_list parameter, once for the actual
		-- ranking, the second for position lookup in sub-tables
		-- This is possible because Lua allows both numbers and strings as indices.
		team_list[N_teams] = Args['team'..N_teams] -- i^th entry is team X
		team_list[Args['team'..N_teams]] = N_teams -- team X entry is position i
	end
	
	-- Get team to show
	local ii_show = team_list[Args['showteam']] -- nil if non-existant
	
	-- Create header
	-- Open table
	table.insert(t,'{|class="wikitable plainrowheaders" style="text-align:center;"\n') 
	-- First column
	t_return.count = 0 			-- Dummy parameter, using subfunction call seems best at this point because both module are intertwined
	t_return.tab_text = t		-- Actual text
	t_return = p_sub.colhead(t_return,'auto', edit_links .. '')	
	-- Other columns passed to subfunction
	t_return = p.header(t_return,Args,p_sub,N_teams,team_list)
	t = t_return.tab_text
	
	-- Now create individual rows
	for ii=1,N_teams do
		-- Get team info
		team_code_ii = team_list[ii]
		team_name = Args['name_'..team_code_ii]		 	or team_code_ii
		local ii_style = 'text-align:right;'
		if ii and ii == ii_show then
			ii_style = ii_style .. 'font-weight:bold;'
		end
		-- Team names
		table.insert(t,'|- \n')	-- New row
		table.insert(t,'! scope="row" style="' 
			.. ii_style ..'"| '..team_name..'\n')	-- Position number
		
		-- Then individual results
		t = p.row(t,Args,N_teams,team_list,ii,ii_show)
	end
	
	-- Close table
	table.insert(t, '|}\n')
	
	-- Get info for footer
	local update = Args['update']			or 'unknown'
	local start_date = Args['start_date'] 	or 'unknown'
	local source = Args['source']			or frame:expandTemplate{ title = 'tfeit', args = { reason='No source parameter defined', date=os.date('%B %Y') } }
	
	-- Create footer text
	-- Date updating
	-- if string.lower(update)=='complete' then
		-- Do nothing
	-- elseif update=='' then
		-- Empty parameter
	--	table.insert(t_footer,'Bijgewerkt to wedstrijd(en) gespeeld op onbekend. ')
	-- elseif string.lower(update)=='future' then
		-- Future start date
	--	table.insert(t_footer,'Eerste wedstrijd(en) worden gespeeld op '..start_date..'. ')
	-- else
	--	table.insert(t_footer,'Bijgewerkt to wedstrijd(en) gespeeld op '..update..'. ')
	-- end
	-- table.insert(t_footer,'Bron: '..source)
	-- if (Args['matches_style'] or '') == 'FBR' then
	--	table.insert(t_footer, '<br>Kleuren: Groen = Winst thuisploeg; Blauw = Gelijkspel; Rood = Verlies thuisploeg.')
	-- end
	-- if (Args['a_note'] or '') ~= '' then
	--	table.insert(t_footer, '<br>For coming matches, an a indicates there is an article about the match.')
	--end
	-- As reflist size text
	-- t_footer = '<div class="reflist">'..table.concat(t_footer)..'</div>'
	-- Add footer to main text table
	t_footer = p.footer()
	table.insert(t,t_footer)
	
	return table.concat(t)
end

-- Other functions
function p.lng(frame)
	local wiki = string.match(mw.site.server, "%a+")
	return wiki
end

local function get_short_name(s, t, n)
	-- return short name if defined
	if s and s ~= '' then 
		return s 
	end
	-- replace link text in name with team abbr if possible
	if n and t and n:match('(%[%[[^%[%]]*%]%])') then
		n = mw.ustring.gsub(n, '(%[%[[^%|%]]*%|)[^%|%]]*(%]%])', '%1' .. t .. '%2')
		n = mw.ustring.gsub(n, '(%[%[[^%|%]]*)(%]%])', '%1|' .. t .. '%2')
		return n
	end
	-- nothing worked, so just return the unlinked team abbr
	return t or ''
end

local function get_RGBColor(c)
	-- Define the colouring
	local result_col = {}
	result_col = {green1='#BBF3BB', green2='#CCF9CC', green3='#DDFCDD', green4='#EEFFEE',
		blue1='#BBF3FF', blue2='#CCF9FF', blue3='#DDFCFF', blue4='#EEFFFF',
		yellow1='#FFFFBB', yellow2='#FFFFCC', yellow3='#FFFFDD', yellow4='#FFFFEE',
		red1='#FFBBBB', red2='#FFCCCC', red3='#FFDDDD', red4='#FFEEEE',
		black1='#BBBBBB', black2='#CCCCCC', black3='#DDDDDD', black4='#EEEEEE'}
	
    c = result_col[c] or c
    
    return c
end

local function get_score_background(s, c1, c2, c3)
	local s1, s2
	
	c1 = get_RGBColor(c1)
	c2 = get_RGBColor(c2)
	c3 = get_RGBColor(c3)
	
	-- delink if necessary	
	if s:match('^%s*%[%[[^%[%]]*%|([^%[%]]*)%]%]') then
		s = s:match('^%s*%[%[[^%[%]]*%|([^%[%]]*)%]%]')
	end

	-- get the scores
	s1 = tonumber(mw.ustring.gsub( s or '', 
		'^%s*([%d][%d]*)%s*–%s*([%d][%d]*).*', '%1' ) or '') or ''
	s2 = tonumber(mw.ustring.gsub( s or '', 
		'^%s*([%d][%d]*)%s*–%s*([%d][%d]*).*', '%2' ) or '') or ''
	
	-- return colouring if possible
	if s1 ~= '' and s2 ~= '' then
		return ((s1 > s2) and c1) or ((s2 > s1) and c3) or c2
	else
		return 'transparent'
	end
end

local function format_score(s)
	s = mw.ustring.gsub(s or '', '^%s*([%d]+)%s*[–−—%-]%s*([%d]+)', '%1–%2')
	s = mw.ustring.gsub(s, '^%s*([%d]+)%s*&[MmNn][Dd][Aa][Ss][Hh];%s*([%d]+)', '%1–%2')
	s = mw.ustring.gsub(s, '^%s*(%[%[[^%[%]]*%|[%d]+)%s*%-%s*([%d]+)', '%1–%2')
	s = mw.ustring.gsub(s, '^%s*(%[%[[^%[%]]*%|[%d]+)%s*&[MmNn][Dd][Aa][Ss][Hh];%s*([%d]+)', '%1–%2')
	return s
end

function p.footer(tt, Args, excl_lst)
	local update = Args['update']			or 'unknown'
	local start_date = Args['start_date'] 	or 'unknown'
	local source = Args['source']           or 'unknown'
	-- local source = Args['source']			or frame:expandTemplate{ title = 'tfeit', args = { reason='No source parameter defined', date=os.date('%B %Y') } }
	
	if excl_lst["upd"] == nil then
		-- Create footer text
		-- Date updating
		if string.lower(update)=='complete' then
			-- Do nothing
		elseif update=='' then
			-- Empty parameter
			table.insert(tt,'Bijgewerkt to wedstrijd(en) gespeeld op onbekend. ')
		elseif string.lower(update)=='future' then
			-- Future start date
			table.insert(tt,'Eerste wedstrijd(en) worden gespeeld op '..start_date..'. ')
		else
			table.insert(tt,'Bijgewerkt to wedstrijd(en) gespeeld op '..update..'. ')
		end
	end

	if excl_lst["src"] == nil then
		table.insert(tt,'Bron: '..source)
	end
	
	if (Args['matches_style'] or '') == 'FBR' then
		table.insert(tt, '<br>Kleuren: Groen = Winst thuisploeg; Blauw = Gelijkspel; Rood = Verlies thuisploeg.')
	end
	if (Args['a_note'] or '') ~= '' then
		table.insert(tt, '<br>For coming matches, an a indicates there is an article about the match.')
	end
	-- As reflist size text
	tt = '<div class="reflist">'..table.concat(tt)..'</div>'
	
	return tt
end

function p.header(tt,Args,p_sub,N_teams,team_list)
	local ii, team_code_ii, short_name
	
	-- Set match column width
	local col_width = Args['match_col_width'] or '28'
	
	-- Get some default values in case it doesn't start at 1
	local top_pos = tonumber(Args['highest_pos']) or 1
	
	for ii=top_pos,N_teams do
		team_code_ii = team_list[ii]
		short_name = get_short_name(Args['short_'..team_code_ii], 
			team_code_ii, Args['name_'..team_code_ii])
		tt = p_sub.colhead(tt,col_width,short_name)
	end
	
	return tt
end

function p.row(tt,Args,N_teams,team_list,ii,ii_show)
	-- Note ii is the row number being shown
	local jj, fw, bg, wc, tc, lc, nc, nt, result, team_code_ii, team_code_jj
	local cell_bold = false
	
	-- Set score cell style
	local matches_style = Args['matches_style'] or ''
	
	team_code_ii = team_list[ii]
	
	-- Get some default values in case it doesn't start at 1
	local top_pos = tonumber(Args['highest_pos']) or 1
	
	for jj=top_pos,N_teams do
		team_code_jj = team_list[jj]
		result = Args['match_'..team_code_ii..'_'..team_code_jj] or ''
		if ii == jj or result == 'null' then
			-- Solid cell
			if ii==ii_show then cell_bold = true else cell_bold = false end
			fw = cell_bold and 'font-weight: bold;' or 'font-weight: normal;'
			
			if Args['col_NORES'] ~= nil then
				nc = string.lower(Args['col_NORES'])
				bg = 'background-color:'..get_RGBColor(nc)..';'
			    table.insert(tt,'| style="'..fw..bg..'" | \n')
			else
				nt = Args['text_NORES'] or '&mdash;'
				bg = 'background-color:transparent;'
			    table.insert(tt,'| style="'..fw..bg..'" | '..nt..'\n')
		    end
		else
			-- Content cell
			-- Set bolding and background
			if ii==ii_show or jj == ii_show then cell_bold = true else cell_bold = false end
			fw = cell_bold and 'font-weight: bold;' or 'font-weight: normal;'
			bg = 'background-color:transparent;'
			
			-- Now for the actual result
			-- Reformat dashes
			if result ~= '' then
				result = format_score(result)
			end
			-- Background coloring if enabled
			if matches_style == 'FBR' and result ~= '' then
			    wc = string.lower(Args['col_WIN'] or 'blue1')
			    tc = string.lower(Args['col_DRAW'] or 'yellow1')
			    lc = string.lower(Args['col_LOSS'] or 'red1')
			    bg = 'background-color:' .. get_score_background(result, wc, tc, lc) .. ';'
			end
			table.insert(tt,'| style="white-space:nowrap;'..fw..bg..'" |'..result..'\n')
		end
	end
	
	return tt
end

return p