123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- /*
- * 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.instancemanager;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.HashMap;
- import java.util.Map;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import org.w3c.dom.NamedNodeMap;
- import org.w3c.dom.Node;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.engines.DocumentParser;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Instance;
- /**
- * @author evill33t, GodKratos
- */
- public class InstanceManager extends DocumentParser
- {
- private static final FastMap<Integer, Instance> _instanceList = new FastMap<>();
- private final FastMap<Integer, InstanceWorld> _instanceWorlds = new FastMap<>();
- private int _dynamic = 300000;
-
- // InstanceId Names
- private static final Map<Integer, String> _instanceIdNames = new HashMap<>();
- private final Map<Integer, Map<Integer, Long>> _playerInstanceTimes = new FastMap<>();
-
- private static final String ADD_INSTANCE_TIME = "INSERT INTO character_instance_time (charId,instanceId,time) values (?,?,?) ON DUPLICATE KEY UPDATE time=?";
- private static final String RESTORE_INSTANCE_TIMES = "SELECT instanceId,time FROM character_instance_time WHERE charId=?";
- private static final String DELETE_INSTANCE_TIME = "DELETE FROM character_instance_time WHERE charId=? AND instanceId=?";
-
- protected InstanceManager()
- {
- // Creates the multiverse.
- _instanceList.put(-1, new Instance(-1, "multiverse"));
- _log.info(getClass().getSimpleName() + ": Multiverse Instance created.");
- // Creates the universe.
- _instanceList.put(0, new Instance(0, "universe"));
- _log.info(getClass().getSimpleName() + ": Universe Instance created.");
- load();
- }
-
- @Override
- public void load()
- {
- _instanceIdNames.clear();
- parseDatapackFile("data/instancenames.xml");
- _log.info(getClass().getSimpleName() + ": Loaded " + _instanceIdNames.size() + " instance names.");
- }
-
- /**
- * @param playerObjId
- * @param id
- * @return
- */
- public long getInstanceTime(int playerObjId, int id)
- {
- if (!_playerInstanceTimes.containsKey(playerObjId))
- {
- restoreInstanceTimes(playerObjId);
- }
- if (_playerInstanceTimes.get(playerObjId).containsKey(id))
- {
- return _playerInstanceTimes.get(playerObjId).get(id);
- }
- return -1;
- }
-
- /**
- * @param playerObjId
- * @return
- */
- public Map<Integer, Long> getAllInstanceTimes(int playerObjId)
- {
- if (!_playerInstanceTimes.containsKey(playerObjId))
- {
- restoreInstanceTimes(playerObjId);
- }
- return _playerInstanceTimes.get(playerObjId);
- }
-
- /**
- * @param playerObjId
- * @param id
- * @param time
- */
- public void setInstanceTime(int playerObjId, int id, long time)
- {
- if (!_playerInstanceTimes.containsKey(playerObjId))
- {
- restoreInstanceTimes(playerObjId);
- }
-
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement(ADD_INSTANCE_TIME))
- {
- ps.setInt(1, playerObjId);
- ps.setInt(2, id);
- ps.setLong(3, time);
- ps.setLong(4, time);
- ps.execute();
- _playerInstanceTimes.get(playerObjId).put(id, time);
- }
- catch (Exception e)
- {
- _log.warning(getClass().getSimpleName() + ": Could not insert character instance time data: " + e.getMessage());
- }
- }
-
- /**
- * @param playerObjId
- * @param id
- */
- public void deleteInstanceTime(int playerObjId, int id)
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement(DELETE_INSTANCE_TIME))
- {
- ps.setInt(1, playerObjId);
- ps.setInt(2, id);
- ps.execute();
- _playerInstanceTimes.get(playerObjId).remove(id);
- }
- catch (Exception e)
- {
- _log.warning(getClass().getSimpleName() + ": Could not delete character instance time data: " + e.getMessage());
- }
- }
-
- /**
- * @param playerObjId
- */
- public void restoreInstanceTimes(int playerObjId)
- {
- if (_playerInstanceTimes.containsKey(playerObjId))
- {
- return; // already restored
- }
- _playerInstanceTimes.put(playerObjId, new FastMap<Integer, Long>());
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement ps = con.prepareStatement(RESTORE_INSTANCE_TIMES))
- {
- ps.setInt(1, playerObjId);
- try (ResultSet rs = ps.executeQuery())
- {
- while (rs.next())
- {
- int id = rs.getInt("instanceId");
- long time = rs.getLong("time");
- if (time < System.currentTimeMillis())
- {
- deleteInstanceTime(playerObjId, id);
- }
- else
- {
- _playerInstanceTimes.get(playerObjId).put(id, time);
- }
- }
- }
- }
- catch (Exception e)
- {
- _log.warning(getClass().getSimpleName() + ": Could not delete character instance time data: " + e.getMessage());
- }
- }
-
- /**
- * @param id
- * @return
- */
- public String getInstanceIdName(int id)
- {
- if (_instanceIdNames.containsKey(id))
- {
- return _instanceIdNames.get(id);
- }
- return ("UnknownInstance");
- }
-
- @Override
- protected void parseDocument()
- {
- for (Node n = getCurrentDocument().getFirstChild(); n != null; n = n.getNextSibling())
- {
- if ("list".equals(n.getNodeName()))
- {
- NamedNodeMap attrs;
- for (Node d = n.getFirstChild(); d != null; d = d.getNextSibling())
- {
- if ("instance".equals(d.getNodeName()))
- {
- attrs = d.getAttributes();
- _instanceIdNames.put(parseInteger(attrs, "id"), attrs.getNamedItem("name").getNodeValue());
- }
- }
- }
- }
- }
-
- public static class InstanceWorld
- {
- public int instanceId;
- public int templateId = -1;
- public FastList<Integer> allowed = new FastList<>();
- public volatile int status;
- }
-
- /**
- * @param world
- */
- public void addWorld(InstanceWorld world)
- {
- _instanceWorlds.put(world.instanceId, world);
- }
-
- /**
- * @param instanceId
- * @return
- */
- public InstanceWorld getWorld(int instanceId)
- {
- return _instanceWorlds.get(instanceId);
- }
-
- /**
- * @param player
- * @return
- */
- public InstanceWorld getPlayerWorld(L2PcInstance player)
- {
- for (InstanceWorld temp : _instanceWorlds.values())
- {
- if (temp == null)
- {
- continue;
- }
- // check if the player have a World Instance where he/she is allowed to enter
- if (temp.allowed.contains(player.getObjectId()))
- {
- return temp;
- }
- }
- return null;
- }
-
- /**
- * @param instanceid
- */
- public void destroyInstance(int instanceid)
- {
- if (instanceid <= 0)
- {
- return;
- }
- Instance temp = _instanceList.get(instanceid);
- if (temp != null)
- {
- temp.removeNpcs();
- temp.removePlayers();
- temp.removeDoors();
- temp.cancelTimer();
- _instanceList.remove(instanceid);
- if (_instanceWorlds.containsKey(instanceid))
- {
- _instanceWorlds.remove(instanceid);
- }
- }
- }
-
- /**
- * @param instanceid
- * @return
- */
- public Instance getInstance(int instanceid)
- {
- return _instanceList.get(instanceid);
- }
-
- /**
- * @return
- */
- public FastMap<Integer, Instance> getInstances()
- {
- return _instanceList;
- }
-
- /**
- * @param objectId
- * @return
- */
- public int getPlayerInstance(int objectId)
- {
- for (Instance temp : _instanceList.values())
- {
- if (temp == null)
- {
- continue;
- }
- // check if the player is in any active instance
- if (temp.containsPlayer(objectId))
- {
- return temp.getId();
- }
- }
- // 0 is default instance aka the world
- return 0;
- }
-
- /**
- * @param id
- * @return
- */
- public boolean createInstance(int id)
- {
- if (getInstance(id) != null)
- {
- return false;
- }
-
- Instance instance = new Instance(id);
- _instanceList.put(id, instance);
- return true;
- }
-
- /**
- * @param id
- * @param template
- * @return
- */
- public boolean createInstanceFromTemplate(int id, String template)
- {
- if (getInstance(id) != null)
- {
- return false;
- }
-
- Instance instance = new Instance(id);
- _instanceList.put(id, instance);
- instance.loadInstanceTemplate(template);
- return true;
- }
-
- /**
- * Create a new instance with a dynamic instance id based on a template (or null)
- * @param template xml file
- * @return
- */
- public int createDynamicInstance(String template)
- {
- while (getInstance(_dynamic) != null)
- {
- _dynamic++;
- if (_dynamic == Integer.MAX_VALUE)
- {
- _log.warning(getClass().getSimpleName() + ": More then " + (Integer.MAX_VALUE - 300000) + " instances created");
- _dynamic = 300000;
- }
- }
- Instance instance = new Instance(_dynamic);
- _instanceList.put(_dynamic, instance);
- if (template != null)
- {
- instance.loadInstanceTemplate(template);
- }
- return _dynamic;
- }
-
- public static final InstanceManager getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private static class SingletonHolder
- {
- protected static final InstanceManager _instance = new InstanceManager();
- }
- }
|