]> git.sesse.net Git - remoteglot/commitdiff
Add support for probing the engine hash (requires gRPC-patched Stockfish).
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 20 Mar 2016 19:27:22 +0000 (20:27 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 20 Mar 2016 19:27:22 +0000 (20:27 +0100)
default.vcl
www/js/hash-lookup.js [new file with mode: 0644]
www/js/hashprobe.proto [new file with mode: 0644]
www/js/remoteglot.js
www/serve-analysis.js

index aa2585f56cd0a152350bd631a82bc9145dadc304..bb52d6431000f66fb22214d51c0eb1f9d89e5be9 100644 (file)
@@ -55,6 +55,12 @@ sub vcl_backend_response {
         if (beresp.http.content-type ~ "text" || beresp.http.content-type ~ "json") {
              set beresp.do_gzip = true;
         }
         if (beresp.http.content-type ~ "text" || beresp.http.content-type ~ "json") {
              set beresp.do_gzip = true;
         }
+        if (bereq.url ~ "^/hash/") {
+             set beresp.ttl = 5s;
+             set beresp.http.x-analysis = 1;
+             set beresp.http.x-analysis-backend = bereq.http.x-analysis-backend;
+             return (deliver);
+        }
         if (beresp.http.content-type ~ "json") {
              set beresp.http.x-analysis = 1;
              set beresp.http.x-analysis-backend = bereq.http.x-analysis-backend;
         if (beresp.http.content-type ~ "json") {
              set beresp.http.x-analysis = 1;
              set beresp.http.x-analysis-backend = bereq.http.x-analysis-backend;
diff --git a/www/js/hash-lookup.js b/www/js/hash-lookup.js
new file mode 100644 (file)
index 0000000..d9499d0
--- /dev/null
@@ -0,0 +1,130 @@
+var grpc = require('grpc');
+var Chess = require(__dirname + '/chess.min.js').Chess;
+
+var PROTO_PATH = __dirname + '/hashprobe.proto';
+var hashprobe_proto = grpc.load(PROTO_PATH).hashprobe;
+
+// TODO: Make destination configurable.
+var client = new hashprobe_proto.HashProbe('localhost:50051', grpc.credentials.createInsecure());
+
+var handle_request = function(fen, response) {
+       client.probe({fen: fen}, function(err, probe_response) {
+               if (err) {
+                       response.writeHead(500, {});
+                       response.end();
+               } else {
+                       handle_response(fen, response, probe_response);
+               }
+       });
+}
+exports.handle_request = handle_request;
+
+var handle_response = function(fen, response, probe_response) {
+       var board = new Chess();
+
+       var lines = {};
+
+       var root = translate_line(board, fen, probe_response['root'], true);
+       for (var i = 0; i < probe_response['line'].length; ++i) {
+               var line = probe_response['line'][i];
+               var uci_move = line['move']['from_sq'] + line['move']['to_sq'] + line['move']['promotion'];
+               lines[uci_move] = translate_line(board, fen, line, false);
+       }
+
+       var text = JSON.stringify({
+               root: root,
+               lines: lines
+       });
+       var headers = {
+               'Content-Type': 'text/json; charset=utf-8'
+               //'Content-Length': text.length
+       };
+       response.writeHead(200, headers);
+       response.write(text);
+       response.end();
+}
+
+var translate_line = function(board, fen, line, pretty_score) {
+       var r = {};
+       board.load(fen);
+       var toplay = board.turn();
+
+       if (line['move'] && line['move']['from_sq']) {
+               r['pretty_move'] = board.move({ from: line['move']['from_sq'], to: line['move']['to_sq'], promotion: line['move']['promotion'] }).san;
+       } else {
+               r['pretty_move'] = '';
+       }
+       r['sort_key'] = r['pretty_move'];
+       if (!line['found']) {
+               r['pv_pretty'] = [];
+               r['score_sort_key'] = -100000000;
+               return r;
+       }
+       r['depth'] = line['depth'];
+
+       // Convert the PV.
+       var pv = [];
+       if (r['pretty_move']) {
+               pv.push(r['pretty_move']);
+       }
+       for (var j = 0; j < line['pv'].length; ++j) {
+               var move = line['pv'][j];
+               var decoded = board.move({ from: move['from_sq'], to: move['to_sq'], promotion: move['promotion'] });
+               if (decoded === null) {
+                       break;
+               }
+               pv.push(decoded.san);
+       }
+       r['pv_pretty'] = pv;
+
+       // Write out the pretty score.
+       // TODO: mates!
+       var score = pretty_score ? 'Score: ' : '';
+
+       if (line['bound'] === 'BOUND_UPPER') {
+               score += '≤\u00a0';
+       } else if (line['bound'] === 'BOUND_LOWER') {
+               score += '≥\u00a0';
+       }
+
+       var value = line['value']['score_cp'];
+       if (value > 0) {
+               score += '+' + (value / 100.0).toFixed(2);
+       } else if (value < 0) {
+               score += (value / 100.0).toFixed(2);
+       } else if (value == 0) {
+               score += '0.00';
+       } else {
+               score += '';
+       }
+       r['pretty_score'] = score;
+       r['score_sort_key'] = score_sort_key(line['value'], toplay === 'b') * 200 + r['depth'];
+
+       return r;
+}
+
+var score_sort_key = function(score, invert) {
+       if (score['score_type'] === 'SCORE_MATE') {
+               var mate = score['score_mate'];
+               var score;
+               if (mate > 0) {
+                       // Side to move mates
+                       score = 99999 - mate;
+               } else {
+                       // Side to move is getting mated (note the double negative for mate)
+                       score = -99999 - mate;
+               }
+               if (invert) {
+                       score = -score;
+               }
+               return score;
+       } else if (score['score_type'] === 'SCORE_CP') {
+               var score = score['score_cp'];
+               if (invert) {
+                       score = -score;
+               }
+               return score;
+       }
+
+       return null;
+}
diff --git a/www/js/hashprobe.proto b/www/js/hashprobe.proto
new file mode 100644 (file)
index 0000000..dfd16fd
--- /dev/null
@@ -0,0 +1,46 @@
+syntax = "proto3";
+package hashprobe;
+
+message HashProbeRequest {
+       string fen = 1;
+}
+message HashProbeResponse {
+       HashProbeLine root = 2;
+       repeated HashProbeLine line = 1;
+}
+message HashProbeLine {
+       HashProbeMove move = 1;
+       bool found = 2;
+
+       repeated HashProbeMove pv = 3;
+       HashProbeScore value = 4;  // Dynamic eval (may be inexact, see the "bound" field)
+       HashProbeScore eval = 5;  // Static eval
+       int32 depth = 6;
+
+       enum ValueBound {
+               BOUND_NONE = 0;
+               BOUND_UPPER = 1;
+               BOUND_LOWER = 2;
+               BOUND_EXACT = 3;
+       };
+       ValueBound bound = 7;
+}
+
+message HashProbeMove {
+       string from_sq = 1;  // a1, a2, etc.
+       string to_sq = 2;
+       string promotion = 3;  // Q, R, etc.
+}
+message HashProbeScore {
+       enum ScoreType {
+               SCORE_CP = 0;
+               SCORE_MATE = 1;
+       }
+       ScoreType score_type = 1;
+       int32 score_cp = 2;
+       int32 score_mate = 3;
+}
+
+service HashProbe {
+       rpc Probe(HashProbeRequest) returns (HashProbeResponse) {}
+}
index 8b16f7c3a8d8fc51a07bbbb660c42cb11f74646c..1472afded1aae3caf90176cb3c4d29826c7e9751 100644 (file)
@@ -7,7 +7,7 @@
  * @type {Number}
  * @const
  * @private */
  * @type {Number}
  * @const
  * @private */
-var SCRIPT_VERSION = 2015062104;
+var SCRIPT_VERSION = 2016032000;
 
 /**
  * The current backend URL.
 
 /**
  * The current backend URL.
@@ -16,6 +16,7 @@ var SCRIPT_VERSION = 2015062104;
  * @private
  */
 var backend_url = "/analysis.pl";
  * @private
  */
 var backend_url = "/analysis.pl";
+var backend_hash_url = "/hash";
 
 /** @type {window.ChessBoard} @private */
 var board = null;
 
 /** @type {window.ChessBoard} @private */
 var board = null;
@@ -32,7 +33,7 @@ var board_is_animating = false;
 var current_analysis_data = null;
 
 /**
 var current_analysis_data = null;
 
 /**
- * If we are displaying previous analysis, this is non-null,
+ * If we are displaying previous analysis or from hash, this is non-null,
  * and will override most of current_analysis_data.
  *
  * @type {?Object}
  * and will override most of current_analysis_data.
  *
  * @type {?Object}
@@ -68,8 +69,19 @@ var arrows = [];
 /** @type {Array.<Array.<boolean>>} */
 var occupied_by_arrows = [];
 
 /** @type {Array.<Array.<boolean>>} */
 var occupied_by_arrows = [];
 
+/** Currently displayed refutation lines (on-screen).
+ * Can either come from the current_analysis_data, displayed_analysis_data,
+ * or hash_refutation_lines.
+ */
 var refutation_lines = [];
 
 var refutation_lines = [];
 
+/** Refutation lines from current hash probe.
+ *
+ * If non-null, will override refutation lines from the base position.
+ * Note that these are relative to display_fen, not base_fen.
+ */
+var hash_refutation_lines = null;
+
 /** @type {!number} @private */
 var move_num = 1;
 
 /** @type {!number} @private */
 var move_num = 1;
 
@@ -114,22 +126,35 @@ var client_clock_offset_ms = null;
 
 var clock_timer = null;
 
 
 var clock_timer = null;
 
+/** The current position being analyzed, represented as a FEN string.
+ * Note that this is not necessarily the same as display_fen.
+ * @type {?string}
+ * @private
+ */
+var base_fen = null;
+
 /** The current position on the board, represented as a FEN string.
 /** The current position on the board, represented as a FEN string.
+ * Note that board.fen() does not contain e.g. who is to play.
  * @type {?string}
  * @private
  */
  * @type {?string}
  * @private
  */
-var fen = null;
+var display_fen = null;
 
 /** @typedef {{
  *    start_fen: string,
  *    pretty_pv: Array.<string>,
 
 /** @typedef {{
  *    start_fen: string,
  *    pretty_pv: Array.<string>,
+ *    move_num: number,
+ *    toplay: string,
+ *    start_display_move_num: number
  * }} DisplayLine
  * }} DisplayLine
+ *
+ * "start_display_move_num" is the (half-)move number to start displaying the PV at.
  */
 
 /** All PVs that we currently know of.
  *
  * Element 0 is history (or null if no history).
  */
 
 /** All PVs that we currently know of.
  *
  * Element 0 is history (or null if no history).
- * Element 1 is current main PV.
+ * Element 1 is current main PV, or explored line if nowhere else on the screen.
  * All remaining elements are refutation lines (multi-PV).
  *
  * @type {Array.<DisplayLine>}
  * All remaining elements are refutation lines (multi-PV).
  *
  * @type {Array.<DisplayLine>}
@@ -172,6 +197,23 @@ var current_analysis_request_timer = null;
  */
 var current_historic_xhr = null;
 
  */
 var current_historic_xhr = null;
 
+/**
+ * The current backend request to get hash probes, if any, so that we can abort it.
+ *
+ * @type {?jqXHR}
+ * @private
+ */
+var current_hash_xhr = null;
+
+/**
+ * The current timer to display hash probe information (it could be waiting on the
+ * board to stop animating), if any, so that we can abort it.
+ *
+ * @type {?Number}
+ * @private
+ */
+var current_hash_display_timer = null;
+
 var supports_html5_storage = function() {
        try {
                return 'localStorage' in window && window['localStorage'] !== null;
 var supports_html5_storage = function() {
        try {
                return 'localStorage' in window && window['localStorage'] !== null;
@@ -566,6 +608,7 @@ var thousands = function(x) {
  * @param {Array.<string>} pretty_pv
  * @param {number} move_num
  * @param {!string} toplay
  * @param {Array.<string>} pretty_pv
  * @param {number} move_num
  * @param {!string} toplay
+ * @param {number} start_display_move_num
  * @param {number=} opt_limit
  * @param {boolean=} opt_showlast
  */
  * @param {number=} opt_limit
  * @param {boolean=} opt_showlast
  */
@@ -591,6 +634,23 @@ var print_pv = function(line_num, opt_limit, opt_showlast) {
        var move_num = display_line.move_num;
        var toplay = display_line.toplay;
 
        var move_num = display_line.move_num;
        var toplay = display_line.toplay;
 
+       // Truncate PV at the start if needed.
+       var start_display_move_num = display_line.start_display_move_num;
+       if (start_display_move_num > 0) {
+               pretty_pv = pretty_pv.slice(start_display_move_num);
+               var to_add = start_display_move_num;
+               if (toplay === 'B') {
+                       ++move_num;
+                       toplay = 'W';
+                       --to_add;
+               }
+               if (to_add % 2 == 1) {
+                       toplay = 'B';
+                       --to_add;
+               }
+               move_num += to_add / 2;
+       }
+
        var pv = '';
        var i = 0;
        if (opt_limit && opt_showlast && pretty_pv.length > opt_limit) {
        var pv = '';
        var i = 0;
        if (opt_limit && opt_showlast && pretty_pv.length > opt_limit) {
@@ -670,17 +730,24 @@ window['collapse_history'] = collapse_history;
  * Also recreates the global "display_lines".
  */
 var update_refutation_lines = function() {
  * Also recreates the global "display_lines".
  */
 var update_refutation_lines = function() {
-       if (fen === null) {
+       if (base_fen === null) {
                return;
        }
        if (display_lines.length > 2) {
                // Truncate so that only the history and PV is left.
                display_lines = [ display_lines[0], display_lines[1] ];
        }
                return;
        }
        if (display_lines.length > 2) {
                // Truncate so that only the history and PV is left.
                display_lines = [ display_lines[0], display_lines[1] ];
        }
-
        var tbl = $("#refutationlines");
        tbl.empty();
 
        var tbl = $("#refutationlines");
        tbl.empty();
 
+       // Find out where the lines start from.
+       var base_line = [];
+       var start_display_move_num = 0;
+       if (hash_refutation_lines) {
+               base_line = current_display_line.pretty_pv.slice(0, current_display_move + 1);
+               start_display_move_num = base_line.length;
+       }
+
        var moves = [];
        for (var move in refutation_lines) {
                moves.push(move);
        var moves = [];
        for (var move in refutation_lines) {
                moves.push(move);
@@ -695,6 +762,25 @@ var update_refutation_lines = function() {
                var move_td = document.createElement("td");
                tr.appendChild(move_td);
                $(move_td).addClass("move");
                var move_td = document.createElement("td");
                tr.appendChild(move_td);
                $(move_td).addClass("move");
+
+               if (line['pv_pretty'].length == 0) {
+                       // Not found.
+                       $(move_td).text(line['pretty_move']);
+                       var score_td = document.createElement("td");
+
+                       $(score_td).addClass("score");
+                       $(score_td).text("—");
+                       tr.appendChild(score_td);
+
+                       var depth_td = document.createElement("td");
+                       tr.appendChild(depth_td);
+                       $(depth_td).addClass("depth");
+                       $(depth_td).text("—");
+
+                       tbl.append(tr);
+                       continue;
+               }
+
                if (line['pv_pretty'].length == 0) {
                        $(move_td).text(line['pretty_move']);
                } else {
                if (line['pv_pretty'].length == 0) {
                        $(move_td).text(line['pretty_move']);
                } else {
@@ -715,7 +801,7 @@ var update_refutation_lines = function() {
                var pv_td = document.createElement("td");
                tr.appendChild(pv_td);
                $(pv_td).addClass("pv");
                var pv_td = document.createElement("td");
                tr.appendChild(pv_td);
                $(pv_td).addClass("pv");
-               $(pv_td).html(add_pv(fen, line['pv_pretty'], move_num, toplay, 10));
+               $(pv_td).html(add_pv(base_fen, base_line.concat(line['pv_pretty']), move_num, toplay, start_display_move_num, 10));
 
                tbl.append(tr);
        }
 
                tbl.append(tr);
        }
@@ -815,7 +901,7 @@ var update_board = function() {
        // unconditionally taken from current_data (we're not interested in
        // historic history).
        if (current_data['position']['pretty_history']) {
        // unconditionally taken from current_data (we're not interested in
        // historic history).
        if (current_data['position']['pretty_history']) {
-               add_pv('start', current_data['position']['pretty_history'], 1, 'W', 8, true);
+               add_pv('start', current_data['position']['pretty_history'], 1, 'W', 0, 8, true);
        } else {
                display_lines.push(null);
        }
        } else {
                display_lines.push(null);
        }
@@ -962,7 +1048,9 @@ var update_board = function() {
        }
 
        // The search stats.
        }
 
        // The search stats.
-       if (data['tablebase'] == 1) {
+       if (data['searchstats']) {
+               $("#searchstats").html(data['searchstats']);
+       } else if (data['tablebase'] == 1) {
                $("#searchstats").text("Tablebase result");
        } else if (data['nodes'] && data['nps'] && data['depth']) {
                var stats = thousands(data['nodes']) + ' nodes, ' + thousands(data['nps']) + ' nodes/sec, depth ' + data['depth'] + ' ply';
                $("#searchstats").text("Tablebase result");
        } else if (data['nodes'] && data['nps'] && data['depth']) {
                var stats = thousands(data['nodes']) + ' nodes, ' + thousands(data['nps']) + ' nodes/sec, depth ' + data['depth'] + ' ply';
@@ -983,12 +1071,12 @@ var update_board = function() {
        }
 
        // Update the board itself.
        }
 
        // Update the board itself.
-       fen = data['position']['fen'];
+       base_fen = data['position']['fen'];
        update_displayed_line();
 
        // Print the PV.
        $("#pvtitle").text("PV:");
        update_displayed_line();
 
        // Print the PV.
        $("#pvtitle").text("PV:");
-       $("#pv").html(add_pv(data['position']['fen'], data['pv_pretty'], data['position']['move_num'], data['position']['toplay']));
+       $("#pv").html(add_pv(data['position']['fen'], data['pv_pretty'], data['position']['move_num'], data['position']['toplay'], 0));
 
        // Update the PV arrow.
        clear_arrows();
 
        // Update the PV arrow.
        clear_arrows();
@@ -1043,10 +1131,10 @@ var update_board = function() {
        }
 
        // Update the refutation lines.
        }
 
        // Update the refutation lines.
-       fen = data['position']['fen'];
-       move_num = data['position']['move_num'];
+       base_fen = data['position']['fen'];
+       move_num = parseInt(data['position']['move_num']);
        toplay = data['position']['toplay'];
        toplay = data['position']['toplay'];
-       refutation_lines = data['refutation_lines'];
+       refutation_lines = hash_refutation_lines || data['refutation_lines'];
        update_refutation_lines();
 
        // Update the sparkline last, since its size depends on how everything else reflowed.
        update_refutation_lines();
 
        // Update the sparkline last, since its size depends on how everything else reflowed.
@@ -1338,15 +1426,17 @@ var show_line = function(line_num, move_num) {
        if (line_num == -1) {
                current_display_line = null;
                current_display_move = null;
        if (line_num == -1) {
                current_display_line = null;
                current_display_move = null;
+               hash_refutation_lines = null;
                if (displayed_analysis_data) {
                        // TODO: Support exiting to history position if we are in an
                        // analysis line of a history position.
                        displayed_analysis_data = null;
                if (displayed_analysis_data) {
                        // TODO: Support exiting to history position if we are in an
                        // analysis line of a history position.
                        displayed_analysis_data = null;
-                       update_board();
                }
                }
+               update_board();
+               return;
        } else {
                current_display_line = jQuery.extend({}, display_lines[line_num]);  // Shallow clone.
        } else {
                current_display_line = jQuery.extend({}, display_lines[line_num]);  // Shallow clone.
-               current_display_move = move_num;
+               current_display_move = move_num + current_display_line.start_display_move_num;
        }
        current_display_line_is_history = (line_num == 0);
 
        }
        current_display_line_is_history = (line_num == 0);
 
@@ -1359,7 +1449,8 @@ var show_line = function(line_num, move_num) {
 window['show_line'] = show_line;
 
 var prev_move = function() {
 window['show_line'] = show_line;
 
 var prev_move = function() {
-       if (current_display_move > -1) {
+       if (current_display_line &&
+           current_display_move >= current_display_line.start_display_move_num) {
                --current_display_move;
        }
        update_historic_analysis();
                --current_display_move;
        }
        update_historic_analysis();
@@ -1369,7 +1460,8 @@ var prev_move = function() {
 window['prev_move'] = prev_move;
 
 var next_move = function() {
 window['prev_move'] = prev_move;
 
 var next_move = function() {
-       if (current_display_line && current_display_move < current_display_line.pretty_pv.length - 1) {
+       if (current_display_line &&
+           current_display_move < current_display_line.pretty_pv.length - 1) {
                ++current_display_move;
        }
        update_historic_analysis();
                ++current_display_move;
        }
        update_historic_analysis();
@@ -1444,6 +1536,8 @@ var update_imbalance = function(fen) {
 }
 
 /** Mark the currently selected move in red.
 }
 
 /** Mark the currently selected move in red.
+ * Also replaces the PV with the current displayed line if it's not shown
+ * anywhere else on the screen.
  */
 var update_move_highlight = function() {
        if (highlighted_move !== null) {
  */
 var update_move_highlight = function() {
        if (highlighted_move !== null) {
@@ -1453,8 +1547,10 @@ var update_move_highlight = function() {
                // See if the current displayed line is identical to any of the ones
                // we have on screen. (It might not be if e.g. the analysis reloaded
                // since we started looking.)
                // See if the current displayed line is identical to any of the ones
                // we have on screen. (It might not be if e.g. the analysis reloaded
                // since we started looking.)
+               var display_line_num = null;
                for (var i = 0; i < display_lines.length; ++i) {
                        var line = display_lines[i];
                for (var i = 0; i < display_lines.length; ++i) {
                        var line = display_lines[i];
+                       if (line.start_display_move_num > 0) continue;
                        if (current_display_line.start_fen !== line.start_fen) continue;
                        if (current_display_line.pretty_pv.length !== line.pretty_pv.length) continue;
                        var ok = true;
                        if (current_display_line.start_fen !== line.start_fen) continue;
                        if (current_display_line.pretty_pv.length !== line.pretty_pv.length) continue;
                        var ok = true;
@@ -1465,11 +1561,22 @@ var update_move_highlight = function() {
                                }
                        }
                        if (ok) {
                                }
                        }
                        if (ok) {
-                               highlighted_move = $("#automove" + i + "-" + current_display_move);
-                               highlighted_move.addClass('highlight');
+                               display_line_num = i;
                                break;
                        }
                }
                                break;
                        }
                }
+
+               if (display_line_num === null) {
+                       // Replace the PV with the (complete) line.
+                       $("#pvtitle").text("Exploring:");
+                       current_display_line.start_display_move_num = 0;
+                       display_lines.push(current_display_line);
+                       $("#pv").html(print_pv(display_lines.length - 1));
+                       display_line_num = display_lines.length - 1;
+               }
+
+               highlighted_move = $("#automove" + display_line_num + "-" + (current_display_move - current_display_line.start_display_move_num));
+               highlighted_move.addClass('highlight');
        }
 }
 
        }
 }
 
@@ -1477,8 +1584,9 @@ var update_displayed_line = function() {
        if (current_display_line === null) {
                $("#linenav").hide();
                $("#linemsg").show();
        if (current_display_line === null) {
                $("#linenav").hide();
                $("#linemsg").show();
-               board.position(fen);
-               update_imbalance(fen);
+               display_fen = base_fen;
+               board.position(base_fen);
+               update_imbalance(base_fen);
                return;
        }
 
                return;
        }
 
@@ -1497,10 +1605,17 @@ var update_displayed_line = function() {
        }
 
        var hiddenboard = chess_from(current_display_line.start_fen, current_display_line.pretty_pv, current_display_move);
        }
 
        var hiddenboard = chess_from(current_display_line.start_fen, current_display_line.pretty_pv, current_display_move);
+       display_fen = hiddenboard.fen();
        board_is_animating = true;
        var old_fen = board.fen();
        board.position(hiddenboard.fen());
        board_is_animating = true;
        var old_fen = board.fen();
        board.position(hiddenboard.fen());
-       if (board.fen() === old_fen) board_is_animating = false;
+       if (board.fen() === old_fen) {
+               board_is_animating = false;
+       } else {
+               // Fire off a hash request, since we're now off the main position
+               // and it just changed.
+               explore_hash(display_fen);
+       }
        update_imbalance(hiddenboard.fen());
 }
 
        update_imbalance(hiddenboard.fen());
 }
 
@@ -1530,6 +1645,41 @@ var set_sound = function(param_enable_sound) {
 }
 window['set_sound'] = set_sound;
 
 }
 window['set_sound'] = set_sound;
 
+/** Send off a hash probe request to the backend.
+ * @param {string} fen
+ */
+var explore_hash = function(fen) {
+       // If we already have a backend response going, abort it.
+       if (current_hash_xhr) {
+               current_hash_xhr.abort();
+       }
+       if (current_hash_display_timer) {
+               clearTimeout(current_hash_display_timer);
+               current_hash_display_timer = null;
+       }
+       current_hash_xhr = $.ajax({
+               url: backend_hash_url + "?fen=" + fen
+       }).done(function(data, textstatus, xhr) {
+               show_explore_hash_results(data, fen);
+       });
+}
+
+/** Process the JSON response from a hash probe request.
+ * @param {!Object} data
+ * @param {string} fen
+ */
+var show_explore_hash_results = function(data, fen) {
+       if (board_is_animating) {
+               // Updating while the animation is still going causes
+               // the animation to jerk. This is pretty crude, but it will do.
+               current_hash_display_timer = setTimeout(function() { show_explore_hash_results(data, fen); }, 100);
+               return;
+       }
+       current_hash_display_timer = null;
+       hash_refutation_lines = data['lines'];
+       update_board();
+}
+
 /**
  * @param {string} new_backend_url
  */
 /**
  * @param {string} new_backend_url
  */
@@ -1546,6 +1696,9 @@ var switch_backend = function(new_backend_url) {
        if (current_analysis_xhr) {
                current_analysis_xhr.abort();
        }
        if (current_analysis_xhr) {
                current_analysis_xhr.abort();
        }
+       if (current_hash_xhr) {
+               current_hash_xhr.abort();
+       }
 
        // Otherwise, we should have a timer going to start a new one.
        // Kill that, too.
 
        // Otherwise, we should have a timer going to start a new one.
        // Kill that, too.
@@ -1553,6 +1706,10 @@ var switch_backend = function(new_backend_url) {
                clearTimeout(current_analysis_request_timer);
                current_analysis_request_timer = null;
        }
                clearTimeout(current_analysis_request_timer);
                current_analysis_request_timer = null;
        }
+       if (current_hash_display_timer) {
+               clearTimeout(current_hash_display_timer);
+               current_hash_display_timer = null;
+       }
 
        // Request an immediate fetch with the new backend.
        backend_url = new_backend_url;
 
        // Request an immediate fetch with the new backend.
        backend_url = new_backend_url;
index 1622be1e2d987fa7a657efb55aa8748022d6586a..d59941f42559c56c9440a6babd269a50b6749139 100644 (file)
@@ -11,6 +11,7 @@ var zlib = require('zlib');
 var readline = require('readline');
 var child_process = require('child_process');
 var delta = require('./js/json_delta.js');
 var readline = require('readline');
 var child_process = require('child_process');
 var delta = require('./js/json_delta.js');
+var hash_lookup = require('./js/hash-lookup.js');
 
 // Constants.
 var HISTORY_TO_KEEP = 5;
 
 // Constants.
 var HISTORY_TO_KEEP = 5;
@@ -23,11 +24,15 @@ if (process.argv.length >= 3) {
        json_filename = process.argv[2];
 }
 
        json_filename = process.argv[2];
 }
 
-// Expected destination filename.
+// Expected destination filenames.
 var serve_url = '/analysis.pl';
 var serve_url = '/analysis.pl';
+var hash_serve_url = '/hash';
 if (process.argv.length >= 4) {
        serve_url = process.argv[3];
 }
 if (process.argv.length >= 4) {
        serve_url = process.argv[3];
 }
+if (process.argv.length >= 5) {
+       hash_serve_url = process.argv[4];
+}
 
 // TCP port to listen on.
 var port = 5000;
 
 // TCP port to listen on.
 var port = 5000;
@@ -320,6 +325,11 @@ server.on('request', function(request, response) {
        var unique = (u.query)['unique'];
 
        log(request.url);
        var unique = (u.query)['unique'];
 
        log(request.url);
+       if (u.pathname === hash_serve_url) {
+               var fen = (u.query)['fen'];
+               hash_lookup.handle_request(fen, response);
+               return;
+       }
        if (u.pathname !== serve_url) {
                // This is not the request you are looking for.
                send_404(response);
        if (u.pathname !== serve_url) {
                // This is not the request you are looking for.
                send_404(response);