123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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 Server 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 com.l2jserver.gameserver.instancemanager;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.Calendar;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.Map.Entry;
- import java.util.Set;
- import java.util.concurrent.ScheduledFuture;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.ThreadPoolManager;
- import com.l2jserver.gameserver.data.xml.impl.DoorData;
- import com.l2jserver.gameserver.datatables.SpawnTable;
- import com.l2jserver.gameserver.instancemanager.tasks.FourSepulchersChangeAttackTimeTask;
- import com.l2jserver.gameserver.instancemanager.tasks.FourSepulchersChangeCoolDownTimeTask;
- import com.l2jserver.gameserver.instancemanager.tasks.FourSepulchersChangeEntryTimeTask;
- import com.l2jserver.gameserver.instancemanager.tasks.FourSepulchersChangeWarmUpTimeTask;
- import com.l2jserver.gameserver.model.L2Spawn;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2DoorInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2SepulcherMonsterInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2SepulcherNpcInstance;
- import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.network.NpcStringId;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
- import com.l2jserver.gameserver.util.Util;
- import com.l2jserver.util.Rnd;
- /**
- * Zoey76: TODO: Use Location DTO instead of array of int.
- * @author sandman
- */
- public final class FourSepulchersManager
- {
- private static final Logger _log = Logger.getLogger(FourSepulchersManager.class.getName());
-
- private static final int QUEST_ID = 620;
-
- private static final int ENTRANCE_PASS = 7075;
- private static final int USED_PASS = 7261;
- private static final int CHAPEL_KEY = 7260;
- private static final int ANTIQUE_BROOCH = 7262;
-
- private boolean _firstTimeRun;
- private boolean _inEntryTime = false;
- private boolean _inWarmUpTime = false;
- private boolean _inAttackTime = false;
- private boolean _inCoolDownTime = false;
-
- private ScheduledFuture<?> _changeCoolDownTimeTask = null;
- private ScheduledFuture<?> _changeEntryTimeTask = null;
- private ScheduledFuture<?> _changeWarmUpTimeTask = null;
- private ScheduledFuture<?> _changeAttackTimeTask = null;
-
- // @formatter:off
- private final int[][] _startHallSpawn =
- {
- { 181632, -85587, -7218 },
- { 179963, -88978, -7218 },
- { 173217, -86132, -7218 },
- { 175608, -82296, -7218 }
- };
-
- private final int[][][] _shadowSpawnLoc =
- {
- {
- { 25339, 191231, -85574, -7216, 33380 },
- { 25349, 189534, -88969, -7216, 32768 },
- { 25346, 173195, -76560, -7215, 49277 },
- { 25342, 175591, -72744, -7215, 49317 }
- },
- {
- { 25342, 191231, -85574, -7216, 33380 },
- { 25339, 189534, -88969, -7216, 32768 },
- { 25349, 173195, -76560, -7215, 49277 },
- { 25346, 175591, -72744, -7215, 49317 }
- },
- {
- { 25346, 191231, -85574, -7216, 33380 },
- { 25342, 189534, -88969, -7216, 32768 },
- { 25339, 173195, -76560, -7215, 49277 },
- { 25349, 175591, -72744, -7215, 49317 }
- },
- {
- { 25349, 191231, -85574, -7216, 33380 },
- { 25346, 189534, -88969, -7216, 32768 },
- { 25342, 173195, -76560, -7215, 49277 },
- { 25339, 175591, -72744, -7215, 49317 }
- },
- };
- // @formatter:on
-
- protected Map<Integer, Boolean> _archonSpawned = new FastMap<>();
- protected Map<Integer, Boolean> _hallInUse = new FastMap<>();
- protected Map<Integer, L2PcInstance> _challengers = new FastMap<>();
- protected Map<Integer, int[]> _startHallSpawns = new HashMap<>();
- protected Map<Integer, Integer> _hallGateKeepers = new HashMap<>();
- protected Map<Integer, Integer> _keyBoxNpc = new HashMap<>();
- protected Map<Integer, Integer> _victim = new HashMap<>();
- protected Map<Integer, L2Spawn> _executionerSpawns = new HashMap<>();
- protected Map<Integer, L2Spawn> _keyBoxSpawns = new HashMap<>();
- protected Map<Integer, L2Spawn> _mysteriousBoxSpawns = new HashMap<>();
- protected Map<Integer, L2Spawn> _shadowSpawns = new HashMap<>();
- protected Map<Integer, List<L2Spawn>> _dukeFinalMobs = new HashMap<>();
- protected Map<Integer, List<L2SepulcherMonsterInstance>> _dukeMobs = new HashMap<>();
- protected Map<Integer, List<L2Spawn>> _emperorsGraveNpcs = new HashMap<>();
- protected Map<Integer, List<L2Spawn>> _magicalMonsters = new HashMap<>();
- protected Map<Integer, List<L2Spawn>> _physicalMonsters = new HashMap<>();
- protected Map<Integer, List<L2SepulcherMonsterInstance>> _viscountMobs = new HashMap<>();
-
- protected List<L2Spawn> _physicalSpawns;
- protected List<L2Spawn> _magicalSpawns;
- protected List<L2Spawn> _managers;
- protected List<L2Spawn> _dukeFinalSpawns;
- protected List<L2Spawn> _emperorsGraveSpawns;
- protected List<L2Npc> _allMobs = new FastList<>();
-
- private long _attackTimeEnd = 0;
- private long _coolDownTimeEnd = 0;
- private long _entryTimeEnd = 0;
- private long _warmUpTimeEnd = 0;
-
- private final byte _newCycleMin = 55;
-
- public void init()
- {
- if (_changeCoolDownTimeTask != null)
- {
- _changeCoolDownTimeTask.cancel(true);
- }
- if (_changeEntryTimeTask != null)
- {
- _changeEntryTimeTask.cancel(true);
- }
- if (_changeWarmUpTimeTask != null)
- {
- _changeWarmUpTimeTask.cancel(true);
- }
- if (_changeAttackTimeTask != null)
- {
- _changeAttackTimeTask.cancel(true);
- }
-
- _changeCoolDownTimeTask = null;
- _changeEntryTimeTask = null;
- _changeWarmUpTimeTask = null;
- _changeAttackTimeTask = null;
-
- _inEntryTime = false;
- _inWarmUpTime = false;
- _inAttackTime = false;
- _inCoolDownTime = false;
-
- _firstTimeRun = true;
- initFixedInfo();
- loadMysteriousBox();
- initKeyBoxSpawns();
- loadPhysicalMonsters();
- loadMagicalMonsters();
- initLocationShadowSpawns();
- initExecutionerSpawns();
- loadDukeMonsters();
- loadEmperorsGraveMonsters();
- spawnManagers();
- timeSelector();
- }
-
- // phase select on server launch
- protected void timeSelector()
- {
- timeCalculator();
- long currentTime = Calendar.getInstance().getTimeInMillis();
- // if current time >= time of entry beginning and if current time < time of entry beginning + time of entry end
- if ((currentTime >= _coolDownTimeEnd) && (currentTime < _entryTimeEnd)) // entry time check
- {
- clean();
- _changeEntryTimeTask = ThreadPoolManager.getInstance().scheduleGeneral(new FourSepulchersChangeEntryTimeTask(), 0);
- _log.info(getClass().getSimpleName() + ": Beginning in Entry time");
- }
- else if ((currentTime >= _entryTimeEnd) && (currentTime < _warmUpTimeEnd)) // warmup time check
- {
- clean();
- _changeWarmUpTimeTask = ThreadPoolManager.getInstance().scheduleGeneral(new FourSepulchersChangeWarmUpTimeTask(), 0);
- _log.info(getClass().getSimpleName() + ": Beginning in WarmUp time");
- }
- else if ((currentTime >= _warmUpTimeEnd) && (currentTime < _attackTimeEnd)) // attack time check
- {
- clean();
- _changeAttackTimeTask = ThreadPoolManager.getInstance().scheduleGeneral(new FourSepulchersChangeAttackTimeTask(), 0);
- _log.info(getClass().getSimpleName() + ": Beginning in Attack time");
- }
- else
- // else cooldown time and without cleanup because it's already implemented
- {
- _changeCoolDownTimeTask = ThreadPoolManager.getInstance().scheduleGeneral(new FourSepulchersChangeCoolDownTimeTask(), 0);
- _log.info(getClass().getSimpleName() + ": Beginning in Cooldown time");
- }
- }
-
- // phase end times calculator
- protected void timeCalculator()
- {
- Calendar tmp = Calendar.getInstance();
- if (tmp.get(Calendar.MINUTE) < _newCycleMin)
- {
- tmp.set(Calendar.HOUR, Calendar.getInstance().get(Calendar.HOUR) - 1);
- }
- tmp.set(Calendar.MINUTE, _newCycleMin);
- _coolDownTimeEnd = tmp.getTimeInMillis();
- _entryTimeEnd = _coolDownTimeEnd + (Config.FS_TIME_ENTRY * 60000L);
- _warmUpTimeEnd = _entryTimeEnd + (Config.FS_TIME_WARMUP * 60000L);
- _attackTimeEnd = _warmUpTimeEnd + (Config.FS_TIME_ATTACK * 60000L);
- }
-
- public void clean()
- {
- for (int i = 31921; i < 31925; i++)
- {
- int[] Location = _startHallSpawns.get(i);
- GrandBossManager.getInstance().getZone(Location[0], Location[1], Location[2]).oustAllPlayers();
- }
-
- deleteAllMobs();
-
- closeAllDoors();
-
- _hallInUse.clear();
- _hallInUse.put(31921, false);
- _hallInUse.put(31922, false);
- _hallInUse.put(31923, false);
- _hallInUse.put(31924, false);
-
- if (_archonSpawned.size() != 0)
- {
- Set<Integer> npcIdSet = _archonSpawned.keySet();
- for (int npcId : npcIdSet)
- {
- _archonSpawned.put(npcId, false);
- }
- }
- }
-
- protected void spawnManagers()
- {
- _managers = new FastList<>();
-
- for (int npcId = 31921; npcId <= 31924; npcId++)
- {
- try
- {
- final L2Spawn spawnDat = new L2Spawn(npcId);
- spawnDat.setAmount(1);
- spawnDat.setRespawnDelay(60);
- switch (npcId)
- {
- case 31921: // conquerors
- spawnDat.setX(181061);
- spawnDat.setY(-85595);
- spawnDat.setZ(-7200);
- spawnDat.setHeading(-32584);
- break;
- case 31922: // emperors
- spawnDat.setX(179292);
- spawnDat.setY(-88981);
- spawnDat.setZ(-7200);
- spawnDat.setHeading(-33272);
- break;
- case 31923: // sages
- spawnDat.setX(173202);
- spawnDat.setY(-87004);
- spawnDat.setZ(-7200);
- spawnDat.setHeading(-16248);
- break;
- case 31924: // judges
- spawnDat.setX(175606);
- spawnDat.setY(-82853);
- spawnDat.setZ(-7200);
- spawnDat.setHeading(-16248);
- break;
- }
- _managers.add(spawnDat);
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- spawnDat.doSpawn();
- spawnDat.startRespawn();
- _log.info(getClass().getSimpleName() + ": spawned " + spawnDat.getTemplate().getName());
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Error while spawning managers: " + e.getMessage(), e);
- }
- }
- }
-
- protected void initFixedInfo()
- {
- _startHallSpawns.put(31921, _startHallSpawn[0]);
- _startHallSpawns.put(31922, _startHallSpawn[1]);
- _startHallSpawns.put(31923, _startHallSpawn[2]);
- _startHallSpawns.put(31924, _startHallSpawn[3]);
-
- _hallInUse.put(31921, false);
- _hallInUse.put(31922, false);
- _hallInUse.put(31923, false);
- _hallInUse.put(31924, false);
-
- _hallGateKeepers.put(31925, 25150012);
- _hallGateKeepers.put(31926, 25150013);
- _hallGateKeepers.put(31927, 25150014);
- _hallGateKeepers.put(31928, 25150015);
- _hallGateKeepers.put(31929, 25150016);
- _hallGateKeepers.put(31930, 25150002);
- _hallGateKeepers.put(31931, 25150003);
- _hallGateKeepers.put(31932, 25150004);
- _hallGateKeepers.put(31933, 25150005);
- _hallGateKeepers.put(31934, 25150006);
- _hallGateKeepers.put(31935, 25150032);
- _hallGateKeepers.put(31936, 25150033);
- _hallGateKeepers.put(31937, 25150034);
- _hallGateKeepers.put(31938, 25150035);
- _hallGateKeepers.put(31939, 25150036);
- _hallGateKeepers.put(31940, 25150022);
- _hallGateKeepers.put(31941, 25150023);
- _hallGateKeepers.put(31942, 25150024);
- _hallGateKeepers.put(31943, 25150025);
- _hallGateKeepers.put(31944, 25150026);
-
- _keyBoxNpc.put(18120, 31455);
- _keyBoxNpc.put(18121, 31455);
- _keyBoxNpc.put(18122, 31455);
- _keyBoxNpc.put(18123, 31455);
- _keyBoxNpc.put(18124, 31456);
- _keyBoxNpc.put(18125, 31456);
- _keyBoxNpc.put(18126, 31456);
- _keyBoxNpc.put(18127, 31456);
- _keyBoxNpc.put(18128, 31457);
- _keyBoxNpc.put(18129, 31457);
- _keyBoxNpc.put(18130, 31457);
- _keyBoxNpc.put(18131, 31457);
- _keyBoxNpc.put(18149, 31458);
- _keyBoxNpc.put(18150, 31459);
- _keyBoxNpc.put(18151, 31459);
- _keyBoxNpc.put(18152, 31459);
- _keyBoxNpc.put(18153, 31459);
- _keyBoxNpc.put(18154, 31460);
- _keyBoxNpc.put(18155, 31460);
- _keyBoxNpc.put(18156, 31460);
- _keyBoxNpc.put(18157, 31460);
- _keyBoxNpc.put(18158, 31461);
- _keyBoxNpc.put(18159, 31461);
- _keyBoxNpc.put(18160, 31461);
- _keyBoxNpc.put(18161, 31461);
- _keyBoxNpc.put(18162, 31462);
- _keyBoxNpc.put(18163, 31462);
- _keyBoxNpc.put(18164, 31462);
- _keyBoxNpc.put(18165, 31462);
- _keyBoxNpc.put(18183, 31463);
- _keyBoxNpc.put(18184, 31464);
- _keyBoxNpc.put(18212, 31465);
- _keyBoxNpc.put(18213, 31465);
- _keyBoxNpc.put(18214, 31465);
- _keyBoxNpc.put(18215, 31465);
- _keyBoxNpc.put(18216, 31466);
- _keyBoxNpc.put(18217, 31466);
- _keyBoxNpc.put(18218, 31466);
- _keyBoxNpc.put(18219, 31466);
-
- _victim.put(18150, 18158);
- _victim.put(18151, 18159);
- _victim.put(18152, 18160);
- _victim.put(18153, 18161);
- _victim.put(18154, 18162);
- _victim.put(18155, 18163);
- _victim.put(18156, 18164);
- _victim.put(18157, 18165);
- }
-
- private void loadMysteriousBox()
- {
- _mysteriousBoxSpawns.clear();
-
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement("SELECT id, count, npc_templateid, locx, locy, locz, heading, respawn_delay, key_npc_id FROM four_sepulchers_spawnlist Where spawntype = ? ORDER BY id"))
- {
- ps.setInt(1, 0);
- try (ResultSet rs = ps.executeQuery())
- {
- while (rs.next())
- {
- final L2Spawn spawnDat = new L2Spawn(rs.getInt("npc_templateid"));
- spawnDat.setAmount(rs.getInt("count"));
- spawnDat.setX(rs.getInt("locx"));
- spawnDat.setY(rs.getInt("locy"));
- spawnDat.setZ(rs.getInt("locz"));
- spawnDat.setHeading(rs.getInt("heading"));
- spawnDat.setRespawnDelay(rs.getInt("respawn_delay"));
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- int keyNpcId = rs.getInt("key_npc_id");
- _mysteriousBoxSpawns.put(keyNpcId, spawnDat);
- }
- }
- _log.info(getClass().getSimpleName() + ": loaded " + _mysteriousBoxSpawns.size() + " Mysterious-Box spawns.");
- }
- catch (Exception e)
- {
- // problem with initializing spawn, go to next one
- _log.log(Level.WARNING, "FourSepulchersManager.LoadMysteriousBox: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
-
- private void initKeyBoxSpawns()
- {
- for (Entry<Integer, Integer> keyNpc : _keyBoxNpc.entrySet())
- {
- try
- {
- final L2Spawn spawnDat = new L2Spawn(keyNpc.getValue());
- spawnDat.setAmount(1);
- spawnDat.setX(0);
- spawnDat.setY(0);
- spawnDat.setZ(0);
- spawnDat.setHeading(0);
- spawnDat.setRespawnDelay(3600);
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _keyBoxSpawns.put(keyNpc.getKey(), spawnDat);
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.InitKeyBoxSpawns: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
- }
-
- private void loadPhysicalMonsters()
- {
- _physicalMonsters.clear();
-
- int loaded = 0;
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps1 = con.prepareStatement("SELECT Distinct key_npc_id FROM four_sepulchers_spawnlist Where spawntype = ? ORDER BY key_npc_id"))
- {
- ps1.setInt(1, 1);
- try (ResultSet rs1 = ps1.executeQuery();
- PreparedStatement ps2 = con.prepareStatement("SELECT id, count, npc_templateid, locx, locy, locz, heading, respawn_delay, key_npc_id FROM four_sepulchers_spawnlist Where key_npc_id = ? and spawntype = ? ORDER BY id"))
- {
- while (rs1.next())
- {
- int keyNpcId = rs1.getInt("key_npc_id");
-
- ps2.setInt(1, keyNpcId);
- ps2.setInt(2, 1);
- try (ResultSet rs2 = ps2.executeQuery())
- {
- _physicalSpawns = new FastList<>();
- while (rs2.next())
- {
- final L2Spawn spawnDat = new L2Spawn(rs2.getInt("npc_templateid"));
- spawnDat.setAmount(rs2.getInt("count"));
- spawnDat.setX(rs2.getInt("locx"));
- spawnDat.setY(rs2.getInt("locy"));
- spawnDat.setZ(rs2.getInt("locz"));
- spawnDat.setHeading(rs2.getInt("heading"));
- spawnDat.setRespawnDelay(rs2.getInt("respawn_delay"));
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _physicalSpawns.add(spawnDat);
- loaded++;
- }
- }
- ps2.clearParameters();
- _physicalMonsters.put(keyNpcId, _physicalSpawns);
- }
- }
- _log.info(getClass().getSimpleName() + ": loaded " + loaded + " Physical type monsters spawns.");
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.LoadPhysicalMonsters: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
-
- private void loadMagicalMonsters()
- {
- _magicalMonsters.clear();
-
- int loaded = 0;
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps1 = con.prepareStatement("SELECT Distinct key_npc_id FROM four_sepulchers_spawnlist Where spawntype = ? ORDER BY key_npc_id"))
- {
- ps1.setInt(1, 2);
- try (ResultSet rs1 = ps1.executeQuery();
- PreparedStatement ps2 = con.prepareStatement("SELECT id, count, npc_templateid, locx, locy, locz, heading, respawn_delay, key_npc_id FROM four_sepulchers_spawnlist WHERE key_npc_id = ? AND spawntype = ? ORDER BY id"))
- {
- while (rs1.next())
- {
- int keyNpcId = rs1.getInt("key_npc_id");
-
- ps2.setInt(1, keyNpcId);
- ps2.setInt(2, 2);
- try (ResultSet rset2 = ps2.executeQuery())
- {
- _magicalSpawns = new FastList<>();
-
- while (rset2.next())
- {
- final L2Spawn spawnDat = new L2Spawn(rset2.getInt("npc_templateid"));
- spawnDat.setAmount(rset2.getInt("count"));
- spawnDat.setX(rset2.getInt("locx"));
- spawnDat.setY(rset2.getInt("locy"));
- spawnDat.setZ(rset2.getInt("locz"));
- spawnDat.setHeading(rset2.getInt("heading"));
- spawnDat.setRespawnDelay(rset2.getInt("respawn_delay"));
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _magicalSpawns.add(spawnDat);
- loaded++;
- }
- }
- ps2.clearParameters();
- _magicalMonsters.put(keyNpcId, _magicalSpawns);
- }
- }
- _log.info(getClass().getSimpleName() + ": loaded " + loaded + " Magical type monsters spawns.");
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.LoadMagicalMonsters: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
-
- private void loadDukeMonsters()
- {
- _dukeFinalMobs.clear();
- _archonSpawned.clear();
-
- int loaded = 0;
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps1 = con.prepareStatement("SELECT Distinct key_npc_id FROM four_sepulchers_spawnlist Where spawntype = ? ORDER BY key_npc_id"))
- {
- ps1.setInt(1, 5);
- try (ResultSet rs1 = ps1.executeQuery();
- PreparedStatement ps2 = con.prepareStatement("SELECT id, count, npc_templateid, locx, locy, locz, heading, respawn_delay, key_npc_id FROM four_sepulchers_spawnlist WHERE key_npc_id = ? AND spawntype = ? ORDER BY id"))
- {
- while (rs1.next())
- {
- int keyNpcId = rs1.getInt("key_npc_id");
-
- ps2.setInt(1, keyNpcId);
- ps2.setInt(2, 5);
- try (ResultSet rset2 = ps2.executeQuery())
- {
- ps2.clearParameters();
-
- _dukeFinalSpawns = new FastList<>();
-
- while (rset2.next())
- {
- final L2Spawn spawnDat = new L2Spawn(rset2.getInt("npc_templateid"));
- spawnDat.setAmount(rset2.getInt("count"));
- spawnDat.setX(rset2.getInt("locx"));
- spawnDat.setY(rset2.getInt("locy"));
- spawnDat.setZ(rset2.getInt("locz"));
- spawnDat.setHeading(rset2.getInt("heading"));
- spawnDat.setRespawnDelay(rset2.getInt("respawn_delay"));
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _dukeFinalSpawns.add(spawnDat);
- loaded++;
- }
- }
- ps2.clearParameters();
- _dukeFinalMobs.put(keyNpcId, _dukeFinalSpawns);
- _archonSpawned.put(keyNpcId, false);
- }
- }
- _log.info(getClass().getSimpleName() + ": loaded " + loaded + " Church of duke monsters spawns.");
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.LoadDukeMonsters: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
-
- private void loadEmperorsGraveMonsters()
- {
- _emperorsGraveNpcs.clear();
-
- int loaded = 0;
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps1 = con.prepareStatement("SELECT Distinct key_npc_id FROM four_sepulchers_spawnlist Where spawntype = ? ORDER BY key_npc_id"))
- {
- ps1.setInt(1, 6);
- try (ResultSet rs1 = ps1.executeQuery();
- PreparedStatement ps2 = con.prepareStatement("SELECT id, count, npc_templateid, locx, locy, locz, heading, respawn_delay, key_npc_id FROM four_sepulchers_spawnlist WHERE key_npc_id = ? and spawntype = ? ORDER BY id"))
- {
- while (rs1.next())
- {
- int keyNpcId = rs1.getInt("key_npc_id");
-
- ps2.setInt(1, keyNpcId);
- ps2.setInt(2, 6);
- try (ResultSet rs2 = ps2.executeQuery())
- {
- _emperorsGraveSpawns = new FastList<>();
-
- while (rs2.next())
- {
- final L2Spawn spawnDat = new L2Spawn(rs2.getInt("npc_templateid"));
- spawnDat.setAmount(rs2.getInt("count"));
- spawnDat.setX(rs2.getInt("locx"));
- spawnDat.setY(rs2.getInt("locy"));
- spawnDat.setZ(rs2.getInt("locz"));
- spawnDat.setHeading(rs2.getInt("heading"));
- spawnDat.setRespawnDelay(rs2.getInt("respawn_delay"));
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _emperorsGraveSpawns.add(spawnDat);
- loaded++;
- }
- }
- ps2.clearParameters();
- _emperorsGraveNpcs.put(keyNpcId, _emperorsGraveSpawns);
- }
- }
- _log.info(getClass().getSimpleName() + ": loaded " + loaded + " Emperor's grave NPC spawns.");
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.LoadEmperorsGraveMonsters: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
-
- protected void initLocationShadowSpawns()
- {
- int locNo = Rnd.get(4);
- final int[] gateKeeper =
- {
- 31929,
- 31934,
- 31939,
- 31944
- };
-
- _shadowSpawns.clear();
-
- for (int i = 0; i <= 3; i++)
- {
- try
- {
- final L2Spawn spawnDat = new L2Spawn(_shadowSpawnLoc[locNo][i][0]);
- spawnDat.setAmount(1);
- spawnDat.setX(_shadowSpawnLoc[locNo][i][1]);
- spawnDat.setY(_shadowSpawnLoc[locNo][i][2]);
- spawnDat.setZ(_shadowSpawnLoc[locNo][i][3]);
- spawnDat.setHeading(_shadowSpawnLoc[locNo][i][4]);
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _shadowSpawns.put(gateKeeper[i], spawnDat);
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Error on InitLocationShadowSpawns", e);
- }
- }
- }
-
- protected void initExecutionerSpawns()
- {
- for (int keyNpcId : _victim.keySet())
- {
- try
- {
- final L2Spawn spawnDat = new L2Spawn(_victim.get(keyNpcId));
- spawnDat.setAmount(1);
- spawnDat.setX(0);
- spawnDat.setY(0);
- spawnDat.setZ(0);
- spawnDat.setHeading(0);
- spawnDat.setRespawnDelay(3600);
- SpawnTable.getInstance().addNewSpawn(spawnDat, false);
- _executionerSpawns.put(keyNpcId, spawnDat);
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.InitExecutionerSpawns: Spawn could not be initialized: " + e.getMessage(), e);
- }
- }
- }
-
- public ScheduledFuture<?> getChangeAttackTimeTask()
- {
- return _changeAttackTimeTask;
- }
-
- public void setChangeAttackTimeTask(ScheduledFuture<?> task)
- {
- _changeAttackTimeTask = task;
- }
-
- public ScheduledFuture<?> getChangeCoolDownTimeTask()
- {
- return _changeCoolDownTimeTask;
- }
-
- public void setChangeCoolDownTimeTask(ScheduledFuture<?> task)
- {
- _changeCoolDownTimeTask = task;
- }
-
- public ScheduledFuture<?> getChangeEntryTimeTask()
- {
- return _changeEntryTimeTask;
- }
-
- public void setChangeEntryTimeTask(ScheduledFuture<?> task)
- {
- _changeEntryTimeTask = task;
- }
-
- public ScheduledFuture<?> getChangeWarmUpTimeTask()
- {
- return _changeWarmUpTimeTask;
- }
-
- public void setChangeWarmUpTimeTask(ScheduledFuture<?> task)
- {
- _changeWarmUpTimeTask = task;
- }
-
- public long getAttackTimeEnd()
- {
- return _attackTimeEnd;
- }
-
- public void setAttackTimeEnd(long attackTimeEnd)
- {
- _attackTimeEnd = attackTimeEnd;
- }
-
- public byte getCycleMin()
- {
- return _newCycleMin;
- }
-
- public long getEntrytTimeEnd()
- {
- return _entryTimeEnd;
- }
-
- public void setEntryTimeEnd(long entryTimeEnd)
- {
- _entryTimeEnd = entryTimeEnd;
- }
-
- public long getWarmUpTimeEnd()
- {
- return _warmUpTimeEnd;
- }
-
- public void setWarmUpTimeEnd(long warmUpTimeEnd)
- {
- _warmUpTimeEnd = warmUpTimeEnd;
- }
-
- public boolean isAttackTime()
- {
- return _inAttackTime;
- }
-
- public void setIsAttackTime(boolean attackTime)
- {
- _inAttackTime = attackTime;
- }
-
- public boolean isCoolDownTime()
- {
- return _inCoolDownTime;
- }
-
- public void setIsCoolDownTime(boolean isCoolDownTime)
- {
- _inCoolDownTime = isCoolDownTime;
- }
-
- public boolean isEntryTime()
- {
- return _inEntryTime;
- }
-
- public void setIsEntryTime(boolean entryTime)
- {
- _inEntryTime = entryTime;
- }
-
- public boolean isFirstTimeRun()
- {
- return _firstTimeRun;
- }
-
- public void setIsFirstTimeRun(boolean isFirstTimeRun)
- {
- _firstTimeRun = isFirstTimeRun;
- }
-
- public boolean isWarmUpTime()
- {
- return _inWarmUpTime;
- }
-
- public void setIsWarmUpTime(boolean isWarmUpTime)
- {
- _inWarmUpTime = isWarmUpTime;
- }
-
- public synchronized void tryEntry(L2Npc npc, L2PcInstance player)
- {
- Quest hostQuest = QuestManager.getInstance().getQuest(QUEST_ID);
- if (hostQuest == null)
- {
- _log.log(Level.WARNING, getClass().getSimpleName() + ": Couldn't find quest: " + QUEST_ID);
- return;
- }
- int npcId = npc.getId();
- switch (npcId)
- {
- // ID ok
- case 31921:
- case 31922:
- case 31923:
- case 31924:
- break;
- // ID not ok
- default:
- if (!player.isGM())
- {
- _log.warning("Player " + player.getName() + "(" + player.getObjectId() + ") tried to cheat in four sepulchers.");
- Util.handleIllegalPlayerAction(player, "Warning!! Character " + player.getName() + " tried to enter four sepulchers with invalid npc id.", Config.DEFAULT_PUNISH);
- }
- return;
- }
-
- if (_hallInUse.get(npcId).booleanValue())
- {
- showHtmlFile(player, npcId + "-FULL.htm", npc, null);
- return;
- }
-
- if (Config.FS_PARTY_MEMBER_COUNT > 1)
- {
- if (!player.isInParty() || (player.getParty().getMemberCount() < Config.FS_PARTY_MEMBER_COUNT))
- {
- showHtmlFile(player, npcId + "-SP.htm", npc, null);
- return;
- }
-
- if (!player.getParty().isLeader(player))
- {
- showHtmlFile(player, npcId + "-NL.htm", npc, null);
- return;
- }
-
- for (L2PcInstance mem : player.getParty().getMembers())
- {
- QuestState qs = mem.getQuestState(hostQuest.getName());
- if ((qs == null) || (!qs.isStarted() && !qs.isCompleted()))
- {
- showHtmlFile(player, npcId + "-NS.htm", npc, mem);
- return;
- }
- if (mem.getInventory().getItemByItemId(ENTRANCE_PASS) == null)
- {
- showHtmlFile(player, npcId + "-SE.htm", npc, mem);
- return;
- }
-
- if (player.getWeightPenalty() >= 3)
- {
- mem.sendPacket(SystemMessageId.INVENTORY_LESS_THAN_80_PERCENT);
- return;
- }
- }
- }
- else if ((Config.FS_PARTY_MEMBER_COUNT <= 1) && player.isInParty())
- {
- if (!player.getParty().isLeader(player))
- {
- showHtmlFile(player, npcId + "-NL.htm", npc, null);
- return;
- }
- for (L2PcInstance mem : player.getParty().getMembers())
- {
- QuestState qs = mem.getQuestState(hostQuest.getName());
- if ((qs == null) || (!qs.isStarted() && !qs.isCompleted()))
- {
- showHtmlFile(player, npcId + "-NS.htm", npc, mem);
- return;
- }
- if (mem.getInventory().getItemByItemId(ENTRANCE_PASS) == null)
- {
- showHtmlFile(player, npcId + "-SE.htm", npc, mem);
- return;
- }
-
- if (player.getWeightPenalty() >= 3)
- {
- mem.sendPacket(SystemMessageId.INVENTORY_LESS_THAN_80_PERCENT);
- return;
- }
- }
- }
- else
- {
- QuestState qs = player.getQuestState(hostQuest.getName());
- if ((qs == null) || (!qs.isStarted() && !qs.isCompleted()))
- {
- showHtmlFile(player, npcId + "-NS.htm", npc, player);
- return;
- }
- if (player.getInventory().getItemByItemId(ENTRANCE_PASS) == null)
- {
- showHtmlFile(player, npcId + "-SE.htm", npc, player);
- return;
- }
-
- if (player.getWeightPenalty() >= 3)
- {
- player.sendPacket(SystemMessageId.INVENTORY_LESS_THAN_80_PERCENT);
- return;
- }
- }
-
- if (!isEntryTime())
- {
- showHtmlFile(player, npcId + "-NE.htm", npc, null);
- return;
- }
-
- showHtmlFile(player, npcId + "-OK.htm", npc, null);
-
- entry(npcId, player);
- }
-
- private void entry(int npcId, L2PcInstance player)
- {
- int[] Location = _startHallSpawns.get(npcId);
- int driftx;
- int drifty;
-
- if (Config.FS_PARTY_MEMBER_COUNT > 1)
- {
- List<L2PcInstance> members = new FastList<>();
- for (L2PcInstance mem : player.getParty().getMembers())
- {
- if (!mem.isDead() && Util.checkIfInRange(700, player, mem, true))
- {
- members.add(mem);
- }
- }
-
- for (L2PcInstance mem : members)
- {
- GrandBossManager.getInstance().getZone(Location[0], Location[1], Location[2]).allowPlayerEntry(mem, 30);
- driftx = Rnd.get(-80, 80);
- drifty = Rnd.get(-80, 80);
- mem.teleToLocation(Location[0] + driftx, Location[1] + drifty, Location[2]);
- mem.destroyItemByItemId("Quest", ENTRANCE_PASS, 1, mem, true);
- if (mem.getInventory().getItemByItemId(ANTIQUE_BROOCH) == null)
- {
- mem.addItem("Quest", USED_PASS, 1, mem, true);
- }
-
- L2ItemInstance hallsKey = mem.getInventory().getItemByItemId(CHAPEL_KEY);
- if (hallsKey != null)
- {
- mem.destroyItemByItemId("Quest", CHAPEL_KEY, hallsKey.getCount(), mem, true);
- }
- }
-
- _challengers.put(npcId, player);
-
- _hallInUse.put(npcId, true);
- }
- if ((Config.FS_PARTY_MEMBER_COUNT <= 1) && player.isInParty())
- {
- List<L2PcInstance> members = new FastList<>();
- for (L2PcInstance mem : player.getParty().getMembers())
- {
- if (!mem.isDead() && Util.checkIfInRange(700, player, mem, true))
- {
- members.add(mem);
- }
- }
-
- for (L2PcInstance mem : members)
- {
- GrandBossManager.getInstance().getZone(Location[0], Location[1], Location[2]).allowPlayerEntry(mem, 30);
- driftx = Rnd.get(-80, 80);
- drifty = Rnd.get(-80, 80);
- mem.teleToLocation(Location[0] + driftx, Location[1] + drifty, Location[2]);
- mem.destroyItemByItemId("Quest", ENTRANCE_PASS, 1, mem, true);
- if (mem.getInventory().getItemByItemId(ANTIQUE_BROOCH) == null)
- {
- mem.addItem("Quest", USED_PASS, 1, mem, true);
- }
-
- L2ItemInstance hallsKey = mem.getInventory().getItemByItemId(CHAPEL_KEY);
- if (hallsKey != null)
- {
- mem.destroyItemByItemId("Quest", CHAPEL_KEY, hallsKey.getCount(), mem, true);
- }
- }
-
- _challengers.put(npcId, player);
-
- _hallInUse.put(npcId, true);
- }
- else
- {
- GrandBossManager.getInstance().getZone(Location[0], Location[1], Location[2]).allowPlayerEntry(player, 30);
- driftx = Rnd.get(-80, 80);
- drifty = Rnd.get(-80, 80);
- player.teleToLocation(Location[0] + driftx, Location[1] + drifty, Location[2]);
- player.destroyItemByItemId("Quest", ENTRANCE_PASS, 1, player, true);
- if (player.getInventory().getItemByItemId(ANTIQUE_BROOCH) == null)
- {
- player.addItem("Quest", USED_PASS, 1, player, true);
- }
-
- L2ItemInstance hallsKey = player.getInventory().getItemByItemId(CHAPEL_KEY);
- if (hallsKey != null)
- {
- player.destroyItemByItemId("Quest", CHAPEL_KEY, hallsKey.getCount(), player, true);
- }
-
- _challengers.put(npcId, player);
-
- _hallInUse.put(npcId, true);
- }
- }
-
- public void spawnMysteriousBox(int npcId)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- L2Spawn spawnDat = _mysteriousBoxSpawns.get(npcId);
- if (spawnDat != null)
- {
- _allMobs.add(spawnDat.doSpawn());
- spawnDat.stopRespawn();
- }
- }
-
- public void spawnMonster(int npcId)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- List<L2Spawn> monsterList;
- List<L2SepulcherMonsterInstance> mobs = new FastList<>();
-
- if (Rnd.get(2) == 0)
- {
- monsterList = _physicalMonsters.get(npcId);
- }
- else
- {
- monsterList = _magicalMonsters.get(npcId);
- }
-
- if (monsterList != null)
- {
- boolean spawnKeyBoxMob = false;
- boolean spawnedKeyBoxMob = false;
-
- for (L2Spawn spawnDat : monsterList)
- {
- if (spawnedKeyBoxMob)
- {
- spawnKeyBoxMob = false;
- }
- else
- {
- switch (npcId)
- {
- case 31469:
- case 31474:
- case 31479:
- case 31484:
- if (Rnd.get(48) == 0)
- {
- spawnKeyBoxMob = true;
- }
- break;
- default:
- spawnKeyBoxMob = false;
- }
- }
-
- L2SepulcherMonsterInstance mob = null;
-
- if (spawnKeyBoxMob)
- {
- try
- {
- final L2Spawn keyBoxMobSpawn = new L2Spawn(18149);
- keyBoxMobSpawn.setAmount(1);
- keyBoxMobSpawn.setLocation(spawnDat.getLocation());
- keyBoxMobSpawn.setRespawnDelay(3600);
- SpawnTable.getInstance().addNewSpawn(keyBoxMobSpawn, false);
- mob = (L2SepulcherMonsterInstance) keyBoxMobSpawn.doSpawn();
- keyBoxMobSpawn.stopRespawn();
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "FourSepulchersManager.SpawnMonster: Spawn could not be initialized: " + e.getMessage(), e);
- }
-
- spawnedKeyBoxMob = true;
- }
- else
- {
- mob = (L2SepulcherMonsterInstance) spawnDat.doSpawn();
- spawnDat.stopRespawn();
- }
-
- if (mob != null)
- {
- mob.mysteriousBoxId = npcId;
- switch (npcId)
- {
- case 31469:
- case 31474:
- case 31479:
- case 31484:
- case 31472:
- case 31477:
- case 31482:
- case 31487:
- mobs.add(mob);
- }
- _allMobs.add(mob);
- }
- }
-
- switch (npcId)
- {
- case 31469:
- case 31474:
- case 31479:
- case 31484:
- _viscountMobs.put(npcId, mobs);
- break;
-
- case 31472:
- case 31477:
- case 31482:
- case 31487:
- _dukeMobs.put(npcId, mobs);
- break;
- }
- }
- }
-
- public synchronized boolean isViscountMobsAnnihilated(int npcId)
- {
- List<L2SepulcherMonsterInstance> mobs = _viscountMobs.get(npcId);
- if (mobs == null)
- {
- return true;
- }
-
- for (L2SepulcherMonsterInstance mob : mobs)
- {
- if (!mob.isDead())
- {
- return false;
- }
- }
-
- return true;
- }
-
- public synchronized boolean isDukeMobsAnnihilated(int npcId)
- {
- List<L2SepulcherMonsterInstance> mobs = _dukeMobs.get(npcId);
- if (mobs == null)
- {
- return true;
- }
-
- for (L2SepulcherMonsterInstance mob : mobs)
- {
- if (!mob.isDead())
- {
- return false;
- }
- }
-
- return true;
- }
-
- public void spawnKeyBox(L2Npc activeChar)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- L2Spawn spawnDat = _keyBoxSpawns.get(activeChar.getId());
- if (spawnDat != null)
- {
- spawnDat.setAmount(1);
- spawnDat.setX(activeChar.getX());
- spawnDat.setY(activeChar.getY());
- spawnDat.setZ(activeChar.getZ());
- spawnDat.setHeading(activeChar.getHeading());
- spawnDat.setRespawnDelay(3600);
- _allMobs.add(spawnDat.doSpawn());
- spawnDat.stopRespawn();
- }
- }
-
- public void spawnExecutionerOfHalisha(L2Npc activeChar)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- L2Spawn spawnDat = _executionerSpawns.get(activeChar.getId());
- if (spawnDat != null)
- {
- spawnDat.setAmount(1);
- spawnDat.setX(activeChar.getX());
- spawnDat.setY(activeChar.getY());
- spawnDat.setZ(activeChar.getZ());
- spawnDat.setHeading(activeChar.getHeading());
- spawnDat.setRespawnDelay(3600);
- _allMobs.add(spawnDat.doSpawn());
- spawnDat.stopRespawn();
- }
- }
-
- public void spawnArchonOfHalisha(int npcId)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- if (_archonSpawned.get(npcId))
- {
- return;
- }
-
- List<L2Spawn> monsterList = _dukeFinalMobs.get(npcId);
- if (monsterList != null)
- {
- for (L2Spawn spawnDat : monsterList)
- {
- L2SepulcherMonsterInstance mob = (L2SepulcherMonsterInstance) spawnDat.doSpawn();
- spawnDat.stopRespawn();
-
- if (mob != null)
- {
- mob.mysteriousBoxId = npcId;
- _allMobs.add(mob);
- }
- }
- _archonSpawned.put(npcId, true);
- }
- }
-
- public void spawnEmperorsGraveNpc(int npcId)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- List<L2Spawn> monsterList = _emperorsGraveNpcs.get(npcId);
- if (monsterList != null)
- {
- for (L2Spawn spawnDat : monsterList)
- {
- _allMobs.add(spawnDat.doSpawn());
- spawnDat.stopRespawn();
- }
- }
- }
-
- public void locationShadowSpawns()
- {
- int locNo = Rnd.get(4);
- final int[] gateKeeper =
- {
- 31929,
- 31934,
- 31939,
- 31944
- };
-
- for (int i = 0; i <= 3; i++)
- {
- int keyNpcId = gateKeeper[i];
- L2Spawn spawnDat = _shadowSpawns.get(keyNpcId);
- spawnDat.setX(_shadowSpawnLoc[locNo][i][1]);
- spawnDat.setY(_shadowSpawnLoc[locNo][i][2]);
- spawnDat.setZ(_shadowSpawnLoc[locNo][i][3]);
- spawnDat.setHeading(_shadowSpawnLoc[locNo][i][4]);
- _shadowSpawns.put(keyNpcId, spawnDat);
- }
- }
-
- public void spawnShadow(int npcId)
- {
- if (!isAttackTime())
- {
- return;
- }
-
- L2Spawn spawnDat = _shadowSpawns.get(npcId);
- if (spawnDat != null)
- {
- L2SepulcherMonsterInstance mob = (L2SepulcherMonsterInstance) spawnDat.doSpawn();
- spawnDat.stopRespawn();
-
- if (mob != null)
- {
- mob.mysteriousBoxId = npcId;
- _allMobs.add(mob);
- }
- }
- }
-
- public void deleteAllMobs()
- {
- for (L2Npc mob : _allMobs)
- {
- if (mob == null)
- {
- continue;
- }
-
- try
- {
- if (mob.getSpawn() != null)
- {
- mob.getSpawn().stopRespawn();
- }
- mob.deleteMe();
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, getClass().getSimpleName() + ": Failed deleting mob.", e);
- }
- }
- _allMobs.clear();
- }
-
- protected void closeAllDoors()
- {
- for (int doorId : _hallGateKeepers.values())
- {
- try
- {
- L2DoorInstance door = DoorData.getInstance().getDoor(doorId);
- if (door != null)
- {
- door.closeMe();
- }
- else
- {
- _log.warning(getClass().getSimpleName() + ": Attempted to close undefined door. doorId: " + doorId);
- }
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, getClass().getSimpleName() + ": Failed closing door", e);
- }
- }
- }
-
- protected byte minuteSelect(byte min)
- {
- if (((double) min % 5) != 0)// if doesn't divides on 5 fully
- {
- // mad table for selecting proper minutes...
- // may be there is a better way to do this
- switch (min)
- {
- case 6:
- case 7:
- min = 5;
- break;
- case 8:
- case 9:
- case 11:
- case 12:
- min = 10;
- break;
- case 13:
- case 14:
- case 16:
- case 17:
- min = 15;
- break;
- case 18:
- case 19:
- case 21:
- case 22:
- min = 20;
- break;
- case 23:
- case 24:
- case 26:
- case 27:
- min = 25;
- break;
- case 28:
- case 29:
- case 31:
- case 32:
- min = 30;
- break;
- case 33:
- case 34:
- case 36:
- case 37:
- min = 35;
- break;
- case 38:
- case 39:
- case 41:
- case 42:
- min = 40;
- break;
- case 43:
- case 44:
- case 46:
- case 47:
- min = 45;
- break;
- case 48:
- case 49:
- case 51:
- case 52:
- min = 50;
- break;
- case 53:
- case 54:
- case 56:
- case 57:
- min = 55;
- break;
- }
- }
- return min;
- }
-
- public void managerSay(byte min)
- {
- // for attack phase, sending message every 5 minutes
- if (_inAttackTime)
- {
- if (min < 5)
- {
- return; // do not shout when < 5 minutes
- }
-
- min = minuteSelect(min);
-
- NpcStringId msg = NpcStringId.MINUTES_HAVE_PASSED;
-
- if (min == 90)
- {
- msg = NpcStringId.GAME_OVER_THE_TELEPORT_WILL_APPEAR_MOMENTARILY;
- }
-
- for (L2Spawn temp : _managers)
- {
- if (temp == null)
- {
- _log.warning(getClass().getSimpleName() + ": managerSay(): manager is null");
- continue;
- }
- if (!(temp.getLastSpawn() instanceof L2SepulcherNpcInstance))
- {
- _log.warning(getClass().getSimpleName() + ": managerSay(): manager is not Sepulcher instance");
- continue;
- }
- // hall not used right now, so its manager will not tell you anything :)
- // if you don't need this - delete next two lines.
- if (!_hallInUse.get(temp.getId()).booleanValue())
- {
- continue;
- }
-
- ((L2SepulcherNpcInstance) temp.getLastSpawn()).sayInShout(msg);
- }
- }
-
- else if (_inEntryTime)
- {
- NpcStringId msg1 = NpcStringId.YOU_MAY_NOW_ENTER_THE_SEPULCHER;
- NpcStringId msg2 = NpcStringId.IF_YOU_PLACE_YOUR_HAND_ON_THE_STONE_STATUE_IN_FRONT_OF_EACH_SEPULCHER_YOU_WILL_BE_ABLE_TO_ENTER;
- for (L2Spawn temp : _managers)
- {
- if (temp == null)
- {
- _log.warning(getClass().getSimpleName() + ": Something goes wrong in managerSay()...");
- continue;
- }
- if (!(temp.getLastSpawn() instanceof L2SepulcherNpcInstance))
- {
- _log.warning(getClass().getSimpleName() + ": Something goes wrong in managerSay()...");
- continue;
- }
- ((L2SepulcherNpcInstance) temp.getLastSpawn()).sayInShout(msg1);
- ((L2SepulcherNpcInstance) temp.getLastSpawn()).sayInShout(msg2);
- }
- }
- }
-
- public Map<Integer, Integer> getHallGateKeepers()
- {
- return _hallGateKeepers;
- }
-
- public void showHtmlFile(L2PcInstance player, String file, L2Npc npc, L2PcInstance member)
- {
- final NpcHtmlMessage html = new NpcHtmlMessage(npc.getObjectId());
- html.setFile(player.getHtmlPrefix(), "data/html/SepulcherNpc/" + file);
- if (member != null)
- {
- html.replace("%member%", member.getName());
- }
- player.sendPacket(html);
- }
-
- public static final FourSepulchersManager getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private static class SingletonHolder
- {
- protected static final FourSepulchersManager _instance = new FourSepulchersManager();
- }
- }
|