Check out Glinski's Hexagonal Chess, our featured variant for May, 2024.


[ Help | Earliest Comments | Latest Comments ]
[ List All Subjects of Discussion | Create New Subject of Discussion ]
[ List Earliest Comments Only For Pages | Games | Rated Pages | Rated Games | Subjects of Discussion ]

Single Comment

Schoolbook. (Updated!) 8x10 chess with the rook + knight and bishop + knight pieces added. (10x8, Cells: 80) [All Comments] [Add Comment or Rating]
💡📝Sam Trenholme wrote on Sat, Sep 26, 2009 10:14 PM UTC:
OK, I've updated Winboard to version 4.4.0 (there was some minor tweaking I had to do to get it to compile in the version of MinGW/MSYS I use; notably there is no included help file) and was having problems with one side or the other losing on time unless I
  • Gave each side 40 seconds to do 40 moves (too slow for what we're doing)
  • Disabled pondering with -xponder
Here is the shell script I currently use for having Joker80 play itself:
#!/bin/sh

SECS=10

while : ; do

        winboard.exe -noGUI -xanimate -cp -fcp joker80.exe -scp joker80.exe \
          -boardSize middling -xponder \
          -variant capablanca -lpf schoolbook.fen -tc 0:${SECS} -mps 40 \
          -autosave -sgf game-${SECS}sec-40moves-$(date +%s).pgn -mg 10

        sleep 1

done
While there still is the occasional game won on time, most of the time the game ends in checkmate or draws by repetition.

Note that I also hacked backend.c to remove the popup that tells you the match results at the end of a match.