Package ingsw.proj.cluedo.componenti

Examples of ingsw.proj.cluedo.componenti.CasellaPassaggioSegreto


    caselle[15][11] = new CasellaPorta(StanzeEnum.CORRIDOIO, new Point(11, 15), new Point(11,16));
    caselle[20][19] = new CasellaPorta(StanzeEnum.CANTINA, new Point(19, 20), new Point(18,20));
    caselle[20][18] = new CasellaPorta(StanzeEnum.CORRIDOIO, new Point(18, 20), new Point(19,20));
    // I Passaggi Segreti
    // TODO AGGIUNGERE I PASSAGGI SEGRETI
    caselle[0][0] = new CasellaPassaggioSegreto(StanzeEnum.CAMERA_LETTO, new Point(0, 0), new Point(23, 23));
    caselle[23][23] = new CasellaPassaggioSegreto(StanzeEnum.CANTINA, new Point(23, 23), new Point(0, 0));
    caselle[0][23] = new CasellaPassaggioSegreto(StanzeEnum.STUDIO, new Point(23, 0), new Point(0, 23));
    caselle[23][0] = new CasellaPassaggioSegreto(StanzeEnum.CUCINA, new Point(0, 23), new Point(23, 0));
    generaStanza(0, 4, 0, 5, StanzeEnum.CAMERA_LETTO);
    generaStanza(7, 11, 0, 5, StanzeEnum.SALA_GIOCHI);
    generaStanza(13, 17, 0, 6, StanzeEnum.BIBLIOTECA);
    generaStanza(20, 23, 0, 6, StanzeEnum.STUDIO);
    generaStanza(0, 6, 8, 15, StanzeEnum.SALA);
View Full Code Here


        if (VerificaDestinazione((CasellaPorta) partenza, destinazione))
          dest.add(destinazione);
      }

      if (partenza instanceof CasellaPassaggioSegreto) {
        CasellaPassaggioSegreto destinazione = (CasellaPassaggioSegreto) tabellone.getCasella(((CasellaPassaggioSegreto) partenza).getDestinazione());
        if (VerificaDestinazione((CasellaPassaggioSegreto) partenza, destinazione))
          dest.add(destinazione);
      }

      Point coord_attuali = tabellone.getPosizione(partenza);
View Full Code Here

  private Casella destinazione;

  @Before
  public void setUp() throws Exception {
    destinazione = new Casella(StanzeEnum.CAMERA_LETTO, new Point(3, 2));
    casella = new CasellaPassaggioSegreto(StanzeEnum.CAMERA_LETTO, new Point(4, 4), new Point(3,2));
  }
View Full Code Here

    assertTrue(casella instanceof Casella);
  }

  @Test(expected = NullPointerException.class)
  public void testCasellaPassaggioSegretoNull() {
    new CasellaPassaggioSegreto(null, new Point(2, 3), new Point(4,4));
    new CasellaPassaggioSegreto(StanzeEnum.CAMERA_LETTO, new Point(2, 3), null);
    new CasellaPassaggioSegreto(null, null, null);
  }
View Full Code Here

TOP

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

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.