|
@ -49,6 +49,7 @@ public class VisualizerPlainText implements Visualizer { |
|
|
Cell cell = map.GetCell(new Vector2(x, map.size.y - 1 - y)); |
|
|
Cell cell = map.GetCell(new Vector2(x, map.size.y - 1 - y)); |
|
|
boolean containsGhosts = false; |
|
|
boolean containsGhosts = false; |
|
|
boolean containsGhosts1 = false; |
|
|
boolean containsGhosts1 = false; |
|
|
|
|
|
boolean containsGhosts2 = false; |
|
|
boolean containsPlayer = false; |
|
|
boolean containsPlayer = false; |
|
|
for( int i = 0; i < gameManager.ghosts.length; i++) { |
|
|
for( int i = 0; i < gameManager.ghosts.length; i++) { |
|
|
if(gameManager.ghosts[i].position.equals(cell.pos)) { |
|
|
if(gameManager.ghosts[i].position.equals(cell.pos)) { |
|
@ -68,6 +69,9 @@ public class VisualizerPlainText implements Visualizer { |
|
|
else if (containsGhosts1) { |
|
|
else if (containsGhosts1) { |
|
|
output += ghostSprite1; |
|
|
output += ghostSprite1; |
|
|
} |
|
|
} |
|
|
|
|
|
else if (containsGhosts2) { |
|
|
|
|
|
output += ghostSprite2; |
|
|
|
|
|
} |
|
|
else if (sprites.containsKey(cell.type)) { |
|
|
else if (sprites.containsKey(cell.type)) { |
|
|
|
|
|
|
|
|
output += sprites.get(cell.type); |
|
|
output += sprites.get(cell.type); |
|
|