]> git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/player_info.mako
Acceptable version of the games breakdown tab.
[xonotic/xonstat.git] / xonstat / templates / player_info.mako
1 <%inherit file="base.mako"/>
2 <%namespace name="nav" file="nav.mako" />
3 <%namespace file="accuracy.mako" import="accuracy" />
4
5 <%block name="navigation">
6 ${nav.nav('players')}
7 </%block>
8
9 <%block name="js">
10     % if player is not None:
11       <script src="/static/js/jquery-1.7.1.min.js"></script>
12       <script src="/static/js/jquery.flot.min.js"></script>
13       <script src="/static/js/bootstrap-tab.js"></script>
14       <script type="text/javascript">
15       $(function () {
16         $('#gbtab').click(function(e) {
17             e.preventDefault();
18             $(this).tab('show');
19         })
20
21       $('#gbtab a:first').tab('show');
22       })
23       </script>
24
25       <script type="text/javascript">
26       $(function () {
27           // plot the accuracy graph
28           function plot_acc_graph(data) {
29               var games = new Array();
30               var avgs = new Array();
31               var accs = new Array();
32
33               var i=0;
34               for(i=0; i < data.games; i++) {
35                   avgs[i] = [i, data.avg];
36                   accs[i] = [i, data.accs[i][1]];
37                   game_link = '/game/' + data.accs[i][0];
38                   j = data.games - i;
39                   games[i] = [i, '<a href="' + game_link + '">' + j + '</a>'];
40               }
41
42               $.plot(
43                   $("#acc-graph"), 
44                   [ { label: 'average', data: avgs, hoverable: true, clickable: false }, 
45                     { label: 'accuracy', data: accs, lines: {show:true}, points: {show:false}, hoverable: true, clickable: true }, ],
46                   { yaxis: {ticks: 10, min: 0, max: 100 },
47                     xaxis: {ticks: games},
48                     grid: { hoverable: true, clickable: true },
49               });
50           }
51
52           // plot the damage graph
53           function plot_dmg_graph(data) {
54               var games = new Array();
55               var avgs = new Array();
56               var dmgs = new Array();
57
58               var i=0;
59               for(i=0; i < data.games; i++) {
60                   avgs[i] = [i, data.avg];
61                   dmgs[i] = [i, data.dmgs[i][1]];
62                   game_link = '/game/' + data.dmgs[i][0];
63                   j = data.games - i;
64                   games[i] = [i, '<a href="' + game_link + '">' + j + '</a>'];
65               }
66
67               $.plot(
68                   $("#dmg-graph"), 
69                   [ { label: 'average', data: avgs, hoverable: true, clickable: false }, 
70                     { label: 'efficiency', data: dmgs, lines: {show:true}, points: {show:false}, hoverable: true, clickable: true }, ],
71                   { yaxis: {ticks: 10, min: 0 },
72                     xaxis: {ticks: games},
73                     grid: { hoverable: true, clickable: true },
74               });
75           }
76
77           function showTooltip(x, y, contents) {
78             $('<div id="tooltip">' + contents + '</div>').css( {
79                 position: 'absolute',
80                 display: 'none',
81                 top: y - 35,
82                 left: x + 10,
83                 border: '1px solid #fdd',
84                 padding: '2px',
85                 'background-color': '#333333',
86                 opacity: 0.80
87             }).appendTo("body").fadeIn(200);
88           }
89
90           var previousPoint = null;
91           var previousLabel = null;
92           $('#acc-graph').bind("plothover", function (event, pos, item) {
93               if (item) {
94                 if ((previousLabel != item.series.label) || (previousPoint != item.dataIndex)) {
95                     previousLabel = item.series.label;
96                     previousPoint = item.dataIndex;
97
98                     $("#tooltip").remove();
99                     var x = item.datapoint[0].toFixed(2),
100                         y = item.datapoint[1].toFixed(2);
101
102                     showTooltip(item.pageX, item.pageY, y + "%");
103                   }
104               }
105               else {
106                   $("#tooltip").remove();
107                   previousPoint = null;
108                   previousLabel = null;
109               }
110           });
111
112           $('#dmg-graph').bind("plothover", function (event, pos, item) {
113               if (item) {
114                 if ((previousLabel != item.series.label) || (previousPoint != item.dataIndex)) {
115                     previousPoint = item.dataIndex;
116                     previousLabel = item.series.label;
117
118                     $("#tooltip").remove();
119                     var x = item.datapoint[0].toFixed(2),
120                         y = item.datapoint[1].toFixed(2);
121
122                     showTooltip(item.pageX, item.pageY, y);
123                   }
124               }
125               else {
126                   $("#tooltip").remove();
127                   previousPoint = null;
128                   previousLabel = null;
129               }
130           });
131
132           // bind click events to the weapon images
133           $(".acc-weap").click(function () {
134               var dataurl = $(this).find('a').attr('href');
135
136               $('.accuracy-nav').find('.weapon-active').removeClass('weapon-active');
137               $(this).addClass('weapon-active');
138
139               $.ajax({
140                   url: dataurl,
141                   method: 'GET',
142                   dataType: 'json',
143                   success: plot_acc_graph
144               });
145           });
146
147           $(".dmg-weap").click(function () {
148               var dataurl = $(this).find('a').attr('href');
149
150               $('.damage-nav').find('.weapon-active').removeClass('weapon-active');
151               $(this).addClass('weapon-active');
152
153               $.ajax({
154                   url: dataurl,
155                   method: 'GET',
156                   dataType: 'json',
157                   success: plot_dmg_graph
158               });
159           });
160
161           // populate the graphs with the default weapons
162           $.ajax({
163               url: '${request.route_url("player_accuracy", id=player.player_id)}',
164               method: 'GET',
165               dataType: 'json',
166               success: plot_acc_graph
167           });
168
169           $.ajax({
170               url: '${request.route_url("player_damage", id=player.player_id)}',
171               method: 'GET',
172               dataType: 'json',
173               success: plot_dmg_graph
174           });
175       })
176       </script>
177     % endif
178 </%block>
179
180 <%block name="title">
181 Player Information
182 </%block>
183
184
185 % if player is None:
186 <h2>This player is so good we couldn't find him!</h2>
187 <p>Seriously though, he probably doesn't exist...just a figment of your imagination. Carry on then!</p>
188
189 % else:
190 <div class="row">
191   <div class="span12">
192     <h2>${player.nick_html_colors()|n}</h2>
193   </div>
194 </div>
195
196 <div class="row">
197   <div id="gbtabcontainer" class="tabbable tabs-right">
198       <ul id="gbtab" class="nav nav-tabs">
199       % for g in games_played:
200         <li><a href="#tab-${g.game_type_cd}" data-toggle="tab">${g.game_type_cd} (${g.games})</a></li>
201       % endfor
202       </ul>
203
204       <div class="tab-content">
205       % for g in games_played:
206         <div class="tab-pane fade in 
207         % if g.game_type_cd == 'overall':
208           active
209         % endif
210         " id="tab-${g.game_type_cd}">
211           <div class="span5">
212             <p>
213             % if g.game_type_cd in overall_stats:
214             Last Played: <small>${overall_stats[g.game_type_cd].last_played.strftime('%a, %d %b %Y %H:%M UTC')} <br /></small>
215             % endif
216
217             Games Played: <small>${g.games} <br /></small>
218
219             % if g.game_type_cd in fav_maps:
220             Favorite Map: <small>${fav_maps[g.game_type_cd].map_name} <br /></small>
221             % endif
222
223             Win Percentage: <small>${round(g.win_pct,2)}% (${g.wins} wins, ${g.losses} losses) <br /></small>
224             </p>
225           </div>
226           <div class="span5">
227             <p>
228             % if g.game_type_cd in overall_stats:
229             Kill Ratio: <small>${round(overall_stats[g.game_type_cd].k_d_ratio,2)} (${overall_stats[g.game_type_cd].total_kills} kills, ${overall_stats[g.game_type_cd].total_deaths} deaths) <br /></small>
230             % endif
231
232             % if g.game_type_cd in elos:
233               % if g.game_type_cd == 'overall':
234               Best Elo: <small>${round(elos[g.game_type_cd].elo,2)} (${elos[g.game_type_cd].game_type_cd}, ${elos[g.game_type_cd].games} games) <br /></small>
235               % else:
236               Elo: <small>${round(elos[g.game_type_cd].elo,2)} (${elos[g.game_type_cd].games} games) <br /></small>
237               % endif
238             % endif
239
240             % if g.game_type_cd in ranks:
241               % if g.game_type_cd == 'overall':
242               Best Rank: <small>${ranks[g.game_type_cd].rank} of ${ranks[g.game_type_cd].max_rank} (${ranks[g.game_type_cd].game_type_cd})<br /></small>
243
244               % else:
245               Rank: <small>${ranks[g.game_type_cd].rank} of ${ranks[g.game_type_cd].max_rank} <br /></small>
246               % endif
247             % endif
248
249             % if g.game_type_cd == 'ctf':
250             Cap Ratio: <small>${round(overall_stats[g.game_type_cd].cap_ratio,2)} (${overall_stats[g.game_type_cd].total_captures} captures, ${overall_stats[g.game_type_cd].total_pickups} pickups) <br /></small>
251             % endif
252             </p>
253           </div>
254         </div>
255       % endfor
256       </div>
257   </div>
258 </div>
259
260
261 % if 'nex' in recent_weapons or 'rifle' in recent_weapons or 'minstanex' in recent_weapons or 'uzi' in recent_weapons or 'shotgun' in recent_weapons:
262 <div class="row">
263   <div class="span10">
264     <h3>Accuracy</h3>
265     <div id="acc-graph" class="flot" style="width:900px; height:200px;">
266     </div>
267
268     <div class="weapon-nav accuracy-nav">
269       <ul>
270         % if 'nex' in recent_weapons:
271         <li>
272           <div class="acc-weap weapon-active">
273             <img src="${request.static_url("xonstat:static/images/nex.png")}" />
274             <p><small>Nex</small></p>
275             <a href="${request.route_url('player_accuracy', id=player.player_id, _query={'weapon':'nex'})}" title="Show nex accuracy"></a>
276           </div>
277         </li>
278         % endif
279
280         % if 'rifle' in recent_weapons:
281         <li>
282           <div class="acc-weap">
283             <img src="${request.static_url("xonstat:static/images/rifle.png")}" />
284             <p><small>Rifle</small></p>
285             <a href="${request.route_url('player_accuracy', id=player.player_id, _query={'weapon':'rifle'})}" title="Show rifle accuracy"></a>
286           </div>
287         </li>
288         % endif
289
290         % if 'minstanex' in recent_weapons:
291         <li>
292           <div class="acc-weap">
293             <img src="${request.static_url("xonstat:static/images/minstanex.png")}" />
294             <p><small>Minstanex</small></p>
295             <a href="${request.route_url('player_accuracy', id=player.player_id, _query={'weapon':'minstanex'})}" title="Show minstanex accuracy"></a>
296           </div>
297         </li>
298         % endif
299
300         % if 'uzi' in recent_weapons:
301         <li>
302           <div class="acc-weap">
303             <img src="${request.static_url("xonstat:static/images/uzi.png")}" />
304             <p><small>Uzi</small></p>
305             <a href="${request.route_url('player_accuracy', id=player.player_id, _query={'weapon':'uzi'})}" title="Show uzi accuracy"></a>
306           </div>
307         </li>
308         % endif
309
310         % if 'shotgun' in recent_weapons:
311         <li>
312           <div class="acc-weap">
313             <img src="${request.static_url("xonstat:static/images/shotgun.png")}" />
314             <p><small>Shotgun</small></p>
315             <a href="${request.route_url('player_accuracy', id=player.player_id, _query={'weapon':'shotgun'})}" title="Show shotgun accuracy"></a>
316           </div>
317         </li>
318         % endif
319       </ul>
320     </div>
321
322   </div>
323 </div>
324 % endif
325
326
327 % if 'rocketlauncher' in recent_weapons or 'grenadelauncher' in recent_weapons or 'electro' in recent_weapons or 'crylink' in recent_weapons or 'laser' in recent_weapons:
328 <div class="row">
329   <div class="span10">
330     <h3>Damage Efficiency</h3>
331     <div id="dmg-graph" class="flot" style="width:900px; height:200px;">
332     </div>
333
334     <div class="weapon-nav damage-nav">
335       <ul>
336         % if 'rocketlauncher' in recent_weapons:
337         <li>
338           <div class="dmg-weap weapon-active">
339             <img src="${request.static_url("xonstat:static/images/rocketlauncher.png")}" />
340             <p><small>Rocket</small></p>
341             <a href="${request.route_url('player_damage', id=player.player_id, _query={'weapon':'rocketlauncher'})}" title="Show rocket launcher efficiency"></a>
342           </div>
343         </li>
344         % endif
345
346         % if 'grenadelauncher' in recent_weapons:
347         <li>
348           <div class="dmg-weap">
349             <img src="${request.static_url("xonstat:static/images/grenadelauncher.png")}" />
350             <p><small>Mortar</small></p>
351             <a href="${request.route_url('player_damage', id=player.player_id, _query={'weapon':'grenadelauncher'})}" title="Show mortar damage efficiency"></a>
352           </div>
353         </li>
354         % endif
355
356         % if 'electro' in recent_weapons:
357         <li>
358           <div class="dmg-weap">
359             <img src="${request.static_url("xonstat:static/images/electro.png")}" />
360             <p><small>Electro</small></p>
361             <a href="${request.route_url('player_damage', id=player.player_id, _query={'weapon':'electro'})}" title="Show electro damage efficiency"></a>
362           </div>
363         </li>
364         % endif
365
366         % if 'crylink' in recent_weapons:
367         <li>
368           <div class="dmg-weap">
369             <img src="${request.static_url("xonstat:static/images/crylink.png")}" />
370             <p><small>Crylink</small></p>
371             <a href="${request.route_url('player_damage', id=player.player_id, _query={'weapon':'crylink'})}" title="Show crylink damage efficiency"></a>
372           </div>
373         </li>
374         % endif
375
376         % if 'hagar' in recent_weapons:
377         <li>
378           <div class="dmg-weap">
379             <img src="${request.static_url("xonstat:static/images/hagar.png")}" />
380             <p><small>Hagar</small></p>
381             <a href="${request.route_url('player_damage', id=player.player_id, _query={'weapon':'hagar'})}" title="Show hagar damage efficiency"></a>
382           </div>
383         </li>
384         % endif
385
386         % if 'laser' in recent_weapons:
387         <li>
388           <div class="dmg-weap">
389             <img src="${request.static_url("xonstat:static/images/laser.png")}" />
390             <p><small>Laser</small></p>
391             <a href="${request.route_url('player_damage', id=player.player_id, _query={'weapon':'laser'})}" title="Show laser damage efficiency"></a>
392           </div>
393         </li>
394         % endif
395
396       </ul>
397     </div>
398
399   </div>
400 </div>
401 % endif
402
403
404 ##### RECENT GAMES (v2) ####
405 % if recent_games:
406 <div class="row">
407   <div class="span12">
408     <h3>Recent Games</h3>
409     <table class="table table-bordered table-condensed">
410       <thead>
411         <tr>
412            <th></th>
413            <th>Type</th>
414            <th>Server</th>
415            <th>Map</th>
416            <th>Result</th>
417            <th>Played</th>
418         </tr>
419       </thead>
420       <tbody>
421       % for (gamestat, game, server, map) in recent_games:
422         <tr>
423            <td><a class="btn btn-primary btn-small" href="${request.route_url('game_info', id=game.game_id)}" title="View detailed information about this game">view</a></td>
424            <td style="width:20px;"><img title="${game.game_type_cd}" src="/static/images/icons/24x24/${game.game_type_cd}.png" alt="${game.game_type_cd}" /></td>
425            <td>${server.name}</td>
426            <td>${map.name}</td>
427            <td>
428            % if gamestat.team != None:
429              % if gamestat.team == game.winner:
430              Win
431              % else:
432              Loss
433              % endif
434           % else:
435             % if gamestat.rank == 1:
436             Win
437             % else:
438             Loss (#${gamestat.rank})
439             % endif
440           % endif
441            </td>
442            <td><span class="abstime" data-epoch="${game.epoch()}" title="${game.create_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${game.fuzzy_date()}</span></td>
443         </tr>
444       % endfor
445       </tbody>
446     </table>
447     % if total_games > 10:
448     <a href="${request.route_url("player_game_index", player_id=player.player_id, page=1)}" title="Game index for ${player.nick}">More games played by ${player.nick_html_colors()|n}...</a>
449     % endif
450   </div>
451 </div>
452 % endif
453 % endif