/*
* MegaMek - Copyright (C) 2000-2004 Ben Mazur (bmazur@sev.org)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
package megamek.common.loaders;
import megamek.common.Engine;
import megamek.common.Entity;
import megamek.common.EquipmentType;
import megamek.common.LocationFullException;
import megamek.common.TechConstants;
import megamek.common.util.BuildingBlock;
public class BLKFile {
BuildingBlock dataFile;
public static final int FUSION = 0;
public static final int ICE = 1;
public static final int XL = 2;
public static final int XXL = 3; // don't ask
public static final int LIGHT = 4; // don't ask
public static final int COMPACT = 5; // don't ask
public static final int FUELCELL = 6;
public static final int FISSION = 7;
protected void loadEquipment(Entity t, String sName, int nLoc)
throws EntityLoadingException {
String[] saEquip = dataFile.getDataAsString(sName + " Equipment");
if (saEquip == null) {
return;
}
// prefix is "Clan " or "IS "
String prefix;
if (t.getTechLevel() == TechConstants.T_CLAN_TW) {
prefix = "Clan ";
} else {
prefix = "IS ";
}
if (saEquip[0] != null) {
for (int x = 0; x < saEquip.length; x++) {
String equipName = saEquip[x].trim();
EquipmentType etype = EquipmentType.get(equipName);
if (etype == null) {
// try w/ prefix
etype = EquipmentType.get(prefix + equipName);
}
if (etype != null) {
try {
t.addEquipment(etype, nLoc);
} catch (LocationFullException ex) {
throw new EntityLoadingException(ex.getMessage());
}
} else if (equipName != "0") {
t.addFailedEquipment(equipName);
}
}
}
}
public boolean isMine() {
if (dataFile.exists("blockversion")) {
return true;
}
return false;
}
static int translateEngineCode(int code) {
if (code == BLKFile.FUSION) {
return Engine.NORMAL_ENGINE;
} else if (code == BLKFile.ICE) {
return Engine.COMBUSTION_ENGINE;
} else if (code == BLKFile.XL) {
return Engine.XL_ENGINE;
} else if (code == BLKFile.LIGHT) {
return Engine.LIGHT_ENGINE;
} else if (code == BLKFile.XXL) {
return Engine.XXL_ENGINE;
} else if (code == BLKFile.COMPACT) {
return Engine.COMPACT_ENGINE;
} else if (code == BLKFile.FUELCELL) {
return Engine.FUEL_CELL;
} else if (code == BLKFile.FISSION) {
return Engine.FISSION;
} else {
return -1;
}
}
public void setTechLevel(Entity e) throws EntityLoadingException {
if (!dataFile.exists("year")) {
throw new EntityLoadingException("Could not find year block.");
}
e.setYear(dataFile.getDataAsInt("year")[0]);
if (!dataFile.exists("type")) {
throw new EntityLoadingException("Could not find type block.");
}
if (dataFile.getDataAsString("type")[0].equals("IS")) {
if (e.getYear() == 3025) {
e.setTechLevel(TechConstants.T_INTRO_BOXSET);
} else {
e.setTechLevel(TechConstants.T_IS_TW_NON_BOX);
}
} else if (dataFile.getDataAsString("type")[0].equals("IS Level 1")) {
e.setTechLevel(TechConstants.T_INTRO_BOXSET);
} else if (dataFile.getDataAsString("type")[0].equals("IS Level 2")) {
e.setTechLevel(TechConstants.T_IS_TW_NON_BOX);
} else if (dataFile.getDataAsString("type")[0].equals("IS Level 3")) {
e.setTechLevel(TechConstants.T_IS_ADVANCED);
} else if (dataFile.getDataAsString("type")[0].equals("IS Level 4")) {
e.setTechLevel(TechConstants.T_IS_EXPERIMENTAL);
} else if (dataFile.getDataAsString("type")[0].equals("IS Level 5")) {
e.setTechLevel(TechConstants.T_IS_UNOFFICIAL);
} else if (dataFile.getDataAsString("type")[0].equals("Clan")
|| dataFile.getDataAsString("type")[0].equals("Clan Level 2")) {
e.setTechLevel(TechConstants.T_CLAN_TW);
} else if (dataFile.getDataAsString("type")[0].equals("Clan Level 3")) {
e.setTechLevel(TechConstants.T_CLAN_ADVANCED);
} else if (dataFile.getDataAsString("type")[0].equals("Clan Level 4")) {
e.setTechLevel(TechConstants.T_CLAN_EXPERIMENTAL);
} else if (dataFile.getDataAsString("type")[0].equals("Clan Level 5")) {
e.setTechLevel(TechConstants.T_CLAN_UNOFFICIAL);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed (IS Chassis)")) {
e.setTechLevel(TechConstants.T_IS_ADVANCED);
e.setMixedTech(true);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed (IS Chassis) Experimental")) {
e.setTechLevel(TechConstants.T_IS_EXPERIMENTAL);
e.setMixedTech(true);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed (IS Chassis) Unofficial")) {
e.setTechLevel(TechConstants.T_IS_UNOFFICIAL);
e.setMixedTech(true);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed (Clan Chassis)")) {
e.setTechLevel(TechConstants.T_CLAN_ADVANCED);
e.setMixedTech(true);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed (Clan Chassis) Experimental")) {
e.setTechLevel(TechConstants.T_CLAN_EXPERIMENTAL);
e.setMixedTech(true);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed (Clan Chassis) Unofficial")) {
e.setTechLevel(TechConstants.T_CLAN_UNOFFICIAL);
e.setMixedTech(true);
} else if (dataFile.getDataAsString("type")[0].equals("Mixed")) {
throw new EntityLoadingException("Unsupported tech base: \"Mixed\" is no longer allowed by itself. You must specify \"Mixed (IS Chassis)\" or \"Mixed (Clan Chassis)\".");
} else {
throw new EntityLoadingException("Unsupported tech level: " + dataFile.getDataAsString("type")[0]);
}
}
}