]> de.git.xonotic.org Git - xonotic/xonstat.git/blob - xonstat/templates/player_info.mako
Also fixed the damage graph tooltips
[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                     previousPoint = item.dataIndex;
85                     previousLabel = item.series.label;
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>${recent_games[0][1].fuzzy_date()} </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
201       % if fav_weapon is not None:
202       Favorite Weapons: <small>${", ".join([wpn['name'] for wpn in fav_weapon[:2]])}</small><br />
203       % endif
204     </p>
205   </div>
206   <div class="span6">
207     <p>
208        % if total_games > 0 and total_stats['wins'] is not None:
209        Win Percentage: <small>${round(float(total_stats['wins'])/total_games * 100, 2)}% (${total_stats['wins']} wins, ${total_games - total_stats['wins']} losses) </small><br />
210        % endif
211
212        % if total_stats['kills'] > 0 and total_stats['deaths'] > 0:
213        Kill Ratio: <small>${round(float(total_stats['kills'])/total_stats['deaths'], 3)} (${total_stats['kills']} kills, ${total_stats['deaths']} deaths) </small><br />
214        % endif
215
216        % if elos_display is not None and len(elos_display) > 0:
217        Elo:
218           <small>${', '.join(elos_display)} </small>
219           <br />
220           %if '*' in ', '.join(elos_display):
221               <small><i>*preliminary Elo</i></small><br />
222           %endif
223       % endif
224
225       % if ranks_display != '':
226       Ranks: <small>${ranks_display}</small><br />
227       % endif
228     </p>
229   </div>
230 </div>
231
232
233 % 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:
234 <div class="row">
235   <div class="span10">
236     <h3>Accuracy</h3>
237     <div id="acc-graph" class="flot" style="width:900px; height:200px;">
238     </div>
239
240     <div class="weapon-nav accuracy-nav">
241       <ul>
242         % if 'nex' in recent_weapons:
243         <li>
244           <div class="acc-weap weapon-active">
245             <img src="${request.static_url("xonstat:static/images/nex.png")}" />
246             <p><small>Nex</small></p>
247             <a href="${request.route_url('player_accuracy', id=player.player_id, _query=[('weapon','nex')])}" title="Show nex accuracy"></a>
248           </div>
249         </li>
250         % endif
251
252         % if 'rifle' in recent_weapons:
253         <li>
254           <div class="acc-weap">
255             <img src="${request.static_url("xonstat:static/images/rifle.png")}" />
256             <p><small>Rifle</small></p>
257             <a href="${request.route_url('player_accuracy', id=player.player_id, _query=[('weapon','rifle')])}" title="Show rifle accuracy"></a>
258           </div>
259         </li>
260         % endif
261
262         % if 'minstanex' in recent_weapons:
263         <li>
264           <div class="acc-weap">
265             <img src="${request.static_url("xonstat:static/images/minstanex.png")}" />
266             <p><small>Minstanex</small></p>
267             <a href="${request.route_url('player_accuracy', id=player.player_id, _query=[('weapon','minstanex')])}" title="Show minstanex accuracy"></a>
268           </div>
269         </li>
270         % endif
271
272         % if 'uzi' in recent_weapons:
273         <li>
274           <div class="acc-weap">
275             <img src="${request.static_url("xonstat:static/images/uzi.png")}" />
276             <p><small>Uzi</small></p>
277             <a href="${request.route_url('player_accuracy', id=player.player_id, _query=[('weapon','uzi')])}" title="Show uzi accuracy"></a>
278           </div>
279         </li>
280         % endif
281
282         % if 'shotgun' in recent_weapons:
283         <li>
284           <div class="acc-weap">
285             <img src="${request.static_url("xonstat:static/images/shotgun.png")}" />
286             <p><small>Shotgun</small></p>
287             <a href="${request.route_url('player_accuracy', id=player.player_id, _query=[('weapon','shotgun')])}" title="Show shotgun accuracy"></a>
288           </div>
289         </li>
290         % endif
291       </ul>
292     </div>
293
294   </div>
295 </div>
296 % endif
297
298
299 % 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:
300 <div class="row">
301   <div class="span10">
302     <h3>Damage Efficiency</h3>
303     <div id="dmg-graph" class="flot" style="width:900px; height:200px;">
304     </div>
305
306     <div class="weapon-nav damage-nav">
307       <ul>
308         % if 'rocketlauncher' in recent_weapons:
309         <li>
310           <div class="dmg-weap weapon-active">
311             <img src="${request.static_url("xonstat:static/images/rocketlauncher.png")}" />
312             <p><small>Rocket</small></p>
313             <a href="${request.route_url('player_damage', id=player.player_id, _query=[('weapon','rocketlauncher')])}" title="Show rocket launcher efficiency"></a>
314           </div>
315         </li>
316         % endif
317
318         % if 'grenadelauncher' in recent_weapons:
319         <li>
320           <div class="dmg-weap">
321             <img src="${request.static_url("xonstat:static/images/grenadelauncher.png")}" />
322             <p><small>Mortar</small></p>
323             <a href="${request.route_url('player_damage', id=player.player_id, _query=[('weapon','grenadelauncher')])}" title="Show mortar damage efficiency"></a>
324           </div>
325         </li>
326         % endif
327
328         % if 'electro' in recent_weapons:
329         <li>
330           <div class="dmg-weap">
331             <img src="${request.static_url("xonstat:static/images/electro.png")}" />
332             <p><small>Electro</small></p>
333             <a href="${request.route_url('player_damage', id=player.player_id, _query=[('weapon','electro')])}" title="Show electro damage efficiency"></a>
334           </div>
335         </li>
336         % endif
337
338         % if 'crylink' in recent_weapons:
339         <li>
340           <div class="dmg-weap">
341             <img src="${request.static_url("xonstat:static/images/crylink.png")}" />
342             <p><small>Crylink</small></p>
343             <a href="${request.route_url('player_damage', id=player.player_id, _query=[('weapon','crylink')])}" title="Show crylink damage efficiency"></a>
344           </div>
345         </li>
346         % endif
347
348         % if 'hagar' in recent_weapons:
349         <li>
350           <div class="dmg-weap">
351             <img src="${request.static_url("xonstat:static/images/hagar.png")}" />
352             <p><small>Hagar</small></p>
353             <a href="${request.route_url('player_damage', id=player.player_id, _query=[('weapon','hagar')])}" title="Show hagar damage efficiency"></a>
354           </div>
355         </li>
356         % endif
357
358         % if 'laser' in recent_weapons:
359         <li>
360           <div class="dmg-weap">
361             <img src="${request.static_url("xonstat:static/images/laser.png")}" />
362             <p><small>Laser</small></p>
363             <a href="${request.route_url('player_damage', id=player.player_id, _query=[('weapon','laser')])}" title="Show laser damage efficiency"></a>
364           </div>
365         </li>
366         % endif
367
368       </ul>
369     </div>
370
371   </div>
372 </div>
373 % endif
374
375
376 ##### RECENT GAMES (v2) ####
377 % if recent_games:
378 <div class="row">
379   <div class="span12">
380     <h3>Recent Games</h3>
381     <table class="table table-bordered table-condensed">
382       <thead>
383         <tr>
384            <th></th>
385            <th>Type</th>
386            <th>Server</th>
387            <th>Map</th>
388            <th>Result</th>
389            <th>Played</th>
390         </tr>
391       </thead>
392       <tbody>
393       % for (gamestat, game, server, map) in recent_games:
394         <tr>
395            <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>
396            <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>
397            <td>${server.name}</td>
398            <td>${map.name}</td>
399            <td>
400            % if gamestat.team != None:
401              % if gamestat.team == game.winner:
402              Win
403              % else:
404              Loss
405              % endif
406           % else:
407             % if gamestat.rank == 1:
408             Win
409             % else:
410             Loss (#${gamestat.rank})
411             % endif
412           % endif
413            </td>
414            <td>${game.fuzzy_date()}</td>
415         </tr>
416       % endfor
417       </tbody>
418     </table>
419     % if total_games > 10:
420     <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>
421     % endif
422   </div>
423 </div>
424 % endif
425 % endif