Your trusted source for computer chess information!

Differences

This shows you the differences between two versions of the page.

computer_chess:wiki:lists:gui_protocol_support_list 2020/01/28 11:24 computer_chess:wiki:lists:gui_protocol_support_list 2020/05/26 10:39 current
Line 34: Line 34:
| [[http://sourceforge.net/projects/glchess | glChess]] - [[http://www.freshports.org/games/glchess | FreeBSD ]]| Yes | Yes | No | No | Yes | for Linux and Unix systems [[http://www.gnome.org |Gnome]], uses [[http://www.ggzgamingzone.org/engines/chess |Gaming Zone Project (chess)]], has problems with the not well documented ICS-protocol - no relationship to Gnome Chess in any way (Robert Ancell) | | [[http://sourceforge.net/projects/glchess | glChess]] - [[http://www.freshports.org/games/glchess | FreeBSD ]]| Yes | Yes | No | No | Yes | for Linux and Unix systems [[http://www.gnome.org |Gnome]], uses [[http://www.ggzgamingzone.org/engines/chess |Gaming Zone Project (chess)]], has problems with the not well documented ICS-protocol - no relationship to Gnome Chess in any way (Robert Ancell) |
| [[https://wiki.gnome.org/Apps/Chess | Gnome Chess]] - [[http://www.freshports.org/games/gnomechess | FreeBSD]] - [[https://github.com/GNOME/gnome-chess/releases | GitHub Website]] | Yes | Yes | No | No | Yes | Free GUI chess client for the GNOME system under Linux or other unix like systems |  | [[https://wiki.gnome.org/Apps/Chess | Gnome Chess]] - [[http://www.freshports.org/games/gnomechess | FreeBSD]] - [[https://github.com/GNOME/gnome-chess/releases | GitHub Website]] | Yes | Yes | No | No | Yes | Free GUI chess client for the GNOME system under Linux or other unix like systems | 
-| [[http://hiarcs.com/mac-chess-explorer.htm | HIARCS Chess Explorer (Mac OS X)]] - [[http://hiarcs.com/pc-chess-explorer.htm | HIARCS Chess Explorer (Windows)]] - [[http://www.hiarcs.com/hce-manual/pc/HIARCS%20Chess%20Explorer.html | User´s Manual]] | Yes with WB2UCI adapter (e.g.: Rebel, The Baron) | Yes | No | No | Yes, see remark | commercial program for Windows / Mac OS X including (Deep) HIARCS 14 engine; annotated / updated database; extensive game notation;  polylingual platform and many other features; author sells his former products by ChessBase GmbH, too - see details for [[http://www.chessbase-shop.com/en/products/deep_hiarcs_13 | Deep HIARCS 13]] and [[http://www.chessbase-shop.com/en/products/hiarcs_13 | HIARCS 13]] respectively [[http://www.chessbase-shop.com/en/products/hiarcs_13_book | Professional Openings Book]] - [[http://www.hiarcs.com/pc-chess-explorer-videos.htm | PC Chess Explorer (help videos)]] - [[http://www.hiarcs.net/forums | HIARCS forum]] - no firm plans to support WinBoard directly this year (Mark Uniacke) - GUI access to online content of 1,000 GB of chess endgame tablebases and GM+ opening books (Deep Edition) |+| [[http://hiarcs.com/mac-chess-explorer.htm | HIARCS Chess Explorer (Mac OS X)]] - [[http://hiarcs.com/pc-chess-explorer.htm | HIARCS Chess Explorer (Windows)]] - [[http://www.hiarcs.com/hce-manual/pc/HIARCS%20Chess%20Explorer.html | User´s Manual]] | Yes with WB2UCI adapter (e.g.: Rebel, The Baron) | Yes | No | No | Yes, see remark | commercial program for Windows / Mac OS X including (Deep) HIARCS 14 engine; annotated / updated database; extensive game notation;  polylingual platform and many other features; author sells his former products by ChessBase GmbH, too - [[http://www.hiarcs.com/pc-chess-explorer-videos.htm | PC Chess Explorer (help videos)]] - [[http://www.hiarcs.net/forums | HIARCS forum]] - no firm plans to support WinBoard directly this year (Mark Uniacke) - GUI access to online content of 1,000 GB of chess endgame tablebases and GM+ opening books (Deep Edition) |
| [[https://www.chessclub.com/download-software/dasher | ICC Dasher]] | Yes | Yes | No | No | ICC | Free; Dasher is a Windows program for connecting and playing on Internet Chess Club - it was tested with the engines Crafty 20.14, GNU Chess 5.07, Ruffian 1.0.1, Spike 1.2 and Zappa 1.1; default engine is Stockfish; main interface before was [[https://www.chessclub.com/download-software/blitzin | BlitzIn]] | | [[https://www.chessclub.com/download-software/dasher | ICC Dasher]] | Yes | Yes | No | No | ICC | Free; Dasher is a Windows program for connecting and playing on Internet Chess Club - it was tested with the engines Crafty 20.14, GNU Chess 5.07, Ruffian 1.0.1, Spike 1.2 and Zappa 1.1; default engine is Stockfish; main interface before was [[https://www.chessclub.com/download-software/blitzin | BlitzIn]] |
| [[http://jose-chess.sourceforge.net/| José]] - [[https://sourceforge.net/projects/jose-chess/files | File Release Page]]      | Yes | Yes | No | No | No | Free graphical database; Windows, Mac OS X and Linux - built-in engines: Spike and Toga | | [[http://jose-chess.sourceforge.net/| José]] - [[https://sourceforge.net/projects/jose-chess/files | File Release Page]]      | Yes | Yes | No | No | No | Free graphical database; Windows, Mac OS X and Linux - built-in engines: Spike and Toga |
Line 378: Line 378:
===== Programming Tools ===== ===== Programming Tools =====
-  *[[https://github.com/wdavid214/chess_bots | chess bots]] - Bots by wdavid214 integrating any UCI engine (Stockfish 8 by default) to play on different GUI interfaces by using visual feedback from predetermined board coordinates to detect opponent's last move 
  *[[https://github.com/tom0334/CombiChess | CombiChess]] by Tom Friederich - CombiChess a "chess engine" that combines 3 engines into one. It works by essentially asking 3 different engines what the they think is the best move for a given position, and then applying some logic to determine what move to actually do. After initial testing, it seems like it can easily beat the strongest of the 3 engines on its own. The rules that it uses are fairly simple: If 2 out of 3 engines give the same best move, then do that move and cancel work of the third - if all 3 engines say something else, listen to the 'Master engine'. The master engine is simply engine0 if all 3 engines agree, do that move.(actually, this never happens as work of the third engine is cancelled when the first two agree). For the best results, the 3 engines that are used need to be as equal in strength as possible. If one of the three is slightly better, it is best to use that one as master/engine0, since CombiChess listens to the master when all engines give a different result.   *[[https://github.com/tom0334/CombiChess | CombiChess]] by Tom Friederich - CombiChess a "chess engine" that combines 3 engines into one. It works by essentially asking 3 different engines what the they think is the best move for a given position, and then applying some logic to determine what move to actually do. After initial testing, it seems like it can easily beat the strongest of the 3 engines on its own. The rules that it uses are fairly simple: If 2 out of 3 engines give the same best move, then do that move and cancel work of the third - if all 3 engines say something else, listen to the 'Master engine'. The master engine is simply engine0 if all 3 engines agree, do that move.(actually, this never happens as work of the third engine is cancelled when the first two agree). For the best results, the 3 engines that are used need to be as equal in strength as possible. If one of the three is slightly better, it is best to use that one as master/engine0, since CombiChess listens to the master when all engines give a different result.
  *[[https://drive.google.com/uc?id=0B4DRZM_9EePtcmpuTkVnZ1RmdG8 | HorviG Universal Chess Bot]] - trial version by nagyzolie that is compatible with Stockfish; commercial edition has much more features (UCI-support). First launch the WinBoard GUI in edit mode, then start HorviG. Hold down the mouse button for one second on the upper left hand corner of the board, and it will put a pink dot on the screen. Then hold down the mouse button for one second on the bottom right hand corner of the board, and it will put another pink dot on the screen, and then it will start playing immediately if you are playing as white, or it will wait until the opponent moves if it plays as black. It worked in a casual game on Lichess,too.   *[[https://drive.google.com/uc?id=0B4DRZM_9EePtcmpuTkVnZ1RmdG8 | HorviG Universal Chess Bot]] - trial version by nagyzolie that is compatible with Stockfish; commercial edition has much more features (UCI-support). First launch the WinBoard GUI in edit mode, then start HorviG. Hold down the mouse button for one second on the upper left hand corner of the board, and it will put a pink dot on the screen. Then hold down the mouse button for one second on the bottom right hand corner of the board, and it will put another pink dot on the screen, and then it will start playing immediately if you are playing as white, or it will wait until the opponent moves if it plays as black. It worked in a casual game on Lichess,too.

Personal Tools