Package core

Source Code of core.Jogo

package core;

import java.util.*;

import ui.MainUI;

public class Jogo {

  /**
   * @param args
   */
  public static void main(String[] args) {
   
    MainUI mainUI = new MainUI();
    mainUI.setVisible(true);   
   
    int jogadores = 4;
    List<List> maos = new ArrayList<List>(4);
   
    boolean trunfoBaixo=true;
    Hashtable<Carta.Nome, Integer> hash = new Hashtable<Carta.Nome, Integer>();
   
    hash.put(Carta.Nome.DAMA, 2);
    hash.put(Carta.Nome.VALETE, 3);
    hash.put(Carta.Nome.REI, 4);
    hash.put(Carta.Nome.SETE, 10);
    hash.put(Carta.Nome.AS, 11);
   
    Baralho baralho = new Baralho();
    Collections.shuffle(baralho.getBaralho());
    for (int i=0; i<jogadores; i++){
      maos.add(baralho.dar(jogadores-i));
    }
   
    if(trunfoBaixo){
      System.out.println("TRUNFO: " + maos.get(jogadores-1).get(9) );
    }else{
      System.out.println("TRUNFO: " + maos.get(0).get(0) );
    }
   
    for (int i=0; i<maos.size();i++){
      System.out.println(maos.get(i));
    }
  }

}
TOP

Related Classes of core.Jogo

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.