Module:Sports table/Badminton team: Difference between revisions

Content deleted Content added
Created page with '-- Style for football tables local pp = {} function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) -- Load relevant module...'
 
No edit summary
Line 1:
-- Style for football tables
local pp = {}
 
function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt)
-- Load relevant modules
Line 8:
-- Create table header
-- Pre stuff
local team_width = Args['teamwidth'] or '170190'
local sort_text = ''
local sort_table_val = Args['sortable_table'] or 'no'
if yesno(sort_table_val) then sort_text = 'sortable' end
table.insert(t,'{|class="wikitable '..sort_text..'" style="text-align:center;"\n') -- Open table
local show_played = true
local hide_played_val = Args['hide_played'] or 'no'
if yesno(hide_played_val) then show_played = false end
-- Custom header options
local draw_head_text = Args['draw_header'] or '<abbr title="Drawn">D</abbr>'
local group_head_text = Args['group_header'] or '<abbr title="Group">Grp</abbr>'
local team_head_text = Args['team_header'] or 'Team'
local loss_first = Args['loss_before_draw'] or false
-- What to rank the teams by
local ranking_style = Args['ranking_style'] or 'pts'
local show_points, show_perc = false
ranking_style = string.lower(ranking_style)
if ranking_style=='w' or ranking_style=='win' or ranking_style=='wins' then
-- Based on wins
elseif ranking_style=='perc' or ranking_style=='percentage' or ranking_style=='%' then
-- Based on percentage
show_perc = true
else
-- Based on points
show_points = true
end
-- Use points instead of goals for/against
local for_against_style = Args['for_against_style'] or 'goals'
local fa_letter, fa_word_sing, fa_word_plur
local hide_for_against = false
-- First convert to lower case if it is a string
for_against_style = string.lower(for_against_style)
if for_against_style=='g' or for_against_style=='goal' or for_against_style=='goals' then
fa_letter = 'G'
fa_word_sing = 'Goal'
fa_word_plur = 'Goals'
elseif for_against_style=='p' or for_against_style=='point' or for_against_style=='points' then
fa_letter = 'P'
fa_word_sing = 'Point'
fa_word_plur = 'Points'
elseif for_against_style=='none' then
hide_for_against = true
else
fa_letter = 'G'
fa_word_sing = 'Goal'
fa_word_plur = 'Goals'
end
-- Whether to use goal ratio (goal average) instead
local use_ratio_val = Args['use_goal_ratio'] or 'no'
local do_ratio = false
-- True if exist, false otherwise
if yesno(use_ratio_val) then do_ratio = true end
-- Whether to use goal percentage instead
table.insert(t,'{|class="wikitable '..sort_text..'" style="text-align:center;"\n') -- Open table
local use_percentage_val = Args['use_goal_percentage'] or 'no'
local do_percentage = false
-- True if exist, false otherwise
if yesno(use_percentage_val) then do_percentage = true end
-- Initialize
Line 29 ⟶ 73:
-- Add group header
if full_table and group_col then
tt = p_sub.colhead(tt,28,group_head_text) -- Group col
end
tt = p_sub.colhead(tt,team_width,'Team'team_head_text..VTE_text) -- Team col
tt = p_sub.colhead(tt,28,'<abbr title="Played">Pld</abbr>') -- Matches played col
if show_played then
tt = p_sub.colhead(tt,28,'<abbr title="Played">Pld</abbr>') -- Matches played col
end
if full_table then
tt = p_sub.colhead(tt,28,'<abbr title="Won">W</abbr>') -- Win col
if loss_first then
tt = p_sub.colhead(tt,28,'<abbr title="Lost">L</abbr>') -- Loss col
tt = p_sub.colhead(tt,28,'<abbr title="Lost">L</abbr>') -- Loss col
tt = p_sub.colhead(tt,28,draw_head_text) -- Draw col
else
tt = p_sub.colhead(tt,28,draw_head_text) -- Draw col
tt = p_sub.colhead(tt,28,'<abbr title="Lost">L</abbr>') -- Loss col
end
if not hide_for_against then
tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_plur..' for">'..fa_letter..'F</abbr>') -- For col
tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_plur..' against">'..fa_letter..'A</abbr>') -- Against col
if do_ratio then
tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_sing..' ratio">'..fa_letter..'R</abbr>') -- Ratio col
elseif do_percentage then
tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_sing..' percentage">%</abbr>') -- Percentage col
else
tt = p_sub.colhead(tt,28,'<abbr title="'..fa_word_sing..' difference">'..fa_letter..'D</abbr>') -- Difference col
end
end
end
if show_points then
tt = p_sub.colhead(tt,28,'<abbr title="Points">Pts</abbr>') -- Points col
elseif show_perc then
tt = p_sub.colhead(tt,36,'<abbr title="Win percentage">PCT</abbr>') -- Win percentage col
end
 
tt = p_sub.colhead(tt,28,'<abbr title="Points">Pts</abbr>') -- Points col
if full_table then
tt = p_sub.colhead(tt,28,'<abbr title="Matches won">MW</abbr>') -- Matches won col
tt = p_sub.colhead(tt,28,'<abbr title="Matches lost">ML</abbr>') -- Matches lost col
tt = p_sub.colhead(tt,32,'<abbr title="Games won">GW</abbr>') -- Games won col
tt = p_sub.colhead(tt,32,'<abbr title="Games lost">GL</abbr>') -- Games lost col
tt = p_sub.colhead(tt,32,'<abbr title="Points won">PW</abbr>') -- Points won col
tt = p_sub.colhead(tt,32,'<abbr title="Point lost">PL</abbr>') -- Points lost col
end
if full_table then
tt.count = tt.count+1
table.insert(tt.tab_text,results_header_txt)
end
return tt
end
 
function pp.row(frame,t,Args,p_sub,notes_exist,hth_id_list,full_table,rand_val,team_list,team_code_ii,ii_start,ii_end,ii_fw,bg_col,N_teams,ii,ii_show)
-- Build the inner parts of individual rows
Line 68 ⟶ 119:
-- Get custom/default options for in table
local bwin_pointswin_points = tonumber(Args['bwinpointswinpoints']) or 3
local swin_pointsdraw_points = tonumber(Args['swinpointsdrawpoints']) or 21
local sloss_pointsloss_points = tonumber(Args['slosspointslosspoints']) or 10
local bloss_points = tonumber(Args['blosspoints']) or 0
-- Order of draws and losses --
local loss_first = Args['loss_before_draw'] or false
-- Get some input
local bigwinswins = tonumber(Args['bwin_win_'..team_code_ii]) or 0
local smallwinsdraws = tonumber(Args['swin_draw_'..team_code_ii]) or 0
local biglosseslosses = tonumber(Args['bloss_loss_'..team_code_ii]) or 0
local smallossesgfor = tonumber(Args['sloss_gf_'..team_code_ii]) or tonumber(Args['pf_'..team_code_ii]) or 0
local setswongaig = tonumber(Args['sw_ga_'..team_code_ii]) or tonumber(Args['pa_'..team_code_ii]) or 0
local setslost = tonumber(Args['sl_'..team_code_ii]) or 0
local setpointswon = tonumber(Args['spw_'..team_code_ii]) or 0
local setpointslost = tonumber(Args['spl_'..team_code_ii]) or 0
local s_pts = tonumber(Args['adjust_points_'..team_code_ii]) or tonumber(Args['startpoints_'..team_code_ii]) or 0
local hth_local = Args['hth_'..team_code_ii] or nil
-- Then calculate some values
local matches = bigwinswins + smallwinsdraws + biglosses + smallosseslosses
local points = bwin_pointswin_points*bigwinswins + swin_pointsdraw_points*smallwinsdraws + sloss_pointsloss_points*smallosses + bloss_points*biglosseslosses + s_pts
local wins = bigwins + smallwins
--Some sports use draw as well
local losses = biglosses + smallosses
local win_perc = mm._precision_format((2*wins + draws) / (2*matches), 3)
 
if matches == 0 then
-- Escape for zero matches
win_perc = '&mdash;'
elseif losses > 0 then
-- Drop the leading zero (from the string)
win_perc = string.sub(win_perc,2,string.len(win_perc))
end
-- Show for/against
local for_against_style = Args['for_against_style'] or 'goals'
local hide_for_against = false
for_against_style = string.lower(for_against_style)
if for_against_style=='none' then
hide_for_against = true
end
-- Comparison of for against
local gcomp
-- Whether to use goal ratio (goal average) or goal percentage instead
local use_ratio_val = Args['use_goal_ratio'] or 'no'
local use_percentage_val = Args['use_goal_percentage'] or 'no'
local skip_sign
if yesno(use_ratio_val) then
-- Now it is the goal ratio/goal average
if gaig == 0 then
gcomp = '&mdash;'
else
gcomp = mm._precision_format(gfor / gaig, 3)
end
elseif yesno(use_percentage_val) then
-- Now it is the percentage
if gaig == 0 then
gcomp = '&mdash;'
else
gcomp = mm._precision_format(100 * gfor / gaig , 1)
end
else
-- It's goal difference
gcomp = gfor - gaig
-- Formatting with signs
if gcomp>0 then
gcomp='+'..gcomp
elseif gcomp < 0 then
gcomp='&minus;'..-gcomp
end
end
-- Some local vars
local hth_string
Line 97 ⟶ 193:
hth_id_list = tt_return.list
notes_exist = tt_return.notes_exist
-- What to rank the teams by
local ranking_style = Args['ranking_style'] or 'winspts'
local win_fwrank_points, win_string,rank_perc pts_fw,= pts_stringfalse
local win_fw, win_string
ranking_style = string.lower(ranking_style)
if ranking_style=='pw' or ranking_style=='ptswin' or ranking_style=='pointswins' then
-- Based on points
win_fw=ii_fw
win_string = ''
pts_fw = 'font-weight: bold;'
pts_string = hth_string
else
-- Based on wins
win_fw = 'font-weight: bold;'
win_string = hth_string
elseif ranking_style=='perc' or ranking_style=='percentage' or ranking_style=='%' then
pts_fw=ii_fw
-- Based on percentage
pts_string = ''
rank_perc = true
end
win_fw=ii_fw
win_string = ''
-- Show games played
local show_played = true
local hide_played_val = Args['hide_played'] or 'no'
if yesno(hide_played_val) then show_played = false end
-- Set ratio
local sratio
if setslost == 0 then
sratio = '&mdash;'
else
-- Based on points
sratio = mm._precision_format(setswon / setslost, 3)
rank_points = true
win_fw=ii_fw
win_string = ''
end
-- Setpoint ratio
local spratio
if setpointslost == 0 then
spratio = '&mdash;'
else
spratio = mm._precision_format(setpointswon / setpointslost, 3)
end
 
-- Row building
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..matches..'\n') -- Played
if show_played then
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..matches..'\n') -- Played
end
if full_table then
table.insert(t,'| style="'..win_fw..bg_col..'" |'..wins..win_string..'\n') -- Won
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..losses..'\n') -- Lost
if loss_first then
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..losses..'\n') -- Lost
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..draws..'\n') -- Drawn
else
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..draws..'\n') -- Drawn
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..losses..'\n') -- Lost
end
if not hide_for_against then
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..gfor..'\n') -- GF
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..gaig..'\n') -- GA
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..gcomp..'\n') -- Goal comparison
end
end
if rank_points then
-- Add &minus; for negative point totals
if points<0 then
if points<0 then
table.insert(t,'| style="'..pts_fw..bg_col..'" | &minus;'..-points..pts_string..'\n')
table.insert(t,'| style="font-weight: bold;'..bg_col..'" | &minus;'..-points..hth_string..'\n')
else
else
table.insert(t,'| style="'..pts_fw..bg_col..'" | '..points..pts_string..'\n')
table.insert(t,'| style="font-weight: bold;'..bg_col..'" | '..points..hth_string..'\n')
end
elseif rank_perc then
table.insert(t,'| style="font-weight: bold;'..bg_col..'" | '..win_perc..hth_string..'\n')
end
if full_table then
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..matcheswon..'\n') -- SW
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..matcheslost..'\n') -- SL
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..sratio..'\n') -- Set ratio
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..setpointswon..'\n') -- SPW
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..setpointslost..'\n') -- SPL
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..spratio..'\n') -- Setpoint ratio
end
 
return {t=t, notes_exist=notes_exist, hth_id_list=hth_id_list}
end
 
function pp.status(Args)
-- Declare status options
Line 171 ⟶ 255:
-- ------------------------------------------------------------
local status_code, status_called = {}
status_code = { A='AdvancesAdvance to a further round', C='Champion', D='Disqualified',
E='Eliminated', G='Guest', H='Host', O='Play-off winner', P='Promoted', Q='Qualified to the phase indicated',
R='Relegated', T='Qualified, but not yet to the particular phase indicated',
X='?', Y='?', Z='?'}
status_called = { A=false, C=false, D=false, E=false, G=false, H=false, O=false, P=false,
Q=false, R=false, T=false, X=false, Y=false, Z=false}
local status_letters = 'ACDEHOPQRTXYZACDEGHOPQRTXYZ'
-- Status position (before or after read and default)