Examples of Land


Examples of net.sertik.genesia.entity.Land

    Random rand = new Random();

    for (int x = 0; x < numberLandsSqrt; x++) {
      for (int y = 0; y < numberLandsSqrt; y++) {
        Land land = new Land();
        land.setX(x);
        land.setY(y);
        land.setName("Judokan");
        land.setWorld(world);

        for (int lx = 0; lx < numberTilesSqrt; lx++) {
          for (int ly = 0; ly < numberTilesSqrt; ly++) {
            Tile tile = new Tile();
            tile.setX(lx);
            tile.setY(ly);
            tile.setLand(land);
            if (rand.nextDouble() < lusciousness) {
              tile.getObjects().add(new Scenery("tree"));
            } else {
              tile.getObjects().add(new Scenery("grass"));
            }

            land.getTiles().add(tile);
          }
        }

        // generate flag tile around center
        Tile tile = land.getTile(halfOfNumberTilesSqrt + (rand.nextInt(3) - 1),
                halfOfNumberTilesSqrt + (rand.nextInt(3) - 1));
        tile.getObjects().clear();
        tile.getObjects().add(new Scenery("flag"));

        world.getLands().add(land);
View Full Code Here
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.