// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . // ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· // ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ // ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ // ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ // Magicbane Emulator Project © 2013 - 2022 // www.magicbane.com package engine.objects; import engine.server.MBServerStatics; import java.util.HashMap; import java.util.concurrent.ConcurrentHashMap; public class LootTable { private static final ConcurrentHashMap modTables = new ConcurrentHashMap<>(MBServerStatics.CHM_INIT_CAP, MBServerStatics.CHM_LOAD, MBServerStatics.CHM_THREAD_LOW); private static final ConcurrentHashMap modTypeTables = new ConcurrentHashMap<>(MBServerStatics.CHM_INIT_CAP, MBServerStatics.CHM_LOAD, MBServerStatics.CHM_THREAD_LOW); private static final ConcurrentHashMap statRuneChances = new ConcurrentHashMap<>(MBServerStatics.CHM_INIT_CAP, MBServerStatics.CHM_LOAD, MBServerStatics.CHM_THREAD_LOW); public static boolean initialized = false; public static HashMap itemsDroppedMap = new HashMap<>(); public static HashMap resourceDroppedMap = new HashMap<>(); public static HashMap runeDroppedMap = new HashMap<>(); public static HashMap contractDroppedMap = new HashMap<>(); public static HashMap glassDroppedMap = new HashMap<>(); public static int rollCount = 0; public static int dropCount = 0; public static int runeCount = 0; public static int contractCount = 0; public static int resourceCount = 0; public static int glassCount = 0; private final ConcurrentHashMap lootTable = new ConcurrentHashMap<>(MBServerStatics.CHM_INIT_CAP, MBServerStatics.CHM_LOAD, MBServerStatics.CHM_THREAD_LOW); public float minRoll = 320; public float maxRoll = 1; public int lootTableID = 0; /** * Generic Constructor */ public LootTable(int lootTableID) { this.lootTableID = lootTableID; } public static LootTable getModTypeTable(int UUID) { if (modTypeTables.containsKey(UUID)) return modTypeTables.get(UUID); LootTable modTable = new LootTable(UUID); modTypeTables.put(UUID, modTable); return modTable; } public static LootTable getModTable(int UUID) { if (modTables.containsKey(UUID)) return modTables.get(UUID); LootTable modTypeTable = new LootTable(UUID); modTables.put(UUID, modTypeTable); return modTypeTable; } public LootRow getLootRow(int probability) { if (lootTable.containsKey(probability)) return lootTable.get(probability); return null; } }