|
@ -1,7 +1,25 @@ |
|
|
package pacmanGame; |
|
|
package pacmanGame; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.HashMap; |
|
|
|
|
|
|
|
|
public class VisualizerPlainTextUltra implements Visualizer { |
|
|
public class VisualizerPlainTextUltra implements Visualizer { |
|
|
|
|
|
|
|
|
|
|
|
public HashMap<String, String[]> sprites = new HashMap<String,String[]>(){{ |
|
|
|
|
|
|
|
|
|
|
|
this.put("empty", new String[] { |
|
|
|
|
|
" ", |
|
|
|
|
|
" " |
|
|
|
|
|
}); |
|
|
|
|
|
this.put("dot", new String[] { |
|
|
|
|
|
" . ", |
|
|
|
|
|
" " |
|
|
|
|
|
}); |
|
|
|
|
|
this.put("wall", new String[] { |
|
|
|
|
|
"|''|", |
|
|
|
|
|
"|__|" |
|
|
|
|
|
}); |
|
|
|
|
|
}}; |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public Object GetOutput() { |
|
|
public Object GetOutput() { |
|
|
// TODO Auto-generated method stub |
|
|
// TODO Auto-generated method stub |
|
|