]> git.sesse.net Git - remoteglot/blob - www/index.html
Do various tweaks to work better on mobile devices.
[remoteglot] / www / index.html
1 <!doctype html>
2 <html>
3 <head>
4   <meta charset="utf-8" />
5   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
6   <title>analysis.sesse.net</title>
7
8   <link rel="stylesheet" href="css/chessboard-0.3.0.min.css" />
9   <link rel="stylesheet" href="css/remoteglot.css" />
10   <meta name="viewport" content="width=device-width, initial-scale=1" />
11 </head>
12 <body onresize="board.resize()">
13 <h1 id="headline">Analysis</h1>
14 <div id="board"></div>
15 <div id="analysis">
16   <p id="score">Score:</p>
17   <p><strong>PV:</strong> <span id="pv"></span></p>
18   <p id="searchstats"></p>
19   <h3>Shallow search of all legal moves (multi-PV)</h3>
20   <table id="refutationlines"></table>
21 </div>
22 <h2 style="clear: both;">Symbol explanation</h2>
23 <ul>
24   <li><strong>Score:</strong> 1.00 is the value of one pawn (in the opening). Positive values are better for white.</li>
25   <li><strong>PV:</strong> Principal Variation, the series of moves the engine thinks is the best.</li>
26   <li><strong>Thick red line:</strong> Marks the best move (in the view of the engine). Multiple chained arrows
27     means that the PV starts with multiple successive moves with the same piece, ie., the engine thinks
28     that the piece will execute a maneuver.</li>
29   <li><strong>Thin red lines:</strong> Other good moves, maximum two. Note that even though these are also
30     quality checked, these are less thoroughly analyzed by the engine,
31     and should be taken with a grain of salt.</li>
32   <li><strong>Thick blue line:</strong> Marks the best <em>response</em> move. Note that this is only rarely shown,
33     since usually, the best response move depends on what the first move is. A typical case is when the current move
34     is forced or nearly so.</li>
35 </ul>
36 <p id="credits"><a href="http://git.sesse.net/?p=remoteglot;a=summary">remoteglot</a>
37   &copy; 2007-2013 <a href="http://www.sesse.net/">Steinar H. Gunderson</a>.
38   Chess analysis by <a href="http://stockfishchess.org/">Stockfish</a> (main analysis: 12x2.3GHz Sandy Bridge,
39   multi-PV search: 8x2.27GHz Nehalem).
40   Moves provided by <a href="http://www.freechess.org/">FICS</a>.
41   Hosting and main analysis hardware by <a href="http://www.samfundet.no/">Studentersamfundet i Trondhjem</a>.
42   JavaScript chessboard powered by <a href="http://chessboardjs.com/">chessboard.js</a>.
43   Arrows by <a href="http://jsplumbtoolkit.com">jsPlumb</a>&mdash;who would think you could
44   draw such beautiful arrows in just 161 kB of JavaScript on top of the
45   323 kB needed for jQuery and jQuery UI? How far technology has come. If you want something
46   more retro, the <a href="/text.pl">text interface</a> is still available.</p>
47
48 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
49 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
50 <script type="text/javascript" src="js/jquery.jsPlumb-1.5.3-min.js"></script>
51 <script type="text/javascript" src="js/chessboard-0.3.0.min.js"></script>
52 <script type="text/javascript" src="js/remoteglot.js"></script>
53 </body>
54 </html>