|
@ -4,7 +4,9 @@ import java.util.HashMap; |
|
|
|
|
|
|
|
|
public class VisualizerPlainTextUltra implements Visualizer { |
|
|
public class VisualizerPlainTextUltra implements Visualizer { |
|
|
|
|
|
|
|
|
public HashMap<String, String[]> sprites = new HashMap<String,String[]>(){{ |
|
|
|
|
|
|
|
|
GameManager gameManager = new GameManager(); |
|
|
|
|
|
|
|
|
|
|
|
public HashMap<String, String[]> sprites = new HashMap<String,String[]>(){{ |
|
|
|
|
|
|
|
|
this.put("empty", new String[] { |
|
|
this.put("empty", new String[] { |
|
|
" ", |
|
|
" ", |
|
@ -23,7 +25,7 @@ public HashMap<String, String[]> sprites = new HashMap<String,String[]>(){{ |
|
|
" 0O " |
|
|
" 0O " |
|
|
}); |
|
|
}); |
|
|
}}; |
|
|
}}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public final String[][] ghostSprites = { |
|
|
public final String[][] ghostSprites = { |
|
|
{ |
|
|
{ |
|
|
"/--\\", |
|
|
"/--\\", |
|
@ -71,7 +73,7 @@ public HashMap<String, String[]> sprites = new HashMap<String,String[]>(){{ |
|
|
"▄██▄", |
|
|
"▄██▄", |
|
|
"▀██▀" |
|
|
"▀██▀" |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public Object GetOutput() { |
|
|
public Object GetOutput() { |
|
|
// TODO Auto-generated method stub |
|
|
// TODO Auto-generated method stub |
|
|