Package ingsw.proj.cluedo.componenti

Examples of ingsw.proj.cluedo.componenti.Congettura


      ArrayList<String> note = new ArrayList<String>();
      while (noteIt.hasNext())
        note.add(noteIt.next());
      String[] noteArray = (String[]) note.toArray(new String[note.size()]);
      ui.removeListener(this);
      controller.verificaIpotesi(new Congettura(evento.getIpotesi(), evento.getAccusante()));
      ui.mostraAppunti(giocatoreAttuale, noteArray);
      ui.refreshTabellone(controller.getTabelloneRidotto());
      ui.addListener(new myAzioneSceltaListener());
      Iterator<AzioniEnum> azioniIt = controller.getPossibiliAzioni(giocatoreAttuale);
      ArrayList<AzioniEnum> azioni = new ArrayList<AzioniEnum>();
View Full Code Here


  private class myAccusaFormulataListener implements AccusaFormulataListener {
    @Override
    public void notificaAccusaFormulata(AccusaFormulataEvent evento) {
      boolean result;
      ui.removeListener(this);
      result = controller.verificaAccusa(new Congettura(evento.getAccusa(), evento.getAccusante()));
      ui.refreshTabellone(controller.getTabelloneRidotto());
      if (result)
        ui.notificaGiocoVinto(giocatoreAttuale);
      else {
        ui.notificaGameOver(giocatoreAttuale);
View Full Code Here

  @Before
  public void setUp() throws Exception {
    accusato = "Luigi";
    arma = ArmiEnum.FIONDA;
    cong = new CongetturaRidotta(accusato, arma);
    cong2 = new Congettura(cong, accusato);
  }
View Full Code Here

    assertNotNull(cong2);
  }

  @Test(expected = NullPointerException.class)
  public void parametroNull() {
    new Congettura(cong, null);
    new Congettura(null, null);
    new Congettura(cong, " ");
  }
View Full Code Here

TOP

Related Classes of ingsw.proj.cluedo.componenti.Congettura

Copyright © 2018 www.massapicom. 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.