Chess playing computer program.

Sort:
DandyLion

Hi All,

Has anyone here written a chess playing computer program?

wingtzun

No!

Nytik

I'm pretty sure someone has. They aren't too difficult to make, unless you want to make a powerful one. There are websites all over that will assist you, if you plan on doing it yourself.

super12345

I haven't, but if you are trying to make one I would take a look at Crafty because it is open source so maybe you can see some of the ideas. I'm no computer expert though.

JohnAlfredAdare

Do you know where I can get a copy of the Crafty Source Code, please?

AMcHarg

I made one a while ago using VB but it was shit at playing Chess! Cool

Tenna

I wrote one a few years ago with Java for a class project but the assignment was just to make the game, not the AI, so it wasn't very good...

super12345

Check here http://www.craftychess.com/

JohnAlfredAdare

Thanks for the 'Crafty' link. Sure is a lot of code there!

I'm also interested in the 'weak' programs - that's more like what I'd go through if I get as far as writing something.

Are there any good websites explaining how to write a simple chess playing program? With examples of code, maybe in C or BASIC

peperoniebabie

I've thought about doing the same thing, but with Python. I think two of the important things you have to consider is that you must link your engine with an openings database and an endgame tablebase for it to be at least competitive. That leaves the middlegame!

In evaluating a middlegame position, you'd have to decide what sort of search algorithm to use - brute force? Not efficient enough. Minimax algorithm? This is a good bet, but it's still not so efficient. (look 'er up if you haven't heard of it) Crafty appears to consider first all checks, captures, and promotions. So the engine should consider any tactics first, then look at positional moves. I'll look into Crafty's source a bit more to see how the moves are evaluated.

The Crafty source code appears to be written in C++, that may help you a bit.

EDIT: found in the "evaluate" file -

"Evaluate() is used to evaluate the chess board.  Broadly, it addresses four (4) distinct areas: 

(1) material score which is simply a summing of piece types multiplied by piece values; 

(2) pawn scoring which considers placement of pawns and also evaluates passed pawns, particularly in endgame situations; 

(3) piece scoring which evaluates the placement of each piece as well as things like piece mobility; 

(4) king safety which considers the pawn shelter around the king along with material present to facilitate an attack. "