TimHanewich.Chess 0.7.0

dotnet add package TimHanewich.Chess --version 0.7.0
NuGet\Install-Package TimHanewich.Chess -Version 0.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TimHanewich.Chess" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TimHanewich.Chess --version 0.7.0
#r "nuget: TimHanewich.Chess, 0.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TimHanewich.Chess as a Cake Addin
#addin nuget:?package=TimHanewich.Chess&version=0.7.0

// Install TimHanewich.Chess as a Cake Tool
#tool nuget:?package=TimHanewich.Chess&version=0.7.0

TimHanewich.Chess

This repository contains a .NET library for evaluating positions in the game of Chess and a .NET console app that is capable of playing a full game of Chess.

Playing A Game

To use the engine, run the console app in the PlayEngine folder with dotnet run.

Examples of Games/Positions Played By The Bot

  1. Winning from strong position - 0 avg centipawn loss
  2. Winning full game vs Stockfish Lvl 2 with White - 19 avg centipawn loss

Usage Basics

To load a position, supply the FEN of the position like so:

BoardPosition bp = new BoardPosition("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1");

The BoardPosition class will automatically track which position is to move next via the ToMove property. To generate a list of available moves for the color that is to move next:

Move[] PossibleMoves = bp.AvailableMoves();

The Move class above is very simplistic. For most moves (besides castling), it only contains a FromPosition and ToPosition, representing the piece on the FromPosition moving to the ToPosition.

To generate the move in algebraic notation (for example "Nf6", "Ke2", "O-O", etc.):

foreach (Move m in PossibleMoves)
{
    Console.WriteLine(m.ToAlgebraicNotation(bp));
}

Note that you must supply the BoardPosition instance that the move originated from (it must know which piece is being moved from the FromPosition property). Also, if you do not specify a second parameter in the ToAlgebraicNotation method, the piece type to promote to if it is a pawn promotion, promotion to a queen will be assumed (for example, "b8=Q").

Using the Play Engine

You can use console app location in the PlayEngine folder to play a full game of chess.

Supplying an opening move tree

The PlayEngine console app will require you to supply it with a path to a JSON-serialized opening move tree. You can download an opening move tree that will work below: |Name|Notes|Size| |-|-|-| |Move Tree 1|30,000 games at a depth of ~40 opening moves|130 MB| |Move Tree 2|1,000,000 games at a depth of ~50 opening moves|844 MB|

After downloading a move tree from the source above, set the MoveNodeTreePath variable to the path of your move tree file.

For example:

string MoveNodeTreePath = @"C:\Users\tahan\Downloads\MoveTree2.json";

Known Issues

  • The bot plays very slowly
    • I am aware of this. This is because the code in this library has not been optimized. Even after complete optimization, the bot would likely still play very slowly. Ideally, there are other designs/board representations that should have been adopted during development. It is what is is for now!
  • En Passant is not "known" by the bot
    • En Passant moves will not be generated as potential moves
    • The En Passant portion of FEN will not be included upon generation
  • In specific scenarios, castling will be listed as an available move, but in reality, it is not legal.
    • This occurs in positions where the King must "cross the path" of an attacking piece in order to castle.
    • For example, from position 2r1k2r/p4ppp/3Qpq2/8/8/1P6/P4PPP/R2R2K1 b k - 5 21
    • In the above position, King-side castling will still be listed as an available move although castling is not legal.
  • The engine will generate "next moves" even if checkmate has already been reached.
    • Obviously the game is over if the current position is a checkmate. In spite of this, the BoardPostion class will still generate potential next moves.

To-Do

  • In the AvailableMoves method in the Piece class, there are optimizations to be made (simplifications) for detecting pawn promotion, both for moving 1 move ahead and taking left or right. The code that is used right now is probably not optimal and can be simplified.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.7.0 239 4/23/2023
0.6.0 183 3/13/2023
0.5.0 484 1/27/2022
0.4.0 400 1/20/2022
0.3.0 252 12/21/2021
0.2.0 261 12/20/2021
0.1.0 258 12/14/2021