X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=xonstat%2Ftemplates%2Fscoreboard.mako;h=88849c6df5e99a26a7b9b854600391d15b6a1730;hb=ae2353788574f4d3858d631a932e83b2e1638401;hp=ba33cc7af35a1b80ed09a2601e8c2cb83c71903e;hpb=5d112375c8f8d653a3d3e7b5654be3ae6b7b51ee;p=xonotic%2Fxonstat.git diff --git a/xonstat/templates/scoreboard.mako b/xonstat/templates/scoreboard.mako old mode 100755 new mode 100644 index ba33cc7..88849c6 --- a/xonstat/templates/scoreboard.mako +++ b/xonstat/templates/scoreboard.mako @@ -1,113 +1,343 @@ -<%def name="scoreboard(game_type_cd, pgstats)"> - -${scoreboard_header(game_type_cd, pgstats[0])} - - % for pgstat in pgstats: - - - ${scoreboard_row(game_type_cd, pgstat)} - - - - % endfor - +<%def name="scoreboard(game_type_cd, pgstats, show_elo=False, show_latency=False)"> +
- % if pgstat.player_id > 2: - - ${pgstat.nick_html_colors()|n} - - % else: - ${pgstat.nick_html_colors()|n} - % endif - ${pgstat.score} - % if pgstat.player_id > 1: - - View - - % endif -
+ ${scoreboard_header(game_type_cd, pgstats[0])} + + % for pgstat in pgstats: + + % if show_latency and pgstat.avg_latency is not None: + + % elif show_latency: + + % endif + + + + ${scoreboard_row(game_type_cd, pgstat)} + + % if game_type_cd != 'cts': + + % endif + + % if show_elo: + % if pgstat.elo_delta is not None: + + % else: + + % endif + % endif + + % endfor +
+ ${int(round(pgstat.avg_latency))} + - + % if pgstat.player_id > 2: + + ${pgstat.nick_html_colors()|n} + + % else: + ${pgstat.nick_html_colors()|n} + % endif + ${pgstat.score}${round(pgstat.elo_delta,2)}-
##### SCOREBOARD HEADER ##### <%def name="scoreboard_header(game_type_cd, pgstat)"> -% if game_type_cd == 'dm' or game_type_cd == 'tdm': - - - Nick - Kills - Deaths - Suicides - Score - Accuracy - - +% if game_type_cd == 'as': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Suicides + Objectives + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd in 'ca' 'dm' 'duel' 'rune' 'tdm': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Suicides + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd == 'cq': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Captured + Released + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd == 'cts': + + + % if show_latency: + Ping + % endif + Nick + Fastest Time + Deaths + + % endif % if game_type_cd == 'ctf': - - - Nick - Kills - Captures - Pickups - Flag Carrier Kills - Returns - Score - Accuracy - - -% endif - -% if game_type_cd == 'ca': - - - Nick - Kills - Score - Accuracy - - -% endif - -% if game_type_cd == 'freezetag': - - - Nick - Kills - Deaths - Suicides - Score - Accuracy - - + + + % if show_latency: + Ping + % endif + Nick + Kills + Caps + Pickups + FCK + Returns + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd == 'dom': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Takes + Ticks + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd in 'ft' 'freezetag': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Revivals + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd in 'ka' 'keepaway': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Pickups + BC Time + BC Kills + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd == 'kh': + + + % if show_latency: + Ping + % endif + Nick + Kills + Deaths + Pickups + Caps + Losses + KC Kills + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd in 'nb' 'nexball': + + + % if show_latency: + Ping + % endif + Nick + Goals + Faults + Score + % if show_elo: + Elo Change + % endif + + +% endif + +% if game_type_cd == 'rc': + + + % if show_latency: + Ping + % endif + Nick + Laps + Fastest Lap + Time + + % endif + ##### SCOREBOARD ROWS ##### <%def name="scoreboard_row(game_type_cd, pgstat)"> -% if game_type_cd == 'dm' or game_type_cd == 'tdm': - ${pgstat.kills} - ${pgstat.deaths} - ${pgstat.suicides} +% if game_type_cd == 'as': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.suicides} + ${pgstat.collects} +% endif + +% if game_type_cd in 'ca' 'dm' 'duel' 'rune' 'tdm': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.suicides} +% endif + +% if game_type_cd == 'cq': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.captures} + ${pgstat.drops} +% endif + +% if game_type_cd == 'cts': + % if pgstat.fastest is not None: + ${round(float(pgstat.fastest.seconds) + (pgstat.fastest.microseconds/1000000.0), 2)} + % else: + - + % endif + + ${pgstat.deaths} % endif % if game_type_cd == 'ctf': - ${pgstat.kills} - ${pgstat.captures} - ${pgstat.pickups} - ${pgstat.carrier_frags} - ${pgstat.returns} + ${pgstat.kills} + ${pgstat.captures} + ${pgstat.pickups} + ${pgstat.carrier_frags} + ${pgstat.returns} % endif -% if game_type_cd == 'ca': - ${pgstat.kills} +% if game_type_cd == 'dom': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.pickups} + ${pgstat.drops} % endif -% if game_type_cd == 'freezetag': - ${pgstat.kills} - ${pgstat.deaths} - ${pgstat.suicides} +% if game_type_cd in 'ft' 'freezetag': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.revivals} % endif + +% if game_type_cd in 'ka' 'keepaway': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.pickups} + + % if pgstat.time is not None: + ${round(float(pgstat.time.seconds) + (pgstat.time.microseconds/1000000.0), 2)} + % else: + - + % endif + + ${pgstat.carrier_frags} +% endif + +% if game_type_cd == 'kh': + ${pgstat.kills} + ${pgstat.deaths} + ${pgstat.pickups} + ${pgstat.captures} + ${pgstat.drops} + ${pgstat.carrier_frags} +% endif + +% if game_type_cd in 'nb' 'nexball': + ${pgstat.captures} + ${pgstat.drops} +% endif + +% if game_type_cd == 'rc': + ${pgstat.laps} + + % if pgstat.fastest is not None: + ${round(float(pgstat.fastest.seconds) + (pgstat.fastest.microseconds/1000000.0), 2)} + % else: + - + % endif + + % if pgstat.time is not None: + ${round(float(pgstat.time.seconds) + (pgstat.time.microseconds/1000000.0), 2)} + % else: + - + % endif +% endif +