Indentation fixes and comment cleanup

This commit is contained in:
Olof Larsson 2011-10-22 17:18:44 +02:00
parent a78a4dff98
commit 75cd9b5e18

View File

@ -199,34 +199,53 @@ public class Board
int chrIdx = 0; int chrIdx = 0;
// For each row // For each row
for (int dx = 0; dx < height; dx++) { for (int dx = 0; dx < height; dx++)
{
// Draw and add that row // Draw and add that row
String row = ""; String row = "";
for (int dz = 0; dz > -width; dz--) { for (int dz = 0; dz > -width; dz--)
if(dz == -(halfWidth) && dx == halfHeight) { {
if(dz == -(halfWidth) && dx == halfHeight)
{
row += ChatColor.AQUA+"+"; row += ChatColor.AQUA+"+";
} else { }
else
{
FLocation flocationHere = topLeft.getRelative(dx, dz); FLocation flocationHere = topLeft.getRelative(dx, dz);
Faction factionHere = getFactionAt(flocationHere); Faction factionHere = getFactionAt(flocationHere);
Relation relation = faction.getRelationTo(factionHere); Relation relation = faction.getRelationTo(factionHere);
if (factionHere.isNone()) { if (factionHere.isNone())
{
row += ChatColor.GRAY+"-"; row += ChatColor.GRAY+"-";
} else if (factionHere.isSafeZone()) { }
else if (factionHere.isSafeZone())
{
row += Conf.colorPeaceful+"+"; row += Conf.colorPeaceful+"+";
} else if (factionHere.isWarZone()) { }
else if (factionHere.isWarZone())
{
row += ChatColor.DARK_RED+"+"; row += ChatColor.DARK_RED+"+";
} else if ( }
else if
(
factionHere == faction factionHere == faction
|| factionHere == factionLoc ||
|| relation.isAtLeast(Relation.ALLY) factionHere == factionLoc
|| (Conf.showNeutralFactionsOnMap && relation.equals(Relation.NEUTRAL)) ||
|| (Conf.showEnemyFactionsOnMap && relation.equals(Relation.ENEMY)) relation.isAtLeast(Relation.ALLY)
) { ||
(Conf.showNeutralFactionsOnMap && relation.equals(Relation.NEUTRAL))
||
(Conf.showEnemyFactionsOnMap && relation.equals(Relation.ENEMY))
)
{
if (!fList.containsKey(factionHere.getTag())) if (!fList.containsKey(factionHere.getTag()))
fList.put(factionHere.getTag(), Conf.mapKeyChrs[chrIdx++]); fList.put(factionHere.getTag(), Conf.mapKeyChrs[chrIdx++]);
char tag = fList.get(factionHere.getTag()); char tag = fList.get(factionHere.getTag());
row += factionHere.getColorTo(faction) + "" + tag; row += factionHere.getColorTo(faction) + "" + tag;
} else { }
else
{
row += ChatColor.GRAY+"-"; row += ChatColor.GRAY+"-";
} }
} }
@ -261,17 +280,20 @@ public class Board
// Persistance // Persistance
// -------------------------------------------- // // -------------------------------------------- //
public static Map<String,Map<String,String>> dumpAsSaveFormat() { public static Map<String,Map<String,String>> dumpAsSaveFormat()
{
Map<String,Map<String,String>> worldCoordIds = new HashMap<String,Map<String,String>>(); Map<String,Map<String,String>> worldCoordIds = new HashMap<String,Map<String,String>>();
String worldName, coords; String worldName, coords;
String id; String id;
for (Entry<FLocation, String> entry : flocationIds.entrySet()) { for (Entry<FLocation, String> entry : flocationIds.entrySet())
{
worldName = entry.getKey().getWorldName(); worldName = entry.getKey().getWorldName();
coords = entry.getKey().getCoordString(); coords = entry.getKey().getCoordString();
id = entry.getValue(); id = entry.getValue();
if ( ! worldCoordIds.containsKey(worldName)) { if ( ! worldCoordIds.containsKey(worldName))
{
worldCoordIds.put(worldName, new TreeMap<String,String>()); worldCoordIds.put(worldName, new TreeMap<String,String>());
} }
@ -348,50 +370,6 @@ public class Board
return true; return true;
} }
/*private static boolean loadOld() {
File folderBoard = new File(P.p.getDataFolder(), "board");
if ( ! folderBoard.isDirectory())
return false;
P.log("Board file doesn't exist, attempting to load old pre-1.1 data.");
String ext = ".json";
class jsonFileFilter implements FileFilter {
@Override
public boolean accept(File file) {
return (file.getName().toLowerCase().endsWith(".json") && file.isFile());
}
}
File[] jsonFiles = folderBoard.listFiles(new jsonFileFilter());
for (File jsonFile : jsonFiles) {
// Extract the name from the filename. The name is filename minus ".json"
String name = jsonFile.getName();
name = name.substring(0, name.length() - ext.length());
try {
JsonParser parser = new JsonParser();
JsonObject json = (JsonObject) parser.parse(DiscUtil.read(jsonFile));
JsonArray coords = json.getAsJsonArray("coordFactionIds");
Iterator<JsonElement> coordSet = coords.iterator();
while(coordSet.hasNext()) {
JsonArray coordDat = (JsonArray) coordSet.next();
JsonObject coord = coordDat.get(0).getAsJsonObject();
int coordX = coord.get("x").getAsInt();
int coordZ = coord.get("z").getAsInt();
int factionId = coordDat.get(1).getAsInt();
flocationIds.put(new FLocation(name, coordX, coordZ), factionId);
}
P.log("loaded pre-1.1 board "+name);
} catch (Exception e) {
e.printStackTrace();
P.log(Level.WARNING, "failed to load board "+name);
}
}
return true;
}*/
} }