]> git.sesse.net Git - remoteglot/blob - www/index.html
96319948d44b33326791229322ae2f585b69ab79
[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" />
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>
13 <audio id="ding" preload="none">
14   <source src="ding.opus" type="audio/ogg; codecs=opus" />
15   <source src="ding.mp3" type="audio/mp3" />
16 </audio>
17 <div id="games">
18 </div>
19 <h1 id="headline">Analysis</h1>
20 <div id="boardcontainer">
21   <div id="board"></div>
22   <div id="bottompanel">
23     <p id="whiteinfo"><span id="whiteclock"></span><span id="whiteimbalance"></span></p>
24     <p id="blackinfo"><span id="blackimbalance"></span><span id="blackclock"></span></p>
25     <p id="numviewers"></p>
26   </div>
27 </div>
28 <div id="analysis">
29   <div id="scorecontainer">
30     <span id="score">Score:</span>
31     <div id="scoresparkcontainer">
32       <span id="scorespark"></span>
33     </div>
34   </div>
35   <p id="pvcontainer"><strong id="pvtitle">PV:</strong> <span id="pv"></span></p>
36   <p id="searchstats"></p>
37   <h3>History and potential moves (multi-PV)</h3>
38   <p id="sortbyscoreholder">
39     Sound:
40     <span id="soundon"><a href="javascript:set_sound(true)">On</a></span>
41     <span id="soundoff"><a href="javascript:set_sound(false)">Off</a></span>
42     |
43     <span id="history">No history</span>
44     |
45     <span id="linemsg">Make moves by clicking on them, or on an involved square.</span>
46     <span id="linenav">
47       <span id="prevmove"><a href="javascript:prev_move();">Previous</a></span>,
48       <span id="nextmove"><a href="javascript:next_move();">Next</a></span>,
49       <a href="javascript:show_line(-1, -1);">Exit to main position</a>
50     </span></p>
51   <table id="refutationlines"></table>
52 </div>
53 <h2 style="clear: both;">Symbol explanation</h2>
54 <ul>
55   <li><strong>Score:</strong> 1.00 is the value of one pawn (in a balanced endgame). Positive values are better for white.</li>
56   <li><strong>PV:</strong> Principal Variation, the series of moves the engine thinks is the best.</li>
57   <li><strong>Thick red line:</strong> Marks the best move (in the view of the engine). Multiple chained arrows
58     means that the PV starts with multiple successive moves with the same piece, ie., the engine thinks
59     that the piece will execute a maneuver.</li>
60   <li><strong>Thin red lines:</strong> Other good moves, maximum two. Note that even though these are also
61     quality checked, these are less thoroughly analyzed by the engine,
62     and should be taken with a grain of salt.</li>
63   <li><strong>Thick blue line:</strong> Marks the best <em>response</em> move. Note that this is only rarely shown,
64     since usually, the best response move depends on what the first move is. A typical case is when the current move
65     is forced or nearly so.</li>
66 </ul>
67 <p id="credits"><a href="http://git.sesse.net/?p=remoteglot;a=summary">remoteglot</a>
68   &copy; 2007&ndash;2018 <a href="http://www.sesse.net/">Steinar H. Gunderson</a>.
69   Chess analysis by <a href="http://stockfishchess.org/" id="engineid">Stockfish</a><span id="enginedetails"></span>.
70   <span id="movesource"></span>
71   Hosting and additional analysis hardware by <a href="http://www.samfundet.no/">Studentersamfundet i Trondhjem</a>
72   and Berge Schwebs Bjørlo.
73   JavaScript chessboard powered by <a href="http://chessboardjs.com/">chessboard.js</a>
74   and <a href="https://github.com/jhlywa/chess.js">chess.js</a>.
75   Ding sound by <a href="https://www.freesound.org/people/Aiwha/sounds/196106/">Aiwha</a> (CC-BY-3.0).
76   <span id="lomonosov">7-man Lomonosov tablebase lookup by <a href="http://tb7.chessok.com/">ChessOK</a>.</span></p>
77
78 <!-- For faster development -->
79 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
80 <script type="text/javascript" src="js/chessboard-0.3.0.min.js"></script>
81 <script type="text/javascript" src="js/chess.min.js"></script>
82 <script type="text/javascript" src="js/json_delta.js"></script>
83 <script type="text/javascript" src="js/jquery.sparkline.js"></script>
84 <script type="text/javascript" src="js/remoteglot.js"></script>
85 <!--
86 -->
87
88 <!-- Minified version of the previous six, compiled together -->
89 <!--
90 <script type="text/javascript" src="js/remoteglot.min.js"></script>
91 -->
92 </body>
93 </html>