MapleMonsterInformationProvider.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.server.life;
  19. import java.sql.Connection;
  20. import java.sql.PreparedStatement;
  21. import java.sql.ResultSet;
  22. import java.util.HashMap;
  23. import java.util.LinkedList;
  24. import java.util.List;
  25. import java.util.Map;
  26. import net.sf.odinms.database.DatabaseConnection;
  27. import org.slf4j.Logger;
  28. import org.slf4j.LoggerFactory;
  29. /**
  30.  *
  31.  * @author Matze
  32.  */
  33. public class MapleMonsterInformationProvider {
  34. public static class DropEntry {
  35. public DropEntry(int itemId, int chance) {
  36. this.itemId = itemId;
  37. this.chance = chance;
  38. }
  39. public int itemId;
  40. public int chance;
  41. public int assignedRangeStart;
  42. public int assignedRangeLength;
  43. @Override
  44. public String toString() {
  45. return itemId + " chance: " + chance;
  46. }
  47. }
  48. public static final int APPROX_FADE_DELAY = 90;
  49. private static MapleMonsterInformationProvider instance = null;
  50. private Map<Integer,List<DropEntry>> drops = new HashMap<Integer, List<DropEntry>>();
  51. private static final Logger log = LoggerFactory.getLogger(MapleMonsterInformationProvider.class);
  52. private MapleMonsterInformationProvider() {
  53. }
  54. public static MapleMonsterInformationProvider getInstance() {
  55. if (instance == null) instance = new MapleMonsterInformationProvider();
  56. return instance;
  57. }
  58. public List<DropEntry> retrieveDropChances(int monsterId) {
  59. if (drops.containsKey(monsterId)) return drops.get(monsterId);
  60. List<DropEntry> ret = new LinkedList<DropEntry>();
  61. try {
  62. Connection con = DatabaseConnection.getConnection();
  63. PreparedStatement ps = con.prepareStatement("SELECT itemid, chance, monsterid FROM monsterdrops WHERE (monsterid = ? AND chance >= 0) OR (monsterid <= 0)");
  64. ps.setInt(1, monsterId);
  65. ResultSet rs = ps.executeQuery();
  66. MapleMonster theMonster = null;
  67. while (rs.next()) {
  68. int rowMonsterId = rs.getInt("monsterid");
  69. int chance = rs.getInt("chance");
  70. if (rowMonsterId != monsterId && rowMonsterId != 0) {
  71. if (theMonster == null) {
  72. theMonster = MapleLifeFactory.getMonster(monsterId);
  73. }
  74. chance += theMonster.getLevel() * rowMonsterId;
  75. }
  76. ret.add(new DropEntry(rs.getInt("itemid"), chance));
  77. }
  78. rs.close();
  79. ps.close();
  80. } catch (Exception e) {
  81. log.error("Error retrieving drop", e);
  82. }
  83. drops.put(monsterId, ret);
  84. return ret;
  85. }
  86. public void clearDrops() {
  87. drops.clear();
  88. }
  89. }