Package map

Examples of map.Map


public class ShowMap extends AbstractCommand{

  @Override
  public String executeCommand(List<String> params) {
    Map actualMap = Game.getInstance().getMap();
    return actualMap.getCharacterMap();
  }
View Full Code Here


      Logger.get().addOrdinaryMessage("___________JARMU EL�RI A REJTEKHELYET___________");
      GameTimer.setNotifyEnabled(false);//turn off time.
      Logger.get().addOrdinaryMessage("[[[Kiindulohelyzet kialakitasa]]]");
     
      Logger.get().addOrdinaryMessage("[Map letrehozasa]");
      m= new Map();
      Game.getInstance().setMap(m); // be�ll�tjuk, hogy a Game-t�l k�rhess�k k�s�bb le ezt a map-et
     
      Logger.get().addOrdinaryMessage("[Bemeno utak letrehozasa a rejtekhelyhez]");     
      Route inRoute = new Route();
     
View Full Code Here

    clearScreen();
   
    Logger.get().addOrdinaryMessage("___________Init szekvencia!___________");
    GameTimer.setNotifyEnabled(false); //turn off Notifing.
    //create map... and give it the control
    m = new Map();
    Logger.get().finishLogging();
    returnToMainMenu();
  }
View Full Code Here

        for(int x = 0; x < charset[0][y].length; x++){
          tiles[y][x] = new Tile(charset[3][y][x], charset[2][y][x], charset[1][y][x], 0, false, false);
        }
      }
     
      maps[i] = new Map(name, tiles);
     
    }
   
    return maps;
  }
View Full Code Here

TOP

Related Classes of map.Map

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.