/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 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 as published by the Free Software Foundation 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 scripting.quest; import java.lang.reflect.UndeclaredThrowableException; import java.util.HashMap; import java.util.Map; import javax.script.Invocable; import scripting.AbstractScriptManager; import server.quest.MapleQuest; import tools.FilePrinter; import client.MapleClient; import client.MapleQuestStatus; /** * * @author RMZero213 */ public class QuestScriptManager extends AbstractScriptManager { private Map qms = new HashMap<>(); private Map scripts = new HashMap<>(); private static QuestScriptManager instance = new QuestScriptManager(); public synchronized static QuestScriptManager getInstance() { return instance; } public void start(MapleClient c, short questid, int npc) { MapleQuest quest = MapleQuest.getInstance(questid); if (!c.getPlayer().getQuest(quest).getStatus().equals(MapleQuestStatus.Status.NOT_STARTED)) { dispose(c); return; } try { QuestActionManager qm = new QuestActionManager(c, questid, npc, true); if (qms.containsKey(c)) { return; } if(c.canClickNPC()) { qms.put(c, qm); Invocable iv = getInvocable("quest/" + questid + ".js", c); if (iv == null) { FilePrinter.printError(FilePrinter.QUEST_UNCODED, "START Quest " + questid + " is uncoded.\r\n"); } if (iv == null || QuestScriptManager.getInstance() == null) { qm.dispose(); return; } engine.put("qm", qm); scripts.put(c, iv); c.setClickedNPC(); iv.invokeFunction("start", (byte) 1, (byte) 0, 0); } } catch (final UndeclaredThrowableException ute) { FilePrinter.printError(FilePrinter.QUEST + questid + ".txt", ute); dispose(c); } catch (final Throwable t) { FilePrinter.printError(FilePrinter.QUEST + getQM(c).getQuest() + ".txt", t); dispose(c); } } public void start(MapleClient c, byte mode, byte type, int selection) { Invocable iv = scripts.get(c); if (iv != null) { try { c.setClickedNPC(); iv.invokeFunction("start", mode, type, selection); } catch (final UndeclaredThrowableException ute) { FilePrinter.printError(FilePrinter.QUEST + getQM(c).getQuest() + ".txt", ute); dispose(c); } catch (final Throwable t) { FilePrinter.printError(FilePrinter.QUEST + getQM(c).getQuest() + ".txt", t); dispose(c); } } } public void end(MapleClient c, short questid, int npc) { MapleQuest quest = MapleQuest.getInstance(questid); if (!c.getPlayer().getQuest(quest).getStatus().equals(MapleQuestStatus.Status.STARTED) || !c.getPlayer().getMap().containsNPC(npc)) { dispose(c); return; } try { QuestActionManager qm = new QuestActionManager(c, questid, npc, false); if (qms.containsKey(c)) { return; } if(c.canClickNPC()){ qms.put(c, qm); Invocable iv = getInvocable("quest/" + questid + ".js", c); if (iv == null) { FilePrinter.printError(FilePrinter.QUEST_UNCODED, "END Quest " + questid + " is uncoded.\r\n"); qm.dispose(); return; } engine.put("qm", qm); scripts.put(c, iv); c.setClickedNPC(); iv.invokeFunction("end", (byte) 1, (byte) 0, 0); } } catch (final UndeclaredThrowableException ute) { FilePrinter.printError(FilePrinter.QUEST + questid + ".txt", ute); dispose(c); } catch (final Throwable t) { FilePrinter.printError(FilePrinter.QUEST + getQM(c).getQuest() + ".txt", t); dispose(c); } } public void end(MapleClient c, byte mode, byte type, int selection) { Invocable iv = scripts.get(c); if (iv != null) { try { c.setClickedNPC(); iv.invokeFunction("end", mode, type, selection); } catch (final UndeclaredThrowableException ute) { FilePrinter.printError(FilePrinter.QUEST + getQM(c).getQuest() + ".txt", ute); dispose(c); } catch (final Throwable t) { FilePrinter.printError(FilePrinter.QUEST + getQM(c).getQuest() + ".txt", t); dispose(c); } } } public void dispose(QuestActionManager qm, MapleClient c) { qms.remove(c); scripts.remove(c); c.getPlayer().setNpcCooldown(System.currentTimeMillis()); resetContext("quest/" + qm.getQuest() + ".js", c); } public void dispose(MapleClient c) { QuestActionManager qm = qms.get(c); if (qm != null) { dispose(qm, c); } } public QuestActionManager getQM(MapleClient c) { return qms.get(c); } public void reloadQuestScripts() { scripts.clear(); qms.clear(); } }