SkillHandler.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package com.l2jserver.gameserver.handler;
  16. import gnu.trove.map.hash.TIntObjectHashMap;
  17. import com.l2jserver.gameserver.templates.skills.L2SkillType;
  18. /**
  19. * This class ...
  20. *
  21. * @version $Revision: 1.1.4.4 $ $Date: 2005/04/03 15:55:06 $
  22. */
  23. public class SkillHandler
  24. {
  25. private final TIntObjectHashMap<ISkillHandler> _datatable;
  26. public static SkillHandler getInstance()
  27. {
  28. return SingletonHolder._instance;
  29. }
  30. private SkillHandler()
  31. {
  32. _datatable = new TIntObjectHashMap<ISkillHandler>();
  33. }
  34. public void registerHandler(ISkillHandler handler)
  35. {
  36. L2SkillType[] types = handler.getSkillIds();
  37. for (L2SkillType t : types)
  38. {
  39. _datatable.put(t.ordinal(), handler);
  40. }
  41. }
  42. public ISkillHandler getHandler(L2SkillType skillType)
  43. {
  44. return _datatable.get(skillType.ordinal());
  45. }
  46. /**
  47. * @return
  48. */
  49. public int size()
  50. {
  51. return _datatable.size();
  52. }
  53. @SuppressWarnings("synthetic-access")
  54. private static class SingletonHolder
  55. {
  56. protected static final SkillHandler _instance = new SkillHandler();
  57. }
  58. }