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