X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=remoteglot.pl;h=8c871084ead93aca57e599d80e1a98aaaf927a8b;hp=62bb4b1051a1cd94c31838ab3b80ca19b0723a77;hb=ec2386e69c22c62ee666fb9a8aab7481335b5b54;hpb=ce34dc5b190a1d4d0fa9f9a9b7d40909847d5db8 diff --git a/remoteglot.pl b/remoteglot.pl index 62bb4b1..8c87108 100755 --- a/remoteglot.pl +++ b/remoteglot.pl @@ -23,6 +23,12 @@ my $target = "22"; my $engine = "wine Rybkav2.3.2a.mp.w32.exe"; my $telltarget = undef; # undef to be silent my @tell_intervals = (5, 20, 60, 120, 240, 480, 960); # after each move +my $uci_assume_full_compliance = 1; # dangerous :-) +my @masters = ( + 'Sesse', + 'Sessse', + 'Sesssse' +); # Program starts here $SIG{ALRM} = sub { output_screen(); }; @@ -119,7 +125,13 @@ while (1) { if (!defined($pos_waiting)) { uciprint("stop"); } - $pos_waiting = $pos; + if ($uci_assume_full_compliance) { + $pos_waiting = $pos; + } else { + uciprint("position fen " . $pos->{'fen'}); + uciprint("go infinite"); + $pos_calculating = $pos; + } } else { # it's wrong just to give the FEN (the move history is useful, # and per the UCI spec, we should really have sent "ucinewgame"), @@ -141,13 +153,48 @@ while (1) { # $t->cmd("date"); } + if ($line =~ /^([A-Za-z]+)(?:\([A-Z]+\))* tells you: (.*)$/) { + my ($who, $msg) = ($1, $2); + + next if (grep { $_ eq $who } (@masters) == 0); + + if ($msg =~ /^fics (.*?)$/) { + $t->cmd("tell $who Executing '$1' on FICS."); + $t->cmd($1); + } elsif ($msg =~ /^uci (.*?)$/) { + $t->cmd("tell $who Sending '$1' to the engine."); + print UCIWRITE "$1\n"; + } else { + $t->cmd("tell $who Couldn't understand '$msg', sorry."); + } + } #print "FICS: [$line]\n"; $sleep = 0; } # any fun on the UCI channel? if ($nfound > 0 && vec($rout, fileno(UCIREAD), 1) == 1) { - my $line = ; + # + # Read until we've got a full line -- if the engine sends part of + # a line and then stops we're pretty much hosed, but that should + # never happen. + # + my $line = ''; + while ($line !~ /\n/) { + my $tmp; + my $ret = sysread UCIREAD, $tmp, 1; + + if (!defined($ret)) { + next if ($!{EINTR}); + die "error in reading from the UCI engine: $!"; + } elsif ($ret == 0) { + die "EOF from UCI engine"; + } + + $line .= $tmp; + } + + $line =~ tr/\r\n//d; handle_uci($line); $sleep = 0; @@ -176,7 +223,7 @@ sub handle_uci { parse_ids(@ids); } - if ($line =~ /^bestmove/) { + if ($line =~ /^bestmove/ && $uci_assume_full_compliance) { if (defined($pos_waiting)) { uciprint("position fen " . $pos_waiting->{'fen'}); uciprint("go infinite");