Rev 39 | Rev 42 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 39 | Rev 40 | ||
---|---|---|---|
Line 10... | Line 10... | ||
10 | # Basic program information # |
10 | # Basic program information # |
11 | ############################# |
11 | ############################# |
12 | [program] |
12 | [program] |
13 | 13 | ||
14 | ; program display name |
14 | ; program display name |
15 | name = Crafty v24.0 |
15 | name = "Crafty v24.0" |
16 | ; program executable |
16 | ; program executable |
17 | executable = crafty.exe |
17 | executable = "crafty.exe" |
18 | 18 | ||
19 | ######################### |
19 | ######################### |
20 | # Reply string patterns # |
20 | # Reply string patterns # |
21 | ######################### |
21 | ######################### |
22 | [reply strings] |
22 | [reply strings] |
Line 30... | Line 30... | ||
30 | # Engine commands # |
30 | # Engine commands # |
31 | ################### |
31 | ################### |
32 | [commands] |
32 | [commands] |
33 | 33 | ||
34 | ; command(s) to send to prepare the engine for a new game |
34 | ; command(s) to send to prepare the engine for a new game |
35 | new game = new |
35 | new game = "new" |
36 | ; command(s) to send to setup a board (followed by a raw FEN string) |
36 | ; command(s) to send to setup a board (followed by a raw FEN string) |
37 | setup table from fen = setboard %s |
37 | setup table from fen = "setboard %s" |
38 | ; command(s) to send to set the max search depth (followed by an integer value) |
38 | ; command(s) to send to set the max search depth (followed by an integer value) |
39 | search depth set = sd %d |
39 | search depth set = "sd %d" |
40 | ; command(s) to send to order the engine to start playing (when switching sides) |
40 | ; command(s) to send to order the engine to start playing (when switching sides) |
41 | play = go |
41 | play = "go" |
42 | ; command(s) to send to order the engine to analyze this position |
42 | ; command(s) to send to order the engine to analyze this position |
43 | hint = hint |
43 | hint = "hint" |
44 | ; command(s) to send to order the engine to discard its last move and play a |
44 | ; command(s) to send to order the engine to discard its last move and play a |
45 | ; specified move instead (followed by a SAN-encoded move string) |
45 | ; specified move instead (followed by a SAN-encoded move string) |
46 | force move = force %s |
46 | force move = "force %s" |
47 | ; command(s) to send to tell the chess engine to cleanup and quit. if unset, |
47 | ; command(s) to send to tell the chess engine to cleanup and quit. if unset, |
48 | ; its process will be killed, but at the risk of not saving important data. |
48 | ; its process will be killed, but at the risk of not saving important data. |
49 | quit = quit |
49 | quit = "quit" |