Split Display (gui) and Maze (work), prepare for another model
- prepare for a shorter storage model without any resolution
This commit is contained in:
@@ -89,7 +89,8 @@ public class LabyMap implements WallsProvider
|
||||
}
|
||||
return laby;
|
||||
}
|
||||
|
||||
// FIXME UGLY and not usable, need a better mapping, and not be a specialized toString...
|
||||
@Deprecated
|
||||
public String toShortString()
|
||||
{
|
||||
int entryX = -1;
|
||||
@@ -110,11 +111,12 @@ public class LabyMap implements WallsProvider
|
||||
{
|
||||
for (int x = 0; x < tileMap.length; x++)
|
||||
{
|
||||
laby += "" + tileMap[x][y].getChar();
|
||||
laby += "" + BrickTextMapping.getChar(tileMap[x][y]);
|
||||
}
|
||||
laby += "\n";
|
||||
}
|
||||
return laby;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user