Poker.java 8.35 KB
Newer Older
Joel Florentin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import java.util.Arrays;
import java.util.HashMap;

public class Poker{
    final static int MANO_CAPACIDAD = 5;
    final static int PALO_CAPACIDAD = Carta.valores.length;//13
    static int nroJugadas = 0;
    static HashMap<String, Integer> cadaJugada = new HashMap<>();
    public static void main(String[] args) {
        Carta [] mazo = new Carta[PALO_CAPACIDAD * Color.values().length];
        int c = 0;
        for (Color color : Color.values()) {
            for (int i = 1; i <= PALO_CAPACIDAD; i++) {
                mazo[c] = new Carta(i,color);
                c++;
            }
        }
        Carta [] mano = new Carta[MANO_CAPACIDAD];
        jugadasPosibles(0,0,mazo,mano);
        System.out.println(nroJugadas);
        cadaJugada.entrySet().forEach(k -> System.out.printf("%s : %.5f%%\n",k.getKey(),100*k.getValue()/(float)nroJugadas));
Joel Florentin committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
        String manoInput = System.console().readLine("Ingrese mano separado por como. Color: S,C,H,D. Numero: del A al K. Ejemplo AS,KH,3C,5D\n");
        String [] cartasMano =manoInput.split(",");
        Carta [] mano1 = new Carta[MANO_CAPACIDAD];
        char color,numero;
        Color c1=Color.S;
        int v1=1,k=0;
        for (String ca : cartasMano) {
            numero = ca.charAt(0);
            color = ca.charAt(1);
            switch (color) {
                case 'S':
                    c1 = Color.S;
                    break;
                case 'C':
                    c1 = Color.C;
                    break;
                case 'H':
                    c1 = Color.H;
                    break;
                case 'D':
                    c1 = Color.D;
                    break;
            
            }
            for (int j = 0; j < Carta.valores.length; j++) {
                if(Carta.valores[j].charAt(0)==numero){
                    v1 = j+1;
                    break;
                }
            }
            mano1[k] = new Carta(v1,c1);
            k++;
        }
        System.out.println("La jugada es....");
        for (Carta carta : mano1) {
            System.out.printf("%s ",carta);
        }
        System.out.println();
        System.out.println(comprobarJugada(mano1));
        
        
        
Joel Florentin committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    }

    public static String comprobarJugada(Carta [] mano) {
        Carta [] mano1 = mano.clone();
        Arrays.sort(mano1);
        if (esEscaleraColor(mano1)) return "Escalera color"; 
        if (esPoker(mano1)) return "Poker"; 
        if (esFull(mano1)) return "Full"; 
        if (esColor(mano1)) return "Color"; 
        if (esEscalera(mano1)) return "Escalera";
        if (esTrio(mano1)) return "Trio";
        if (esDoblePareja(mano1)) return "Doble Pareja";
        if (esDoble(mano1)) return "Doble";
        
        return "Carta Alta";
    }

    public static boolean esPoker(Carta[] mano) {
        
        return mano[0].getValor()==mano[mano.length-2].getValor()||mano[1].getValor()==mano[mano.length-1].getValor();
    }

    public static boolean esFull(Carta[] mano) {
        int conta = 0;
        int contb = 0;
        int i;
        for (i = 0; i < mano.length-1; i++) {
            if(mano[i].getValor() == mano[i+1].getValor()){
                conta++;
            }
            else{
                break;    
            }
        }
        for (i=i+1 ;i < mano.length-1; i++) {
            if(mano[i].getValor() == mano[i+1].getValor()){
                contb++;
            }
            else{
                break;    
            }
        }
        

        return conta*contb==2;
    }

    public static boolean esTrio(Carta[] mano) {
Joel Florentin committed
112
        int conta = 0,max=0;
Joel Florentin committed
113 114 115 116 117 118
        int i;
        for (i = 0; i < mano.length-1; i++) {
            if(mano[i].getValor() == mano[i+1].getValor()){
                conta++;
            }
            else{
Joel Florentin committed
119
                conta = 0;    
Joel Florentin committed
120
            }
Joel Florentin committed
121
            if(conta>max)max=conta;
Joel Florentin committed
122
        }
Joel Florentin committed
123
        return (max)==2;
Joel Florentin committed
124 125 126
    }
    
    public static boolean esDoblePareja(Carta[] mano) {
Joel Florentin committed
127 128
        int conta = 0,maxa=0;
        int contb = 0, maxb=0;
Joel Florentin committed
129 130 131 132 133 134
        int i;
        for (i = 0; i < mano.length-1; i++) {
            if(mano[i].getValor() == mano[i+1].getValor()){
                conta++;
            }
            else{
Joel Florentin committed
135
                conta = 0;   
Joel Florentin committed
136
            }
Joel Florentin committed
137 138
            if(conta>maxa)maxa=conta;
            if(maxa==1) break;
Joel Florentin committed
139 140 141 142 143 144
        }
        for (i=i+1 ;i < mano.length-1; i++) {
            if(mano[i].getValor() == mano[i+1].getValor()){
                contb++;
            }
            else{
Joel Florentin committed
145
                contb = 0;    
Joel Florentin committed
146
            }
Joel Florentin committed
147 148
            if(contb>maxb)maxb=contb;

Joel Florentin committed
149 150 151
        }
        

Joel Florentin committed
152
        return maxa==maxb&&maxb==1;
Joel Florentin committed
153 154 155
    }
    
    public static boolean esDoble(Carta[] mano) {
Joel Florentin committed
156
        int conta = 0,max=0;
Joel Florentin committed
157 158 159 160 161 162
        int i;
        for (i = 0; i < mano.length-1; i++) {
            if(mano[i].getValor() == mano[i+1].getValor()){
                conta++;
            }
            else{
Joel Florentin committed
163
                conta = 0;    
Joel Florentin committed
164
            }
Joel Florentin committed
165
            if(conta>max)max=conta;
Joel Florentin committed
166
        }
Joel Florentin committed
167
        return (max)==1;
Joel Florentin committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
    }

    public static boolean esColor(Carta[] mano) {
        for (int i = 0; i < mano.length-1; i++) {
            if(mano[i].getColor() != mano[i+1].getColor()) return false;
        }
        return true;
    }
    
    public static boolean esEscalera(Carta[] mano) {
        int cont=0;
        for (int i = 1; i < mano.length-1; i++) {
            if(mano[i+1].getValor()==mano[i].getValor()+1){
                cont++;
            }
            else{
                break;
            }
        }
        return cont==3&&(mano[0].getValor()+12==mano[mano.length-1].getValor()||mano[1].getValor()==mano[0].getValor()+1);
        
    }
    
    
    public static boolean esEscaleraColor(Carta[] mano) {
        for (int i = 1; i < mano.length-1; i++) {
            if(mano[i+1].getColor()!= mano[i].getColor()){
                return false;
            }
        }
        return mano[mano.length-1].getValor()-mano[1].getValor()==3&&(mano[0].esElSiguienteDe(mano[mano.length-1])||mano[1].esElSiguienteDe(mano[0]));
    }



    public static void jugadasPosibles(int cartaNro, int posicion, Carta [] mazo, Carta [] mano) {
        if(posicion < MANO_CAPACIDAD && cartaNro <= (PALO_CAPACIDAD * Color.values().length - (MANO_CAPACIDAD-posicion))){
            mano[posicion] = mazo[cartaNro];
            if (posicion==MANO_CAPACIDAD-1) {
                //comprobar_jugada
                //System.out.printf("%d %d\n",cartaNro,posicion);
                String tipo = comprobarJugada(mano);
                int cant = cadaJugada.get(tipo)==null?0:cadaJugada.get(tipo);
                cadaJugada.put(tipo, cant+1);  
                nroJugadas++;
            }
            jugadasPosibles(cartaNro+1, posicion+1, mazo, mano);//siguiente carta en la siguiente posicion
            jugadasPosibles(cartaNro+1, posicion, mazo, mano);//siguiente carta en esta posicion
        }
    }


}

class Carta implements Comparable<Carta>{
    private int valor;//del 1 al 13
    private Color color;
    public final static String [] valores = {"A","2","3","4","5","6","7","8","9","T","J","Q","K"};

    public Carta(int valor, Color color) {
        this.valor = valor;
        this.color = color;
    }

    public Color getColor() {
        return color;
    }
    public int getValor() {
        return valor;
    }
    public void setColor(Color color) {
        this.color = color;
    }
    public void setValor(int valor) {
        this.valor = valor;
    }

    /**
     * Comprueba si la carta actual es la siguiente carta con respecto a la otra carta
     * @param otro la carta anterior supuestamente
     * @return
     */
    public boolean esElSiguienteDe(Carta otro){
        if(otro.getColor()!=this.getColor()) return false;
        if(otro.valor+1==valor || (otro.valor==13&&this.valor==1)) return true;
        return false;
    }

    @Override
    public String toString() {
        return valores[valor-1] + this.color;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        Carta other = (Carta) obj;
        if (color != other.color)
            return false;
        if (valor != other.valor)
            return false;
        return true;
    }

    @Override
    public int compareTo(Carta o) {
        return this.getValor() - o.getValor();

    }


}


enum Color{
    S,C,H,D;
    
    

}