123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /*
- * Copyright (C) 2004-2015 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * L2J DataPack 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
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package ai.npc.Minigame;
- import java.util.ArrayList;
- import java.util.List;
- import ai.npc.AbstractNpcAI;
- import com.l2jserver.gameserver.datatables.SpawnTable;
- import com.l2jserver.gameserver.model.L2Object;
- import com.l2jserver.gameserver.model.L2Spawn;
- import com.l2jserver.gameserver.model.Location;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.events.EventType;
- import com.l2jserver.gameserver.model.events.impl.character.OnCreatureSkillUse;
- import com.l2jserver.gameserver.model.events.listeners.ConsumerEventListener;
- import com.l2jserver.gameserver.model.holders.SkillHolder;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.clientpackets.Say2;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Monastery Minigame AI.
- * @author nonom
- */
- public final class Minigame extends AbstractNpcAI
- {
- private static final int SUMIEL = 32758;
- private static final int BURNER = 18913;
- private static final int TREASURE_BOX = 18911;
-
- private static final int UNLIT_TORCHLIGHT = 15540;
- private static final int TORCHLIGHT = 15485;
-
- private static final int SKILL_TORCH_LIGHT = 9059;
- private static final SkillHolder TRIGGER_MIRAGE = new SkillHolder(5144, 1);
-
- private static final Location TELEPORT1 = new Location(113187, -85388, -3424, 0);
- private static final Location TELEPORT2 = new Location(118833, -80589, -2688, 0);
-
- private static final int TIMER_INTERVAL = 3;
- private static final int MAX_ATTEMPTS = 3;
-
- private final List<MinigameRoom> _rooms = new ArrayList<>(2);
-
- private Minigame()
- {
- super(Minigame.class.getSimpleName(), "ai/npc");
- addStartNpc(SUMIEL);
- addFirstTalkId(SUMIEL);
- addTalkId(SUMIEL);
- addSpawnId(SUMIEL, TREASURE_BOX);
- }
-
- @Override
- public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- final MinigameRoom room = getRoomByManager(npc);
- switch (event)
- {
- case "restart":
- {
- final boolean miniGameStarted = room.getStarted();
- if (!miniGameStarted && !hasQuestItems(player, UNLIT_TORCHLIGHT))
- {
- return "32758-05.html";
- }
- else if ((npc.getTarget() != null) && (npc.getTarget() != player))
- {
- return "32758-04.html";
- }
-
- takeItems(player, UNLIT_TORCHLIGHT, 1);
- giveItems(player, TORCHLIGHT, 1);
- broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.THE_FURNACE_WILL_GO_OUT_WATCH_AND_SEE);
-
- room.getManager().setTarget(player);
- room.setParticipant(player);
- room.setStarted(true);
- for (int i = 0; i < 9; i++)
- {
- room.getOrder()[i] = getRandom(8);
- }
- cancelQuestTimer("hurry_up", npc, null);
- cancelQuestTimer("hurry_up2", npc, null);
- cancelQuestTimer("expire", npc, null);
-
- startQuestTimer("hurry_up", 120000, npc, null);
- startQuestTimer("expire", 190000, npc, null);
- startQuestTimer("start", 1000, npc, null);
- return null;
- }
- case "off":
- {
- if (npc.getId() == BURNER)
- {
- npc.setDisplayEffect(2);
- npc.setIsRunning(false);
- }
- else
- {
- for (L2Npc burner : room.getBurners())
- {
- burner.setDisplayEffect(2);
- burner.setIsRunning(false);
- }
- }
- break;
- }
- case "teleport1":
- {
- player.teleToLocation(TELEPORT1, 0);
- break;
- }
- case "teleport2":
- {
- player.teleToLocation(TELEPORT2, 0);
- break;
- }
- case "start":
- {
- room.burnThemAll();
- startQuestTimer("off", 2000, npc, null); // It should be null to stop burnthemAll 2s after
- startQuestTimer("timer", 4000, npc, null);
- break;
- }
- case "timer":
- {
- if (room.getCurrentPot() < 9)
- {
- L2Npc b = room.getBurners()[room.getOrder()[room.getCurrentPot()]];
- b.setDisplayEffect(1);
- b.setIsRunning(false);
- startQuestTimer("off", 2000, b, null); // Stopping burning each pot 2s after
- startQuestTimer("timer", TIMER_INTERVAL * 1000, npc, null);
- room.setCurrentPot(room.getCurrentPot() + 1);
- }
- else
- {
- broadcastNpcSay(room.getManager(), Say2.NPC_ALL, NpcStringId.NOW_LIGHT_THE_FURNACES_FIRE);
- room.burnThemAll();
- startQuestTimer("off", 2000, npc, null);
- final ConsumerEventListener listener = new ConsumerEventListener(room.getParticipant(), EventType.ON_CREATURE_SKILL_USE, (OnCreatureSkillUse listenerEvent) -> onSkillUse(listenerEvent), room);
- room.getParticipant().addListener(listener);
- room.setCurrentPot(0);
- }
- break;
- }
- case "hurry_up":
- {
- broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.THERES_ABOUT_1_MINUTE_LEFT);
- startQuestTimer("hurry_up2", 60000, npc, null);
- break;
- }
- case "hurry_up2":
- {
- broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.THERES_JUST_10_SECONDS_LEFT);
- startQuestTimer("expire", 10000, npc, null);
- break;
- }
- case "expire":
- {
- broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.TIME_IS_UP_AND_YOU_HAVE_FAILED_ANY_MORE_WILL_BE_DIFFICULT);
- }
- case "end":
- {
- cancelQuestTimer("expire", npc, null);
- cancelQuestTimer("hurry_up", npc, null);
- cancelQuestTimer("hurry_up2", npc, null);
- room.getManager().setTarget(null);
- room.setParticipant(null);
- room.setStarted(false);
- room.setAttemptNumber(1);
- room.setCurrentPot(0);
- break;
- }
- case "afterthat":
- {
- npc.deleteMe();
- break;
- }
- }
- return event;
- }
-
- @Override
- public String onFirstTalk(L2Npc npc, L2PcInstance talker)
- {
- String htmltext = null;
- final MinigameRoom room = getRoomByManager(npc);
- final boolean miniGameStarted = room.getStarted();
-
- if (npc.getTarget() == null)
- {
- htmltext = (miniGameStarted ? "32758-08.html" : "32758.html");
- }
- else if (npc.getTarget() == talker)
- {
- if (miniGameStarted)
- {
- htmltext = "32758-07.html";
- }
- else
- {
- int attemptNumber = room.getAttemptNumber();
-
- if (attemptNumber == 2)
- {
- htmltext = "32758-02.html";
- }
- else if (attemptNumber == 3)
- {
- htmltext = "32758-03.html";
- }
- }
- }
- else
- {
- htmltext = "32758-04.html";
- }
-
- return htmltext;
- }
-
- @Override
- public String onSpawn(L2Npc npc)
- {
- switch (npc.getId())
- {
- case SUMIEL:
- {
- _rooms.add(initRoom(npc));
- break;
- }
- case TREASURE_BOX:
- {
- npc.disableCoreAI(true);
- startQuestTimer("afterthat", 180000, npc, null);
- break;
- }
- }
- return super.onSpawn(npc);
- }
-
- public void onSkillUse(OnCreatureSkillUse event)
- {
- final MinigameRoom room = getRoomByParticipant((L2PcInstance) event.getCaster());
- final boolean miniGameStarted = room.getStarted();
- if (miniGameStarted && (event.getSkill().getId() == SKILL_TORCH_LIGHT))
- {
- for (L2Object obj : event.getTargets())
- {
- if ((obj != null) && obj.isNpc())
- {
- L2Npc npc = (L2Npc) obj;
- if (npc.getId() == BURNER)
- {
- npc.doCast(TRIGGER_MIRAGE.getSkill());
- final int pos = room.getBurnerPos(npc);
- if (pos == room.getOrder()[room.getCurrentPot()])
- {
- if (room.getCurrentPot() < 8)
- {
- npc.setDisplayEffect(1);
- npc.setIsRunning(false);
- startQuestTimer("off", 2000, npc, null);
- room.setCurrentPot(room.getCurrentPot() + 1);
- }
- else
- {
- addSpawn(TREASURE_BOX, room.getParticipant().getLocation(), true, 0);
- broadcastNpcSay(room.getManager(), Say2.NPC_ALL, NpcStringId.OH_YOUVE_SUCCEEDED);
- room.setCurrentPot(0);
- room.burnThemAll();
- startQuestTimer("off", 2000, room.getManager(), null);
- startQuestTimer("end", 4000, room.getManager(), null);
- }
- }
- else
- {
- if (room.getAttemptNumber() == MAX_ATTEMPTS)
- {
- broadcastNpcSay(room.getManager(), Say2.NPC_ALL, NpcStringId.AH_IVE_FAILED_GOING_FURTHER_WILL_BE_DIFFICULT);
- room.burnThemAll();
- startQuestTimer("off", 2000, room.getManager(), null);
- room.getParticipant().removeListenerIf(EventType.ON_CREATURE_SKILL_USE, listener -> listener.getOwner() == room);
- startQuestTimer("end", 4000, room.getManager(), null);
- }
- else if (room.getAttemptNumber() < MAX_ATTEMPTS)
- {
- broadcastNpcSay(room.getManager(), Say2.NPC_ALL, NpcStringId.AH_IS_THIS_FAILURE_BUT_IT_LOOKS_LIKE_I_CAN_KEEP_GOING);
- room.burnThemAll();
- startQuestTimer("off", 2000, room.getManager(), null);
- room.setAttemptNumber(room.getAttemptNumber() + 1);
- }
- }
- break;
- }
- }
- }
- }
- }
-
- /**
- * Create and initialize a MinigameRoom<br>
- * It's loading the nearby pots around the game instructor NPC.<br>
- * TODO: Load the pot_number value from npc ai_params.
- * @param manager the NPC instructor
- * @return MinigameRoom
- */
- private MinigameRoom initRoom(L2Npc manager)
- {
- final L2Npc[] burners = new L2Npc[9];
- L2Npc lastSpawn;
- int potNumber = 0;
-
- for (L2Spawn spawn : SpawnTable.getInstance().getSpawns(BURNER))
- {
- lastSpawn = spawn.getLastSpawn();
- if ((potNumber <= 8) && Util.checkIfInRange(1000, manager, lastSpawn, false))
- {
- lastSpawn.setAutoAttackable(true);
- burners[potNumber++] = lastSpawn;
- }
- }
- return new MinigameRoom(burners, manager);
- }
-
- /**
- * Retrieve a MinigameRoom by game instructor
- * @param manager the NPC instructor
- * @return MinigameRoom
- */
- private MinigameRoom getRoomByManager(L2Npc manager)
- {
- for (MinigameRoom room : _rooms)
- {
- if (room.getManager() == manager)
- {
- return room;
- }
- }
- return null;
- }
-
- /**
- * Retrieve a MinigameRoom by participant
- * @param participant the L2PcInstance participating
- * @return MinigameRoom
- */
- private MinigameRoom getRoomByParticipant(L2PcInstance participant)
- {
- for (MinigameRoom room : _rooms)
- {
- if (room.getParticipant() == participant)
- {
- return room;
- }
- }
- return null;
- }
-
- /**
- * An object that holds the participant, manager, burning order<br>
- * and game status for each secret room into Monastery of Silence.
- */
- private class MinigameRoom
- {
- private final L2Npc[] _burners;
- private final L2Npc _manager;
- private L2PcInstance _participant;
- private boolean _started;
- private int _attemptNumber;
- private int _currentPot;
- private final int _order[];
-
- public MinigameRoom(L2Npc[] burners, L2Npc manager)
- {
- _burners = burners;
- _manager = manager;
- _participant = null;
- _started = false;
- _attemptNumber = 1;
- _currentPot = 0;
- _order = new int[9];
- }
-
- /**
- * Retrieve the burner position into the array
- * @param npc the L2Npc burner
- * @return the array index
- */
- public int getBurnerPos(L2Npc npc)
- {
- for (int i = 0; i < 9; i++)
- {
- if (npc.equals(_burners[i]))
- {
- return i;
- }
- }
- return 0;
- }
-
- /**
- * Burn all the pots into the room
- */
- public void burnThemAll()
- {
- for (L2Npc burner : _burners)
- {
- burner.setDisplayEffect(1);
- burner.setIsRunning(false);
- }
- }
-
- /**
- * Retrieve a list of burners
- * @return An array of L2Npcs
- */
- public L2Npc[] getBurners()
- {
- return _burners;
- }
-
- /**
- * Retrieve the current game manager
- * @return The L2Npc game instructor
- */
- public L2Npc getManager()
- {
- return _manager;
- }
-
- /**
- * Retrieve the current game participant
- * @return The L2PcInstance who is participating
- */
- public L2PcInstance getParticipant()
- {
- return _participant;
- }
-
- /**
- * Set the current participant
- * @param participant The L2PcInstance participating
- */
- public void setParticipant(L2PcInstance participant)
- {
- _participant = participant;
- }
-
- /**
- * Retrieves the MinigameRoom status
- * @return {@code true} if the game is started, {@code false} otherwise
- */
- public boolean getStarted()
- {
- return _started;
- }
-
- /**
- * Set the MinigameRoom status
- * @param started The game status {@code true} if the game is started, {@code false} otherwise
- */
- public void setStarted(boolean started)
- {
- _started = started;
- }
-
- /**
- * Retrieve the current burner position
- * @return The array index
- */
- public int getCurrentPot()
- {
- return _currentPot;
- }
-
- /**
- * Set the current burner position
- * @param pot The position
- */
- public void setCurrentPot(int pot)
- {
- _currentPot = pot;
- }
-
- /**
- * Retrieve the current attempt Number
- * @return The attempt number
- */
- public int getAttemptNumber()
- {
- return _attemptNumber;
- }
-
- /**
- * Set the attempt number
- * @param attempt attempt number
- */
- public void setAttemptNumber(int attempt)
- {
- _attemptNumber = attempt;
- }
-
- /**
- * Retrieve the burning order
- * @return an array of Ids
- */
- public int[] getOrder()
- {
- return _order;
- }
- }
-
- public static void main(String[] args)
- {
- new Minigame();
- }
- }
|