vote up 4 vote down star
2

I'm looking for a decent .Net chess engine. If there is a good chess existing one, any recommendation as to a good candidate to port to .Net?

flag

76% accept rate

5 Answers

vote up 4 vote down check

Not an engine as such, but Valil.Chess is a good .NET chess game (with source code available - so you can get to the "engine" of the game) which won the Nov 2004 Submission Prize at Code Project.

There is also SharpChess, which is also a complete chess game, written in C#.

As for general Chess engines that could be converted to .NET, there are many available, and depending upon the challenge, you could pick and choose from lots of engines to implement within .NET. A good starting point list is here and also shows the Elo Rating of each engine. Even a re-implementing of the server-side of the FICS would certainly represent a challenge! :)

link|flag
vote up 3 vote down

I write a Computer Chess Blog that takes you through all the steps of writing a chess engine in C# from scratch, it includes a computer chess links section and a chess game starter kit.

http://www.chessbin.com

Adam Berent

link|flag
vote up 1 vote down

The SharpChess Engine code (C#) is available here:

Search Engine Source Code

link|flag
vote up 1 vote down

You could try SharpChess or ChEngine.

link|flag
vote up 1 vote down

I also recommend SharpChess as a starting point for .Net. When I developed my engines (in VB, Delphi, C#) I constantly referred to Crafty by Prof Dr Robert Hyatt. (Looking at progressive versions of Crafty is a delight.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.