You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
302 lines
7.4 KiB
302 lines
7.4 KiB
3 years ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
|
||
|
package engine.objects;
|
||
|
|
||
|
import ch.claude_martin.enumbitset.EnumBitSet;
|
||
|
import engine.Enum;
|
||
|
import engine.gameManager.DbManager;
|
||
|
import org.pmw.tinylog.Logger;
|
||
|
|
||
|
import java.sql.ResultSet;
|
||
|
import java.sql.SQLException;
|
||
|
import java.util.ArrayList;
|
||
|
|
||
|
public class Contract extends AbstractGameObject {
|
||
|
|
||
|
private final int contractID;
|
||
|
private final String name;
|
||
|
private final int mobbaseID;
|
||
|
private final int classID;
|
||
|
private final int extraRune;
|
||
|
private final int iconID;
|
||
|
private int vendorID;
|
||
|
private boolean isTrainer;
|
||
|
private VendorDialog vendorDialog;
|
||
|
private ArrayList<Integer> npcMenuOptions = new ArrayList<>();
|
||
|
private ArrayList<Integer> npcModTypeTable = new ArrayList<>();
|
||
|
private ArrayList<Integer> npcModSuffixTable = new ArrayList<>();
|
||
|
private ArrayList<Byte> itemModTable = new ArrayList<>();
|
||
|
private ArrayList<MobEquipment> sellInventory = new ArrayList<>();
|
||
|
private EnumBitSet<Enum.BuildingGroup> allowedBuildings;
|
||
|
|
||
|
private ArrayList<Integer> buyItemType = new ArrayList<>();
|
||
|
private ArrayList<Integer> buySkillToken = new ArrayList<>();
|
||
|
private ArrayList<Integer> buyUnknownToken = new ArrayList<>();
|
||
|
|
||
|
public int equipmentSet = 0;
|
||
|
public int inventorySet = 0;
|
||
|
|
||
|
/**
|
||
|
* No Table ID Constructor
|
||
|
*/
|
||
|
public Contract(int contractID, String name, int mobbaseID, int classID, int dialogID, int iconID, int extraRune) {
|
||
|
super();
|
||
|
this.contractID = contractID;
|
||
|
this.name = name;
|
||
|
this.mobbaseID = mobbaseID;
|
||
|
this.classID = classID;
|
||
|
this.iconID = iconID;
|
||
|
this.extraRune = extraRune;
|
||
|
this.vendorDialog = VendorDialog.getVendorDialog(dialogID);
|
||
|
setBools();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Normal Constructor
|
||
|
*/
|
||
|
public Contract(int contractID, String name, int mobbaseID, int classID, int dialogID, int iconID, int extraRune, int newUUID) {
|
||
|
super(newUUID);
|
||
|
this.contractID = contractID;
|
||
|
this.name = name;
|
||
|
this.mobbaseID = mobbaseID;
|
||
|
this.classID = classID;
|
||
|
this.iconID = iconID;
|
||
|
this.extraRune = extraRune;
|
||
|
this.vendorDialog = VendorDialog.getVendorDialog(dialogID);
|
||
|
setBools();
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/**
|
||
|
* ResultSet Constructor
|
||
|
*/
|
||
|
public Contract(ResultSet rs) throws SQLException {
|
||
|
super(rs);
|
||
|
this.contractID = rs.getInt("contractID");
|
||
|
this.name = rs.getString("name");
|
||
|
this.mobbaseID = rs.getInt("mobbaseID");
|
||
|
this.classID = rs.getInt("classID");
|
||
|
this.extraRune = rs.getInt("extraRune");
|
||
|
this.vendorDialog = VendorDialog.getVendorDialog(rs.getInt("dialogID"));
|
||
|
this.iconID = rs.getInt("iconID");
|
||
|
this.vendorID = rs.getInt("vendorID");
|
||
|
this.allowedBuildings = EnumBitSet.asEnumBitSet(rs.getLong("allowedBuildingTypeID"), Enum.BuildingGroup.class);
|
||
|
this.equipmentSet = rs.getInt("equipSetID");
|
||
|
this.inventorySet = rs.getInt("inventorySet");
|
||
|
|
||
|
try {
|
||
|
String menuoptions = rs.getString("menuoptions");
|
||
|
|
||
|
if (!menuoptions.isEmpty()){
|
||
|
String[] data = menuoptions.split(" ");
|
||
|
for (String data1 : data) {
|
||
|
this.npcMenuOptions.add(Integer.parseInt(data1));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
String modtypetable = rs.getString("pTable");
|
||
|
if (!modtypetable.isEmpty()){
|
||
|
String[] data = modtypetable.split(" ");
|
||
|
for (String data1 : data) {
|
||
|
this.npcModTypeTable.add(Integer.parseInt(data1));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
String suffix = rs.getString("sTable");
|
||
|
|
||
|
if (!suffix.isEmpty()){
|
||
|
String[] data1 = suffix.split(" ");
|
||
|
|
||
|
for (String data11 : data1) {
|
||
|
this.npcModSuffixTable.add(Integer.parseInt(data11));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
String itemMod = rs.getString("itemModTable");
|
||
|
|
||
|
if (!itemMod.isEmpty()){
|
||
|
String[] data2 = itemMod.split(" ");
|
||
|
for (byte i = 0; i < data2.length; i++) {
|
||
|
this.itemModTable.add(Byte.parseByte(data2[i]));
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
} catch (SQLException | NumberFormatException e) {
|
||
|
Logger.error( "Error when parsing mod tables");
|
||
|
}
|
||
|
setBools();
|
||
|
}
|
||
|
|
||
|
//Specify if trainer, merchant, banker, etc via classID
|
||
|
private void setBools() {
|
||
|
DbManager.ContractQueries.GET_GENERIC_INVENTORY(this);
|
||
|
DbManager.ContractQueries.GET_SELL_LISTS(this);
|
||
|
|
||
|
this.isTrainer = this.classID > 2499 && this.classID < 3050 || this.classID == 2028;
|
||
|
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* Getters
|
||
|
*/
|
||
|
public int getContractID() {
|
||
|
return this.contractID;
|
||
|
}
|
||
|
|
||
|
public String getName() {
|
||
|
return this.name;
|
||
|
}
|
||
|
|
||
|
public int getMobbaseID() {
|
||
|
return this.mobbaseID;
|
||
|
}
|
||
|
|
||
|
public int getClassID() {
|
||
|
return this.classID;
|
||
|
}
|
||
|
|
||
|
public int getExtraRune() {
|
||
|
return this.extraRune;
|
||
|
}
|
||
|
|
||
|
public boolean isTrainer() {
|
||
|
return this.isTrainer;
|
||
|
}
|
||
|
|
||
|
public int getIconID() {
|
||
|
return this.iconID;
|
||
|
}
|
||
|
|
||
|
public int getVendorID() {
|
||
|
return this.vendorID;
|
||
|
}
|
||
|
|
||
|
public VendorDialog getVendorDialog() {
|
||
|
return this.vendorDialog;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Integer> getNPCMenuOptions() {
|
||
|
return this.npcMenuOptions;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Integer> getNPCModTypeTable() {
|
||
|
return this.npcModTypeTable;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Integer> getNpcModSuffixTable() {
|
||
|
return npcModSuffixTable;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Byte> getItemModTable() {
|
||
|
return itemModTable;
|
||
|
}
|
||
|
|
||
|
public ArrayList<MobEquipment> getSellInventory() {
|
||
|
return this.sellInventory;
|
||
|
}
|
||
|
|
||
|
public int getPromotionClass() {
|
||
|
if (this.classID < 2504 || this.classID > 2526)
|
||
|
return 0;
|
||
|
return this.classID;
|
||
|
}
|
||
|
|
||
|
public boolean isRuneMaster() {
|
||
|
return (this.classID == 850);
|
||
|
}
|
||
|
|
||
|
public boolean isArtilleryCaptain() {
|
||
|
return this.contractID == 839 || this.contractID == 842 ;
|
||
|
}
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void updateDatabase() {
|
||
|
DbManager.ContractQueries.updateDatabase(this);
|
||
|
}
|
||
|
|
||
|
public EnumBitSet<Enum.BuildingGroup> getAllowedBuildings() {
|
||
|
return allowedBuildings;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Integer> getBuyItemType() {
|
||
|
return this.buyItemType;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Integer> getBuySkillToken() {
|
||
|
return this.buySkillToken;
|
||
|
}
|
||
|
|
||
|
public ArrayList<Integer> getBuyUnknownToken() {
|
||
|
return this.buyUnknownToken;
|
||
|
}
|
||
|
|
||
|
public boolean canSlotinBuilding(Building building) {
|
||
|
|
||
|
// Need a building to slot in a building!
|
||
|
if (building == null)
|
||
|
return false;
|
||
|
|
||
|
// Can't slot in anything but a blueprintted building
|
||
|
if (building.getBlueprintUUID() == 0)
|
||
|
return false;
|
||
|
|
||
|
// No buildings no slotting
|
||
|
if (this.allowedBuildings.size() == 0)
|
||
|
return false;
|
||
|
|
||
|
// Binary match
|
||
|
return (building.getBlueprint().getBuildingGroup().elementOf(this.allowedBuildings));
|
||
|
|
||
|
}
|
||
|
|
||
|
public int getEquipmentSet() {
|
||
|
return equipmentSet;
|
||
|
}
|
||
|
|
||
|
public static boolean NoSlots(Contract contract){
|
||
|
switch(contract.contractID){
|
||
|
case 830:
|
||
|
case 838:
|
||
|
case 847:
|
||
|
case 860:
|
||
|
case 866:
|
||
|
case 865:
|
||
|
case 1502003:
|
||
|
case 889:
|
||
|
case 890:
|
||
|
case 896:
|
||
|
case 974:
|
||
|
case 1064:
|
||
|
case 1172:
|
||
|
case 1267:
|
||
|
case 1368:
|
||
|
case 1468:
|
||
|
case 1520:
|
||
|
case 1528:
|
||
|
case 1553:
|
||
|
case 1578:
|
||
|
case 1617:
|
||
|
case 1667:
|
||
|
case 1712:
|
||
|
case 893:
|
||
|
case 820:
|
||
|
return true;
|
||
|
|
||
|
}
|
||
|
|
||
|
if (contract.isTrainer)
|
||
|
return true;
|
||
|
return false;
|
||
|
}
|
||
|
}
|