Module:Sports table/CricketRR: Difference between revisions

Content deleted Content added
m nrr args
No edit summary
Tags: Mobile edit Mobile web edit
 
(8 intermediate revisions by 4 users not shown)
Line 2:
local pp = { }
 
 
local function args_points(Args)
local pts = {}
 
-- Do not change these defaults without first checking which tables use them
local win_pointspts.win = tonumber(Args['winpoints']) or 2
local tie_points pts.tie = tonumber(Args['tiepoints']) or 1
local nr_points pts.nr = tonumber(Args['nrpoints']) or 1
local loss_points pts.draw = tonumber(Args['losspointsdrawpoints']) or 01
pts.bonus = tonumber(Args['bonuspoints']) or 1
pts.loss = tonumber(Args['losspoints']) or 0
return pts
end
 
local function abbr_header(txt, abbr, show_header_pts, pts)
if show_header_pts then
txt = txt .. ' – ' .. pts .. (pts == 1 and ' point' or ' points')
end
 
return '<abbr title="' .. txt .. '">' .. abbr .. '</abbr>'
end
 
function pp.header(t, Args, p_sub, pos_label, group_col, VTE_text, full_table, results_header_txt)
Line 12 ⟶ 33:
local team_width = Args['teamwidth'] or '180'
local sort_text = yesno(Args['sortable_table'] or 'no') and ' sortable' or ''
--local show_played = not yesno(Args['hide_played'] or 'no')
 
table.insert(t,'{|class="wikitable'..sort_text..'" style="text-align:center;"\n') -- Open table
Line 22 ⟶ 42:
 
--Header specific options
--local show_playedshow_pts = not yesno(Args['hide_playedshow_header_pts'] or 'no')
local pts = args_points(Args)
 
local group_head_text = Args['group_header'] or '<abbr title="Group">Grp</abbr>'
local team_head_text = Args['team_header'] or 'Team'
local tie_head_textdraw_head_text = Args['tie_headerdraw_header'] or abbr_header('<abbrDrawn', title="Tied">T</abbr>'D', show_pts, pts.draw)
local nr_head_text tie_head_text = Args['nr_headertie_header'] or abbr_header('<abbrTied', title="No result">NR</abbr>'T', show_pts, pts.tie)
local nr_head_text = Args['nr_header'] or abbr_header('No result', 'NR', show_pts, pts.nr)
local bonus_head_text = Args['bonus_header'] or '<abbr title="Bonus points">BP</abbr>'
local deduct_head_text = Args['deduct_header'] or '<abbr title="Deductions">Ded</abbr>'
Line 31 ⟶ 55:
--
local loss_first = yesno(Args['loss_before_tie'] or 'yes')
--local ranking_styleshow_draw = yesno(Args['ranking_styledraw_tie'] or 'ptsyes')
local show_tie = yesno(Args['show_tie'] or 'yes')
local show_nr = yesno(Args['show_nr'] or 'yes')
Line 36 ⟶ 61:
local show_bonus_points = yesno(Args['show_bonus_points'] or 'no')
local show_nrr = yesno(Args['show_nrr'] or 'yes')
local show_nrr_fa = yesno(Args['show_nrr_fa'] or 'no') and show_nrr
 
-- What to rank the teams by
--local ranking_style = Args['ranking_style'] or 'pts'
 
-- Initialize
Line 62 ⟶ 85:
if full_table then
 
tt = p_sub.colhead(tt,28,abbr_header('<abbr title="Won">','W</abbr>',show_pts,pts.win) ) -- Win col
local loss_head_text = abbr_header('Lost', 'L', show_pts, pts.loss)
if loss_first then
tt = p_sub.colhead(tt,28,'<abbr title="Lost">L</abbr>'loss_head_text) -- Loss col
 
if show_tie then
Line 75 ⟶ 99:
end
 
tt = p_sub.colhead(tt, 28, '<abbr title="Lost">L</abbr>'loss_head_text) -- Loss col
end
if show_nr then
Line 93 ⟶ 117:
if show_nrr then
tt = p_sub.colhead(tt,28,nrr_head_text) -- NRR col
end
if show_nrr_fa then
tt = p_sub.colhead(tt, 60, 'For')
tt = p_sub.colhead(tt, 60, 'Against')
end
tt.count = tt.count+1
Line 99 ⟶ 127:
return tt
end
 
 
local function rr_to_dec(runs, overs, balls_per_over)
if overs == 0 then
return 0
end
local balls = overs % 1
return runs / (overs - balls + balls * 10 / balls_per_over)
end
 
Line 108 ⟶ 145:
local mm = require('Module:Math')
local yesno = require('Module:Yesno')
 
-- Get custom/default options for in table
-- Do not change these defaults without first checking which tables use them
local win_points = tonumber(Args['winpoints']) or 2
local tie_points = tonumber(Args['tiepoints']) or 1
local nr_points = tonumber(Args['nrpoints']) or 1
local loss_points = tonumber(Args['losspoints']) or 0
local bonus_points = tonumber(Args['bonuspoints']) or 1 -- in some competitions it is 4 pts for win + bonus point for some winning margin
 
-- table options, to match those in the header
Line 124 ⟶ 153:
local show_deduct = yesno(Args['show_deductions'] or 'no')
local show_nrr = yesno(Args['show_nrr'] or 'yes')
local show_nrr_fa = yesno(Args['show_nrr_fa'] or 'no') and show_nrr
 
-- Get some input
Line 136 ⟶ 166:
local oversbowled = tonumber(Args['ob_'..team_code_ii]) or 0
local runsconceded = tonumber(Args['rc_'..team_code_ii]) or 0
local oversreceivedoversfaced = tonumber(Args['of_'..team_code_ii]) or tonumber(Args['or_'..team_code_ii]) or 0
local runsscored = tonumber(Args['rs_'..team_code_ii]) or 0
local balls_per_over = tonumber(Args['balls_per_over']) or 6
 
local hth_local = Args['hth_'..team_code_ii] or nil
Line 144 ⟶ 175:
local matches = wins + losses + ties + noresults
 
local s_bpspts = bonus_points * bonusesargs_points(Args)
local s_bps = pts.bonus*bonuses
local points = win_pointspts.win*wins + loss_pointspts.loss*losses + tie_pointspts.tie*ties + nr_pointspts.nr*noresults + s_bps - deductions
-- Some local vars
Line 177 ⟶ 209:
end
local nrr_for = rr_to_dec(runsscored, oversfaced, balls_per_over)
local nrr_against = rr_to_dec(runsconceded, oversbowled, balls_per_over)
 
-- Set Net Run Rate. This is probabaly over-engineered and could just be done with a single precalculated value
if nrr ~= nil then
nrr = mm._precision_format(nrr, 3)
elseif (oversbowled == 0) or (oversreceivedoversfaced == 0) then -- if 0 or null then have mdash rather than 0?
nrr = '&mdash;'
else
nrr = mm._precision_format((runsscored / oversreceived)nrr_for - (runsconceded / oversbowled ) nrr_against, 3)
end
 
Line 233 ⟶ 268:
if show_nrr then
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..nrr..'\n') -- Net run rate
end
if show_nrr_fa then
local nrr_for_text = oversfaced > 0 and runsscored..'/'..oversfaced or '&mdash;'
local nrr_against_text = oversbowled > 0 and runsconceded..'/'..oversbowled or '&mdash;'
table.insert(t, '| data-sort-value="'..nrr_for..'" style="'..ii_fw..bg_col..'" |'..nrr_for_text..'\n')
table.insert(t, '| data-sort-value="'..nrr_against..'" style="'..ii_fw..bg_col..'" |'..nrr_against_text..'\n')
end
end
Line 247 ⟶ 288:
local status_code, status_called = {},{}
 
status_code = { A='Advances to a further round', C='ChampionChampions', D='Disqualified',
E='Eliminated', G='Guest', H='Host', O='Play-off winner', P='Promoted', Q='Qualified tofor the phase indicated',
R='RelegatedRunners-up', T='Qualified, but not yet tofor the particular phase indicated' }
local status_letters = (Args['status_order'] or '') .. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'