BootChess (minimal chess engine)

Discussion of anything and everything relating to chess playing software and machines.

Moderators: hgm, Rebel, chrisw

Uri Blass
Posts: 10267
Joined: Thu Mar 09, 2006 12:37 am
Location: Tel-Aviv Israel

Re: BootChess (minimal chess engine)

Post by Uri Blass »

Dann Corbit wrote:
Xann wrote:Hi all,

A friend just let me know about a 487-byte chess "engine". Don't expect FIDE compliance or search for this size! It will move into check for example; consider it a variant.

Release announcement: http://www.pouet.net/prod.php?which=64962
Direct link: http://olivier.poudade.free.fr/arc/BootChess.zip

Fabien.
Truly astounding.

Your description of your program raises the question,
"How small can a chess engine be made which can correctly process every fide rule, including draw detection, underpromotion, e.p. capture, etc.?"
I guess that it cannot be done in under 1024 bytes.
I doubt there is a chess engine that includes draw detection for every chess position based on rule 5.2b(you can ask for draw detection for all the cases that are not covered by 5.2b)

For example it needs to detect a draw in the following position

[D]4kb2/8/8/p1p1p1p1/PpP1P1P1/1P6/2B5/1K6 w - - 1 1

relevant rule

The game is drawn when a position has arisen in which neither player can checkmate the opponent’s king with any series of legal moves. The game is said to end in a ‘dead position’. This immediately ends the game, provided that the move producing the position was in accordance with Article 3 and Articles 4.2 – 4.7.
mar
Posts: 2554
Joined: Fri Nov 26, 2010 2:00 pm
Location: Czech Republic
Full name: Martin Sedlak

Re: BootChess (minimal chess engine)

Post by mar »

nanochess wrote:And here it is Toledo Atomchess :)
Fantastic!! And without clever tricks :)
Congratulations :)
It has indeed search I also like the randomization so it never plays the same game twice...
Now this is truly incredible and so much better than BootChess, don't you feel pity now for the guys who wrote it?
mar
Posts: 2554
Joined: Fri Nov 26, 2010 2:00 pm
Location: Czech Republic
Full name: Martin Sedlak

Re: BootChess (minimal chess engine)

Post by mar »

I also found your 3d tanks entry for IOCCC :)
I've never seen anything better in 3.5k chars of C code.
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: BootChess (minimal chess engine)

Post by hgm »

bob wrote:Here is the smallest program that plays legal chess according to FIDE rules:

int main() {
printf("I offer a draw, accept? ");
scanf("%s", answer);
if (!strcmp(answer, "yes"))
exit 0;
printf("I resign\n");
}

:)
This has been discussed before, but resigning is not 'playing chess'. It is actually exactly the opposite, namely the way to express that you are not prepared to play chess (anymore).

So the program you give here can only be said to "not play chess, in a FIDE-compliant way". Complying with FIDE rules does not automatically imply you are 'playing chess'. The FIDE rules for example also require you to shake hands before a game. That doesn't mean that shaking hands is playing chess...
User avatar
nanochess
Posts: 64
Joined: Thu Feb 19, 2009 5:34 pm
Location: Mexico, Mexico

Re: BootChess (minimal chess engine)

Post by nanochess »

mar wrote:
nanochess wrote:And here it is Toledo Atomchess :)
Fantastic!! And without clever tricks :)
Congratulations :)
It has indeed search I also like the randomization so it never plays the same game twice...
Now this is truly incredible and so much better than BootChess, don't you feel pity now for the guys who wrote it?
Thanks! and errr, no, they didn't made enough effort. I would never put out a program with a bug so clear as putting its own king in check.
All good things are difficult to achieve.
Toledo Nanochess book http://www.amazon.com/Toledo-Nanochess- ... 1304864375
User avatar
nanochess
Posts: 64
Joined: Thu Feb 19, 2009 5:34 pm
Location: Mexico, Mexico

Re: BootChess (minimal chess engine)

Post by nanochess »

mar wrote:I also found your 3d tanks entry for IOCCC :)
I've never seen anything better in 3.5k chars of C code.
I'm glad you liked it :) Thanks!

The good old times :D
All good things are difficult to achieve.
Toledo Nanochess book http://www.amazon.com/Toledo-Nanochess- ... 1304864375
Jesse Gersenson
Posts: 593
Joined: Sat Aug 20, 2011 9:43 am

Re: BootChess (minimal chess engine)

Post by Jesse Gersenson »

bob wrote:
Here is the smallest program that plays legal chess according to FIDE rules:

int main() {
printf("I offer a draw, accept? ");
scanf("%s", answer);
if (!strcmp(answer, "yes"))
exit 0;
printf("I resign\n");
}

:)
That's funny Bob. But it's not legal to offer a draw before you've moved. So, you'd need to do something like, play 1.e4, then offer the draw.

Has anyone gotten BootChess to run in Linux? I installed DosBox and entering "dosbox" from ~/bootchess gives me a window showing the board but I can't enter moves.
Norbert Raimund Leisner
Posts: 1643
Joined: Tue May 20, 2008 4:57 pm
Location: Augsburg - Germany

Re: BootChess (minimal chess engine)

Post by Norbert Raimund Leisner »

Is an implementation afterwards of the WinBoard or/and UCI-protocol possible for BootChess Engine?

Another legacy software, MicroChess 1976, runs nowadays with WinBoard-GUI, cf. the German website http://www.andreadrian.de/schach/index.html

Best wishes,
Norbert
Robert Pope
Posts: 558
Joined: Sat Mar 25, 2006 8:27 pm

Re: BootChess (minimal chess engine)

Post by Robert Pope »

Then how about

Code: Select all

int main() { 
} 
FIDE rules don't actually require you to make any moves before your flag falls, do they? :)
User avatar
hgm
Posts: 27788
Joined: Fri Mar 10, 2006 10:06 am
Location: Amsterdam
Full name: H G Muller

Re: BootChess (minimal chess engine)

Post by hgm »

Well, as mentioned before, watching a clock tick, resigning, not showing up at your game... None of that is playing Chess.

The empty program (zero characters) also complies with FIDE rules. Because FIDE rules do not compel anyone to play Chess. You can happily stay away from any Chess event, and FIDE will be perfectly happy.