X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fjs%2Fremoteglot.js;h=d75b3fca18b980a9dec369699728747d1614699d;hp=9d83e55783168f841119c8666a91333be43e1f32;hb=944e74aaa3c5b3038d16d8be1461be6f6f33a4b4;hpb=f21b4339a81e83eaaa36175948607299a98a8400 diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index 9d83e55..d75b3fc 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -440,7 +440,7 @@ var print_pv = function(line_num, pretty_pv, move_num, toplay, opt_limit, opt_sh ++i; } move_num += i / 2; - } else if (toplay == 'B') { + } else if (toplay == 'B' && pretty_pv.length > 0) { var move = "" + pretty_pv[0] + ""; pv = move_num + '. … ' + move; toplay = 'W'; @@ -572,14 +572,18 @@ var update_board = function(data, num_viewers) { } else { headline = 'Analysis'; } + var last_move; if (data['position']['last_move'] !== 'none') { - headline += ' after ' if (data['position']['toplay'] == 'W') { - headline += (data['position']['move_num']-1) + '… '; + last_move = (data['position']['move_num']-1) + '… '; } else { - headline += data['position']['move_num'] + '. '; + last_move = data['position']['move_num'] + '. '; } - headline += data['position']['last_move']; + last_move += data['position']['last_move']; + + headline += ' after ' + last_move; + } else { + last_move = null; } $("#headline").text(headline); @@ -600,14 +604,26 @@ var update_board = function(data, num_viewers) { // The score. if (data['score'] !== null) { $("#score").text(data['score']); - var short_score = data['score'].replace(/Score: */, ""); - document.title = '(' + short_score + ') analysis.sesse.net'; + } + + var title_elems = []; + if (data['short_score'] !== undefined && data['short_score'] !== null) { + title_elems.push(data['short_score']); + } + if (last_move !== null) { + title_elems.push(last_move); + } + + if (title_elems.length != 0) { + document.title = '(' + title_elems.join(', ') + ') analysis.sesse.net'; } else { document.title = 'analysis.sesse.net'; } // The search stats. - if (data['nodes'] && data['nps'] && data['depth']) { + 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'; if (data['seldepth']) { stats += ' (' + data['seldepth'] + ' selective)'; @@ -621,6 +637,8 @@ var update_board = function(data, num_viewers) { } $("#searchstats").text(stats); + } else { + $("#searchstats").text(""); } // Update the board itself.