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

游戏

开发平台:

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.quest;
  19. import java.util.HashMap;
  20. import java.util.Map;
  21. import javax.script.Invocable;
  22. import net.sf.odinms.client.MapleClient;
  23. import net.sf.odinms.scripting.AbstractScriptManager;
  24. /**
  25.  *
  26.  * @author RMZero213
  27.  */
  28. public class QuestScriptManager extends AbstractScriptManager {
  29. private Map<MapleClient,QuestActionManager> qms = new HashMap<MapleClient,QuestActionManager>();
  30. private Map<MapleClient,QuestScript> scripts = new HashMap<MapleClient,QuestScript>();
  31. private static QuestScriptManager instance = new QuestScriptManager();
  32. public synchronized static QuestScriptManager getInstance() {
  33. return instance;
  34. }
  35. public void start(MapleClient c, int npc, int quest) {
  36. try {
  37. QuestActionManager qm = new QuestActionManager(c, npc, quest, true);
  38. if (qms.containsKey(c)) {
  39. return;
  40. }
  41. qms.put(c, qm);
  42. Invocable iv = getInvocable("quest/" + quest + ".js", c);
  43. if (iv == null) {
  44. qm.dispose();
  45. return;
  46. }
  47. engine.put("qm", qm);
  48. QuestScript qs = iv.getInterface(QuestScript.class);
  49. scripts.put(c, qs);
  50. qs.start((byte)1, (byte)0, 0); // start it off as something
  51. } catch (Exception e) {
  52. log.error("Error executing Quest script. (" + quest + ")", e);
  53. dispose(c);
  54. }
  55. }
  56. public void start(MapleClient c, byte mode, byte type, int selection) {
  57. QuestScript qs = scripts.get(c);
  58. if (qs != null) {
  59. try {
  60. qs.start(mode, type, selection);
  61. } catch (Exception e) {
  62. log.error("Error executing Quest script. (" + c.getQM().getQuest() + ")", e);
  63. dispose(c);
  64. }
  65. }
  66. }
  67. public void end(MapleClient c, int npc, int quest) {
  68. try {
  69. QuestActionManager qm = new QuestActionManager(c, npc, quest, false);
  70. if (qms.containsKey(c)) {
  71. return;
  72. }
  73. qms.put(c, qm);
  74. Invocable iv = getInvocable("quest/" + quest + ".js", c);
  75. if (iv == null) {
  76. qm.dispose();
  77. return;
  78. }
  79. engine.put("qm", qm);
  80. QuestScript qs = iv.getInterface(QuestScript.class);
  81. scripts.put(c, qs);
  82. qs.end((byte) 1, (byte) 0, 0); // start it off as something
  83. } catch (Exception e) {
  84. log.error("Error executing Quest script. (" + quest + ")", e);
  85. dispose(c);
  86. }
  87. }
  88. public void end(MapleClient c, byte mode, byte type, int selection) {
  89. QuestScript qs = scripts.get(c);
  90. if (qs != null) {
  91. try {
  92. qs.end(mode, type, selection);
  93. } catch (Exception e) {
  94. log.error("Error executing Quest script. (" + c.getQM().getQuest() + ")", e);
  95. dispose(c);
  96. }
  97. }
  98. }
  99. public void dispose(QuestActionManager qm, MapleClient c) {
  100. qms.remove(c);
  101. scripts.remove(c);
  102. resetContext("quest/" + qm.getQuest() + ".js", c);
  103. }
  104. public void dispose(MapleClient c) {
  105. QuestActionManager qm = qms.get(c);
  106. if (qm != null) {
  107. dispose(qm, c);
  108. }
  109. }
  110. public QuestActionManager getQM(MapleClient c) {
  111. return qms.get(c);
  112. }
  113. }