Examples of AStarStrategy


Examples of br.com.ema.maze.character.strategy.AStarStrategy

  public Maze buildMaze(MazeFile mazeFile) {
    Maze maze = new Maze();
    mazeConfiguration = new MazeConfiguration();
   
    MazeCharacter character1 = new MazeCharacter(250);
    character1.setStrategy(new AStarStrategy(10000));
    character1.setColor(Color.CYAN);
    mazeConfiguration.getCharacters().put("ASTAR",character1);

    MazeCharacter character2 = new MazeCharacter(250);
    character2.setStrategy(new GreedyStrategy());
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.