123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- /*
- * 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.model.quest;
- import java.util.List;
- import javolution.util.FastList;
- import net.sf.l2j.gameserver.ThreadPoolManager;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- public class QuestStateManager
- {
- // =========================================================
- // Schedule Task
- public class ScheduleTimerTask implements Runnable
- {
- public void run()
- {
- try
- {
- cleanUp();
- ThreadPoolManager.getInstance().scheduleGeneral(new ScheduleTimerTask(), 60000);
- }
- catch (Throwable t)
- {
- }
- }
- }
-
- // =========================================================
- // Data Field
- private static QuestStateManager _instance;
- private List<QuestState> _questStates = new FastList<QuestState>();
-
- // =========================================================
- // Constructor
- public QuestStateManager()
- {
- ThreadPoolManager.getInstance().scheduleGeneral(new ScheduleTimerTask(), 60000);
- }
-
- // =========================================================
- // Method - Public
- /**
- * Add QuestState for the specified player instance
- */
- public void addQuestState(Quest quest, L2PcInstance player, byte state)
- {
- QuestState qs = getQuestState(player);
- if (qs == null)
- qs = new QuestState(quest, player, state);
- }
-
- /**
- * Remove all QuestState for all player instance that does not exist
- */
- public void cleanUp()
- {
- for (int i = getQuestStates().size() - 1; i >= 0; i--)
- {
- if (getQuestStates().get(i).getPlayer() == null)
- {
- removeQuestState(getQuestStates().get(i));
- getQuestStates().remove(i);
- }
- }
- }
-
- // =========================================================
- // Method - Private
- /**
- * Remove QuestState instance
- */
- private void removeQuestState(QuestState qs)
- {
- qs = null;
- }
-
- // =========================================================
- // Property - Public
- public static final QuestStateManager getInstance()
- {
- if (_instance == null)
- _instance = new QuestStateManager();
- return _instance;
- }
-
- /**
- * Return QuestState for specified player instance
- */
- public QuestState getQuestState(L2PcInstance player)
- {
- for (int i = 0; i < getQuestStates().size(); i++)
- {
- if (getQuestStates().get(i).getPlayer() != null && getQuestStates().get(i).getPlayer().getObjectId() == player.getObjectId())
- return getQuestStates().get(i);
-
- }
-
- return null;
- }
-
- /**
- * Return all QuestState
- */
- public List<QuestState> getQuestStates()
- {
- if (_questStates == null)
- _questStates = new FastList<QuestState>();
- return _questStates;
- }
- }
|