/**
* Says the asked color.
*/
private void sayAskedColor() {
ZonePile talon = game.getTalon();
CardUno topcard = (CardUno) talon.getTopCard();
String couleur = "";
if (topcard.getActiveColor() == CardUno.BLEU)
couleur = "bleu";
else if (topcard.getActiveColor() == CardUno.ROUGE)
couleur = "rouge";
else if (topcard.getActiveColor() == CardUno.VERT)
couleur = "vert";
else if (topcard.getActiveColor() == CardUno.JAUNE)
couleur = "jaune";
else if (topcard.getActiveColor() == CardUno.NOIR)
couleur = "noir";
SoundManager.playSound(new WaveSound("wav/gui/couleurdemande.wav",
false));
SoundManager.playSound(new WaveSound("wav/gui/" + couleur + ".wav",