System.out.println("You noob");
break;
default:
matcher = movePattern.matcher(i);
if (matcher.matches()) {
Position pi = new Position(
Integer.valueOf(matcher.group(1)),
Integer.valueOf(matcher.group(2)));
Position pf = new Position(
Integer.valueOf(matcher.group(3)),
Integer.valueOf(matcher.group(4)));
if (eq.getPieceAt(pi).getCouleur() != joueurCourrant) {
System.out.println("Cette pièce ne vous appartient pas");
continue;