123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- /*
- * 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 net.sf.l2j.gameserver.instancemanager;
- import java.io.FileNotFoundException;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.entity.Instance;
- /**
- * @author evill33t, GodKratos
- *
- */
- public class InstanceManager
- {
- private final static Logger _log = Logger.getLogger(InstanceManager.class.getName());
- private FastMap<Integer, Instance> _instanceList = new FastMap<Integer, Instance>();
- private FastMap<Integer, InstanceWorld> _instanceWorlds = new FastMap<Integer, InstanceWorld>();
- private int _dynamic = 300000;
-
- public class InstanceWorld
- {
- public int instanceId;
- public FastList<L2PcInstance> allowed = new FastList<L2PcInstance>();
- public int status;
- }
-
- public void addWorld(InstanceWorld world)
- {
- _instanceWorlds.put(world.instanceId, world);
- }
-
- public InstanceWorld getWorld(int instanceId)
- {
- return _instanceWorlds.get(instanceId);
- }
-
- public InstanceWorld getPlayerWorld(L2PcInstance player)
- {
- for (InstanceWorld temp : _instanceWorlds.values())
- {
- // check if the player have a World Instance where he/she is allowed to enter
- if (temp.allowed.contains(player))
- return temp;
- }
- return null;
- }
-
- private InstanceManager()
- {
- _log.info("Initializing InstanceManager");
- createWorld();
- }
-
- public static final InstanceManager getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private void createWorld()
- {
- Instance themultiverse = new Instance(-1);
- themultiverse.setName("multiverse");
- _instanceList.put(-1, themultiverse);
- _log.info("Multiverse Instance created");
-
- Instance universe = new Instance(0);
- universe.setName("universe");
- _instanceList.put(0, universe);
- _log.info("Universe Instance created");
- }
-
- 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);
- }
- }
-
- public Instance getInstance(int instanceid)
- {
- return _instanceList.get(instanceid);
- }
-
- public FastMap<Integer, Instance> getInstances()
- {
- return _instanceList;
- }
-
- public int getPlayerInstance(int objectId)
- {
- for (Instance temp : _instanceList.values())
- {
- // 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;
- }
-
- public boolean createInstance(int id)
- {
- if (getInstance(id) != null)
- return false;
-
- Instance instance = new Instance(id);
- _instanceList.put(id, instance);
- return true;
- }
-
- public boolean createInstanceFromTemplate(int id, String template) throws FileNotFoundException
- {
- 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("InstanceManager: More then " + (Integer.MAX_VALUE - 300000) + " instances created");
- _dynamic = 300000;
- }
- }
- Instance instance = new Instance(_dynamic);
- if (template != null)
- {
- try
- {
- instance.loadInstanceTemplate(template);
- }
- catch (FileNotFoundException e)
- {
- _log.warning("InstanceManager: Failed creating instance from template " + template + ", " + e.getMessage());
- e.printStackTrace();
- }
- }
- _instanceList.put(_dynamic, instance);
- return _dynamic;
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final InstanceManager _instance = new InstanceManager();
- }
- }
|