| 374 break; |
374 break; |
| 375 case INVALID_MOVE_SYNTAX: |
375 case INVALID_MOVE_SYNTAX: |
| 376 printw("Can't interpret move - please use algebraic notation."); |
376 printw("Can't interpret move - please use algebraic notation."); |
| 377 break; |
377 break; |
| 378 case RULES_VIOLATED: |
378 case RULES_VIOLATED: |
| 379 printw("Move does not comply chess rules."); |
379 printw("Move does not comply with chess rules."); |
| 380 break; |
380 break; |
| 381 case KING_MOVES_INTO_CHECK: |
381 case KING_MOVES_INTO_CHECK: |
| 382 printw("Can't move the king into a check position."); |
382 printw("Can't move the king into a check position."); |
| 383 break; |
383 break; |
| 384 case MISSING_CHECK: |
384 case MISSING_CHECK: |