e.g.
[map]
level = +++++
+-----+
+-----+
+++++
I was using configparser to turn this into a list of rows:
[source lang="python"]self.map = parser.get("map","level").split("\n")[/source]
But I'm not sure where to go from there :/ What I want to do is have each symbol represent a tile (grass = - etc.) and be displayed on the screen.
Any suggestions would be greatly appreciated
Edited by WallaceD, 28 July 2012 - 01:31 AM.






