From: Erik V. <ev...@us...> - 2009-12-18 20:04:02
|
Update of /cvsroot/rails/18xx/rails/util In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5814/rails/util Modified Files: MakeGameTileSets.java Log Message: Some updates Index: MakeGameTileSets.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/util/MakeGameTileSets.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** MakeGameTileSets.java 11 Dec 2008 20:12:30 -0000 1.7 --- MakeGameTileSets.java 18 Dec 2009 20:03:52 -0000 1.8 *************** *** 79,87 **** for (int i = 0; i < games.length; i++) { ! makeTileSet(games[i], tileMap); } ! } --- 79,87 ---- for (int i = 0; i < games.length; i++) { ! System.out.println("Preparing "+games[i]); makeTileSet(games[i], tileMap); } ! System.out.println("Done"); } *************** *** 89,92 **** --- 89,93 ---- throws ConfigurationException { + directories.clear(); directories.add("data/" + gameName); *************** *** 120,123 **** --- 121,125 ---- tileName = ((Element) tiles.item(i)).getAttribute("id"); + System.out.println("Tile "+tileName); // Save the tile in a Map so that we can check completeness // later. |