https://github.com/extrabb/extrachess
A C# Chess Engine
https://github.com/extrabb/extrachess
Last synced: 27 days ago
JSON representation
A C# Chess Engine
- Host: GitHub
- URL: https://github.com/extrabb/extrachess
- Owner: ExtraBB
- License: mit
- Created: 2021-06-23T19:18:10.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-17T11:49:43.000Z (almost 4 years ago)
- Last Synced: 2025-03-28T19:45:37.619Z (about 1 month ago)
- Language: C#
- Size: 230 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ExtraChess
ExtraChess is a UCI-based .NET Core Chess engine. It uses .NET6 as backing framework.
## Engine
The Engine is located in the `ExtraChess` project. It uses [Bitboards](https://www.chessprogramming.org/Bitboards) to generate moves. Interfacing with the engine is done with the [UCI](http://wbec-ridderkerk.nl/html/UCIProtocol.html) protocol.Start from Visual Studio or run using the `dotnet` CLI:
```
dotnet run --project ./ExtraChess/ExtraChess.csproj
```## UI
Included in the solution is the `ExtraChessUI` project. It is a simple chess UI that allows you to play a game of chess using multiple engines. Just place the engine in the same folder as the executable and it will present it as option in the UI.Start from Visual Studio or run the UI using the `dotnet` CLI:
```
dotnet build
dotnet run --project ./ExtraChessUI/ExtraChessUI.csproj
```## Tests
Unit tests for the engine can be found in the `ExtraChessTests` project.Run from the TestExplorer in Visual Studio or using the `dotnet` CLI:
```
dotnet test
```## Prerequisites
- Make sure you have .NET 6 installed.
- For running from Visual Studio, install the Visual Studio 2022 Preview.## Goals
- Create a playable game of chess vs computer
- Create an AI that plays around 1500 level