]> git.sesse.net Git - remoteglot/commitdiff
Yet more Chess960 fixes.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 4 Feb 2018 21:23:07 +0000 (22:23 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 4 Feb 2018 21:23:07 +0000 (22:23 +0100)
Position.pm
remoteglot.pl

index 93bde53d334670e64a114f9881545ae37be8f987..8cfc4a6e8c6caac1b3d02d33c25ce27cc07b75cd 100644 (file)
@@ -76,11 +76,11 @@ sub from_fen {
        }
        while ($castling =~ s/([A-H])//g) {
                my $rook_col = lc($1);
-               my $king_col = _find_piece_col($board->[7], 'K');
-               if ($rook_col < $king_col) {
-                       $pos->{'white_castle_q'} = _col_num_to_letter($rook_col);
+               my $king_col = _col_num_to_letter(_find_piece_col($board->[7], 'K'));
+               if ($rook_col lt $king_col) {
+                       $pos->{'white_castle_q'} = $rook_col;
                } else {
-                       $pos->{'white_castle_k'} = _col_num_to_letter($rook_col);
+                       $pos->{'white_castle_k'} = $rook_col;
                }
        }
        if ($castling =~ /k/) {
@@ -91,11 +91,11 @@ sub from_fen {
        }
        while ($castling =~ s/([a-h])//g) {
                my $rook_col = $1;
-               my $king_col = _find_piece_col($board->[0], 'k');
-               if ($rook_col < $king_col) {
-                       $pos->{'black_castle_q'} = _col_num_to_letter($rook_col);
+               my $king_col = _col_num_to_letter(_find_piece_col($board->[0], 'k'));
+               if ($rook_col lt $king_col) {
+                       $pos->{'black_castle_q'} = $rook_col;
                } else {
-                       $pos->{'black_castle_k'} = _col_num_to_letter($rook_col);
+                       $pos->{'black_castle_k'} = $rook_col;
                }
        }
        $pos->{'time_since_100move_rule_reset'} = $halfmove_clock // 0;
index 86334a7e0e4a4f737c74f08b684f9832892053be..049cdabaafaa0f0f824bec3cb0df34f147176fe2 100755 (executable)
@@ -910,6 +910,7 @@ sub output_json {
                } else {
                        $pos = Position->start_pos('white', 'black');
                }
+               $pos->{'chess960'} = $pos_calculating->{'chess960'};
                my $halfmove_num = 0;
                for my $move (@{$pos_calculating->{'history'}}) {
                        my $id = id_for_pos($pos, $halfmove_num);