Rev 21 | Rev 32 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 21 | Rev 29 | ||
|---|---|---|---|
| Line 354... | Line 354... | ||
| 354 | wchar_t replystring_hint[64]; // chess engine reply string for a hint (positions come right after) |
354 | wchar_t replystring_hint[64]; // chess engine reply string for a hint (positions come right after) |
| 355 | int depth; // chess engine's currently allowed search depth |
355 | int depth; // chess engine's currently allowed search depth |
| 356 | int max_depth; // chess engine maximum search depth (used just for slider display) |
356 | int max_depth; // chess engine maximum search depth (used just for slider display) |
| 357 | int blunder_chances; // chess engine blunder chances, in percent |
357 | int blunder_chances; // chess engine blunder chances, in percent |
| 358 | int obstinacy_level; // chess engine obstinacy level, in number of moves |
358 | int obstinacy_level; // chess engine obstinacy level, in number of moves |
| - | 359 | bool is_expert_mode; // set to TRUE if this player claims to be an expert player (in the game settings) |
|
| 359 | wchar_t command_new[32]; // command to send the chess engine to tell him we are starting a new game |
360 | wchar_t command_new[32]; // command to send the chess engine to tell him we are starting a new game |
| 360 | wchar_t command_setboard[32]; // command to send the chess engine to tell him to set the table in a particular way (FEN notation) |
361 | wchar_t command_setboard[32]; // command to send the chess engine to tell him to set the table in a particular way (FEN notation) |
| 361 | wchar_t command_sd[32]; // command to send the chess engine to instruct it about its allowed depth (will be followed by numeric) |
362 | wchar_t command_sd[32]; // command to send the chess engine to instruct it about its allowed depth (will be followed by numeric) |
| 362 | wchar_t command_go[32]; // command to send the chess engine to make it play the current move |
363 | wchar_t command_go[32]; // command to send the chess engine to make it play the current move |
| 363 | wchar_t command_hint[32]; // command to send the chess engine to make it report a hint for the opponent |
364 | wchar_t command_hint[32]; // command to send the chess engine to make it report a hint for the opponent |