/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 ~ 2010 Patrick Huy Matthias Butz Jan Christian Meyer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package server.life; import java.io.File; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import provider.MapleData; import provider.MapleDataProvider; import provider.MapleDataProviderFactory; import provider.MapleDataTool; import server.MapleItemInformationProvider; import tools.DatabaseConnection; import tools.Pair; public class MapleMonsterInformationProvider { // Author : LightPepsi private static final MapleMonsterInformationProvider instance = new MapleMonsterInformationProvider(); private final Map> drops = new HashMap<>(); private final List globaldrops = new ArrayList<>(); private final Map> dropsChancePool = new HashMap<>(); // thanks to ronan protected MapleMonsterInformationProvider() { retrieveGlobal(); } public static MapleMonsterInformationProvider getInstance() { return instance; } public final List getGlobalDrop() { return globaldrops; } private void retrieveGlobal() { PreparedStatement ps = null; ResultSet rs = null; Connection con = null; try { con = DatabaseConnection.getConnection(); ps = con.prepareStatement("SELECT * FROM drop_data_global WHERE chance > 0"); rs = ps.executeQuery(); while (rs.next()) { globaldrops.add( new MonsterGlobalDropEntry( rs.getInt("itemid"), rs.getInt("chance"), rs.getInt("continent"), rs.getByte("dropType"), rs.getInt("minimum_quantity"), rs.getInt("maximum_quantity"), rs.getShort("questid"))); } rs.close(); ps.close(); con.close(); } catch (SQLException e) { System.err.println("Error retrieving drop" + e); } finally { try { if (ps != null && !ps.isClosed()) { ps.close(); } if (rs != null && !rs.isClosed()) { rs.close(); } if (con != null && !con.isClosed()) { con.close(); } } catch (SQLException ignore) { ignore.printStackTrace(); } } } public final List retrieveDrop(final int monsterId) { if (drops.containsKey(monsterId)) { return drops.get(monsterId); } final List ret = new LinkedList<>(); PreparedStatement ps = null; ResultSet rs = null; Connection con = null; try { con = DatabaseConnection.getConnection(); ps = con.prepareStatement("SELECT itemid, chance, minimum_quantity, maximum_quantity, questid FROM drop_data WHERE dropperid = ?"); ps.setInt(1, monsterId); rs = ps.executeQuery(); while (rs.next()) { ret.add( new MonsterDropEntry( rs.getInt("itemid"), rs.getInt("chance"), rs.getInt("minimum_quantity"), rs.getInt("maximum_quantity"), rs.getShort("questid"))); } con.close(); } catch (SQLException e) { e.printStackTrace(); return ret; } finally { try { if (ps != null && !ps.isClosed()) { ps.close(); } if (rs != null && !rs.isClosed()) { rs.close(); } if (con != null && !con.isClosed()) { con.close(); } } catch (SQLException ignore) { ignore.printStackTrace(); return ret; } } drops.put(monsterId, ret); return ret; } public final List retrieveDropPool(final int monsterId) { // ignores Quest and Party Quest items if (dropsChancePool.containsKey(monsterId)) { return dropsChancePool.get(monsterId); } MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance(); List dropList = retrieveDrop(monsterId); List ret = new ArrayList<>(); int accProp = 0; for(MonsterDropEntry mde : dropList) { if(!ii.isQuestItem(mde.itemId) && !ii.isPartyQuestItem(mde.itemId)) { accProp += mde.chance; } ret.add(accProp); } if(accProp == 0) ret.clear(); // don't accept mobs dropping no relevant items dropsChancePool.put(monsterId, ret); return ret; } public static ArrayList> getMobsIDsFromName(String search) { MapleDataProvider dataProvider = MapleDataProviderFactory.getDataProvider(new File("wz/String.wz")); ArrayList> retMobs = new ArrayList>(); MapleData data = dataProvider.getData("Mob.img"); List> mobPairList = new LinkedList>(); for (MapleData mobIdData : data.getChildren()) { int mobIdFromData = Integer.parseInt(mobIdData.getName()); String mobNameFromData = MapleDataTool.getString(mobIdData.getChildByPath("name"), "NO-NAME"); mobPairList.add(new Pair(mobIdFromData, mobNameFromData)); } for (Pair mobPair : mobPairList) { if (mobPair.getRight().toLowerCase().contains(search.toLowerCase())) { retMobs.add(mobPair); } } return retMobs; } public static String getMobNameFromId(int id) { try { return MapleLifeFactory.getMonster(id).getName(); } catch (NullPointerException npe) { return null; //nonexistant mob } catch (Exception e) { e.printStackTrace(); System.err.println("Nonexistant mob id " + id); return null; //nonexistant mob } } public static String getMobNameFromID(int id) { try { return MapleLifeFactory.getMonster(id).getName(); } catch (NullPointerException npe) { return null; //nonexistant mob } catch (Exception e) { e.printStackTrace(); System.err.println("Nonexistant mob id " + id); return null; //nonexistant mob } } public final void clearDrops() { drops.clear(); dropsChancePool.clear(); globaldrops.clear(); retrieveGlobal(); } }