123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * 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.handler;
- import java.util.logging.Logger;
- import javolution.util.FastMap;
- import net.sf.l2j.Config;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatAll;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatAlliance;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatClan;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatHeroVoice;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatParty;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatPartyRoomAll;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatPartyRoomCommander;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatPetition;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatShout;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatTell;
- import net.sf.l2j.gameserver.handler.chathandlers.ChatTrade;
- /**
- * This class handles all chat handlers
- *
- * @author durgus
- */
- public class ChatHandler
- {
- private static Logger _log = Logger.getLogger(ChatHandler.class.getName());
- private static ChatHandler _instance;
- private FastMap<Integer, IChatHandler> _datatable;
- public static ChatHandler getInstance()
- {
- if (_instance == null)
- {
- _instance = new ChatHandler();
- }
- return _instance;
- }
- /**
- * Singleton constructor
- */
- private ChatHandler()
- {
- _datatable = new FastMap<Integer, IChatHandler>();
- registerChatHandler(new ChatAll());
- registerChatHandler(new ChatAlliance());
- registerChatHandler(new ChatClan());
- registerChatHandler(new ChatHeroVoice());
- registerChatHandler(new ChatParty());
- registerChatHandler(new ChatPartyRoomAll());
- registerChatHandler(new ChatPartyRoomCommander());
- registerChatHandler(new ChatPetition());
- registerChatHandler(new ChatShout());
- registerChatHandler(new ChatTell());
- registerChatHandler(new ChatTrade());
- _log.config("ChatHandler: Loaded " + _datatable.size() + " handlers.");
- }
- /**
- * Register a new chat handler
- * @param handler
- */
- public void registerChatHandler(IChatHandler handler)
- {
- int[] ids = handler.getChatTypeList();
- for (int i = 0; i < ids.length; i++)
- {
- if (Config.DEBUG) _log.fine("Adding handler for chat type "+ids[i]);
- _datatable.put(ids[i], handler);
- }
- }
- /**
- * Get the chat handler for the given chat type
- * @param chatType
- * @return
- */
- public IChatHandler getChatHandler(int chatType)
- {
- return _datatable.get(chatType);
- }
- /**
- * Returns the size
- * @return
- */
- public int size()
- {
- return _datatable.size();
- }
- }
|