123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- /*
- * This program 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.
- *
- * 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 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.datatables;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastSet;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.instancemanager.DayNightSpawnManager;
- import com.l2jserver.gameserver.model.L2Spawn;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.templates.chars.L2NpcTemplate;
- /**
- * This class ...
- *
- * @author Nightmare
- * @version $Revision: 1.5.2.6.2.7 $ $Date: 2005/03/27 15:29:18 $
- */
- public class SpawnTable
- {
- private static Logger _log = Logger.getLogger(SpawnTable.class.getName());
-
- private FastSet<L2Spawn> _spawntable = new FastSet<L2Spawn>().shared();
- private int _npcSpawnCount;
- private int _customSpawnCount;
-
- public static SpawnTable getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private SpawnTable()
- {
- if (!Config.ALT_DEV_NO_SPAWNS)
- fillSpawnTable();
- }
-
- public FastSet<L2Spawn> getSpawnTable()
- {
- return _spawntable;
- }
-
- private void fillSpawnTable()
- {
- Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("SELECT count, npc_templateid, locx, locy, locz, heading, respawn_delay, loc_id, periodOfDay FROM spawnlist");
- ResultSet rset = statement.executeQuery();
-
- L2Spawn spawnDat;
- L2NpcTemplate template1;
-
- while (rset.next())
- {
- template1 = NpcTable.getInstance().getTemplate(rset.getInt("npc_templateid"));
- if (template1 != null)
- {
- if (template1.isType("L2SiegeGuard"))
- {
- // Don't spawn
- }
- else if (template1.isType("L2RaidBoss"))
- {
- // Don't spawn raidboss
- }
- else if (!Config.ALLOW_CLASS_MASTERS && template1.isType("L2ClassMaster"))
- {
- // Dont' spawn class masters
- }
- else
- {
- spawnDat = new L2Spawn(template1);
- spawnDat.setAmount(rset.getInt("count"));
- spawnDat.setLocx(rset.getInt("locx"));
- spawnDat.setLocy(rset.getInt("locy"));
- spawnDat.setLocz(rset.getInt("locz"));
- spawnDat.setHeading(rset.getInt("heading"));
- spawnDat.setRespawnDelay(rset.getInt("respawn_delay"));
- int loc_id = rset.getInt("loc_id");
- spawnDat.setLocation(loc_id);
-
- switch (rset.getInt("periodOfDay"))
- {
- case 0: // default
- _npcSpawnCount += spawnDat.init();
- break;
- case 1: // Day
- DayNightSpawnManager.getInstance().addDayCreature(spawnDat);
- _npcSpawnCount++;
- break;
- case 2: // Night
- DayNightSpawnManager.getInstance().addNightCreature(spawnDat);
- _npcSpawnCount++;
- break;
- }
-
- _spawntable.add(spawnDat);
- }
- }
- else
- {
- _log.warning("SpawnTable: Data missing in NPC table for ID: " + rset.getInt("npc_templateid") + ".");
- }
- }
- rset.close();
- statement.close();
- }
- catch (Exception e)
- {
- // problem with initializing spawn, go to next one
- _log.log(Level.WARNING, "SpawnTable: Spawn could not be initialized: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
-
- _log.info("SpawnTable: Loaded " + _spawntable.size() + " Npc Spawn Locations.");
-
- if (Config.CUSTOM_SPAWNLIST_TABLE)
- {
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("SELECT count, npc_templateid, locx, locy, locz, heading, respawn_delay, loc_id, periodOfDay FROM custom_spawnlist");
- ResultSet rset = statement.executeQuery();
-
- L2Spawn spawnDat;
- L2NpcTemplate template1;
-
- while (rset.next())
- {
- template1 = NpcTable.getInstance().getTemplate(rset.getInt("npc_templateid"));
- if (template1 != null)
- {
- if (template1.isType("L2SiegeGuard"))
- {
- // Don't spawn
- }
- else if (template1.isType("L2RaidBoss"))
- {
- // Don't spawn raidboss
- }
- else if (!Config.ALLOW_CLASS_MASTERS && template1.isType("L2ClassMaster"))
- {
- // Dont' spawn class masters
- }
- else
- {
- spawnDat = new L2Spawn(template1);
- spawnDat.setAmount(rset.getInt("count"));
- spawnDat.setLocx(rset.getInt("locx"));
- spawnDat.setLocy(rset.getInt("locy"));
- spawnDat.setLocz(rset.getInt("locz"));
- spawnDat.setHeading(rset.getInt("heading"));
- spawnDat.setRespawnDelay(rset.getInt("respawn_delay"));
- spawnDat.setCustom(true);
- int loc_id = rset.getInt("loc_id");
- spawnDat.setLocation(loc_id);
-
- switch (rset.getInt("periodOfDay"))
- {
- case 0: // default
- _customSpawnCount += spawnDat.init();
- break;
- case 1: // Day
- DayNightSpawnManager.getInstance().addDayCreature(spawnDat);
- _customSpawnCount++;
- break;
- case 2: // Night
- DayNightSpawnManager.getInstance().addNightCreature(spawnDat);
- _customSpawnCount++;
- break;
- }
-
- _spawntable.add(spawnDat);
- }
- }
- else
- {
- _log.warning("CustomSpawnTable: Data missing in NPC table for ID: " + rset.getInt("npc_templateid") + ".");
- }
- }
- rset.close();
- statement.close();
- }
- catch (Exception e)
- {
- // problem with initializing spawn, go to next one
- _log.log(Level.WARNING, "CustomSpawnTable: Spawn could not be initialized: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- _log.info("CustomSpawnTable: Loaded " + _customSpawnCount + " Npc Spawn Locations.");
-
- }
-
- if (Config.DEBUG)
- _log.fine("SpawnTable: Spawning completed, total number of NPCs in the world: " + (_npcSpawnCount + _customSpawnCount));
-
- }
-
- public void addNewSpawn(L2Spawn spawn, boolean storeInDb)
- {
- _spawntable.add(spawn);
-
- if (storeInDb)
- {
- String spawnTable;
- if (spawn.isCustom() && Config.CUSTOM_SPAWNLIST_TABLE)
- spawnTable = "custom_spawnlist";
- else
- spawnTable = "spawnlist";
-
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("INSERT INTO " + spawnTable
- + "(count,npc_templateid,locx,locy,locz,heading,respawn_delay,loc_id) values(?,?,?,?,?,?,?,?)");
- statement.setInt(1, spawn.getAmount());
- statement.setInt(2, spawn.getNpcid());
- statement.setInt(3, spawn.getLocx());
- statement.setInt(4, spawn.getLocy());
- statement.setInt(5, spawn.getLocz());
- statement.setInt(6, spawn.getHeading());
- statement.setInt(7, spawn.getRespawnDelay() / 1000);
- statement.setInt(8, spawn.getLocation());
- statement.execute();
- statement.close();
- }
- catch (Exception e)
- {
- // problem with storing spawn
- _log.log(Level.WARNING, "SpawnTable: Could not store spawn in the DB:" + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
- }
-
- public void deleteSpawn(L2Spawn spawn, boolean updateDb)
- {
-
- if (!_spawntable.remove(spawn))
- return;
-
- if (updateDb)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("DELETE FROM "
- + (spawn.isCustom() ? "custom_spawnlist" : "spawnlist") + " WHERE locx=? AND locy=? AND locz=? AND npc_templateid=? AND heading=?");
- statement.setInt(1, spawn.getLocx());
- statement.setInt(2, spawn.getLocy());
- statement.setInt(3, spawn.getLocz());
- statement.setInt(4, spawn.getNpcid());
- statement.setInt(5, spawn.getHeading());
- statement.execute();
- statement.close();
- }
- catch (Exception e)
- {
- // problem with deleting spawn
- _log.log(Level.WARNING, "SpawnTable: Spawn " + spawn + " could not be removed from DB: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
-
- }
- }
-
- //just wrapper
- public void reloadAll()
- {
- fillSpawnTable();
- }
-
- /**
- * Get all the spawn of a NPC<BR><BR>
- * @param activeChar
- * @param npcId
- * @param teleportIndex
- * @param showposition
- */
- public void findNPCInstances(L2PcInstance activeChar, int npcId, int teleportIndex, boolean showposition)
- {
- int index = 0;
- for (L2Spawn spawn : _spawntable)
- {
-
- if (npcId == spawn.getNpcid())
- {
- index++;
- L2Npc _npc = spawn.getLastSpawn();
- if (teleportIndex > -1)
- {
- if (teleportIndex == index)
- {
- if(showposition && _npc != null)
- activeChar.teleToLocation(_npc.getX(), _npc.getY(), _npc.getZ(), true);
- else
- activeChar.teleToLocation(spawn.getLocx(), spawn.getLocy(), spawn.getLocz(), true);
- }
- }
- else
- {
- if(showposition && _npc != null)
- activeChar.sendMessage(index + " - " + spawn.getTemplate().getName() + " (" + spawn + "): " + _npc.getX() + " "+ _npc.getY() + " " + _npc.getZ());
- else
- activeChar.sendMessage(index + " - " + spawn.getTemplate().getName() + " (" + spawn + "): " + spawn.getLocx() + " "+ spawn.getLocy() + " " + spawn.getLocz());
- }
- }
- }
-
- if (index == 0)
- activeChar.sendMessage("No current spawns found.");
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final SpawnTable _instance = new SpawnTable();
- }
- }
|