EventScriptManager.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. /*
  19.  * To change this template, choose Tools | Templates
  20.  * and open the template in the editor.
  21.  */
  22. package net.sf.odinms.scripting.event;
  23. import java.util.LinkedHashMap;
  24. import java.util.Map;
  25. import java.util.logging.Level;
  26. import java.util.logging.Logger;
  27. import javax.script.Invocable;
  28. import javax.script.ScriptEngine;
  29. import javax.script.ScriptException;
  30. import net.sf.odinms.net.channel.ChannelServer;
  31. import net.sf.odinms.scripting.AbstractScriptManager;
  32. /**
  33.  *
  34.  * @author Matze
  35.  */
  36. public class EventScriptManager extends AbstractScriptManager {
  37. private class EventEntry {
  38. public EventEntry(String script, Invocable iv, EventManager em) {
  39. this.script = script;
  40. this.iv = iv;
  41. this.em = em;
  42. }
  43. public String script;
  44. public Invocable iv;
  45. public EventManager em;
  46. }
  47. private Map<String,EventEntry> events = new LinkedHashMap<String,EventEntry>();
  48. public EventScriptManager(ChannelServer cserv, String[] scripts) {
  49. super();
  50. for (String script : scripts) {
  51. if (!script.equals("")) {
  52. Invocable iv = getInvocable("event/" + script + ".js", null);
  53. events.put(script, new EventEntry(script, iv, new EventManager(cserv, iv, script)));
  54. }
  55. }
  56. }
  57. public EventManager getEventManager(String event) {
  58. EventEntry entry = events.get(event);
  59. if (entry == null) {
  60. return null;
  61. }
  62. return entry.em;
  63. }
  64. public void init() {
  65. for (EventEntry entry : events.values()) {
  66. try {
  67. ((ScriptEngine) entry.iv).put("em", entry.em);
  68. entry.iv.invokeFunction("init", (Object) null);
  69. } catch (ScriptException ex) {
  70. Logger.getLogger(EventScriptManager.class.getName()).log(Level.SEVERE, null, ex);
  71. } catch (NoSuchMethodException ex) {
  72. Logger.getLogger(EventScriptManager.class.getName()).log(Level.SEVERE, null, ex);
  73. }
  74. }
  75. }
  76. public void cancel() {
  77. for (EventEntry entry : events.values()) {
  78. entry.em.cancel();
  79. }
  80. }
  81. }