ReactorScriptManager.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.scripting.reactor;
  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 javax.script.Invocable;
  27. import net.sf.odinms.client.MapleClient;
  28. import net.sf.odinms.database.DatabaseConnection;
  29. import net.sf.odinms.scripting.AbstractScriptManager;
  30. import net.sf.odinms.server.life.MapleMonsterInformationProvider.DropEntry;
  31. import net.sf.odinms.server.maps.MapleReactor;
  32. /**
  33.  * @author Lerk
  34.  */
  35. public class ReactorScriptManager extends AbstractScriptManager {
  36. private static ReactorScriptManager instance = new ReactorScriptManager();
  37. private Map<Integer, List<DropEntry>> drops = new HashMap<Integer, List<DropEntry>>();
  38. public synchronized static ReactorScriptManager getInstance() {
  39. return instance;
  40. }
  41. public void act(MapleClient c, MapleReactor reactor) {
  42. try {
  43. ReactorActionManager rm = new ReactorActionManager(c, reactor);
  44. Invocable iv = getInvocable("reactor/" + reactor.getId() + ".js", c);
  45. if (iv == null) {
  46. return;
  47. }
  48. engine.put("rm", rm);
  49. ReactorScript rs = iv.getInterface(ReactorScript.class);
  50. rs.act();
  51. } catch (Exception e) {
  52. log.error("Error executing reactor script.", e);
  53. }
  54. }
  55. public List<DropEntry> getDrops(int rid) {
  56. List<DropEntry> ret = drops.get(rid);
  57. if (ret == null) {
  58. ret = new LinkedList<DropEntry>();
  59. try {
  60. Connection con = DatabaseConnection.getConnection();
  61. PreparedStatement ps = con.prepareStatement("SELECT itemid, chance FROM reactordrops WHERE reactorid = ? AND chance >= 0");
  62. ps.setInt(1, rid);
  63. ResultSet rs = ps.executeQuery();
  64. while (rs.next()) {
  65. ret.add(new DropEntry(rs.getInt("itemid"), rs.getInt("chance")));
  66. }
  67. rs.close();
  68. ps.close();
  69. } catch (Exception e) {
  70. log.error("Could not retrieve drops for reactor " + rid, e);
  71. }
  72. drops.put(rid, ret);
  73. }
  74. return ret;
  75. }
  76. public void clearDrops() {
  77. drops.clear();
  78. }
  79. }