123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- * 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.datatables;
- import gnu.trove.TIntIntHashMap;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.model.L2Skill;
- public class SkillSpellbookTable
- {
- private static Logger _log = Logger.getLogger(SkillTreeTable.class.getName());
-
- private static TIntIntHashMap _skillSpellbooks;
-
- public static SkillSpellbookTable getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private SkillSpellbookTable()
- {
- if (!Config.SP_BOOK_NEEDED)
- return;
-
- _skillSpellbooks = new TIntIntHashMap();
- Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("SELECT skill_id, item_id FROM skill_spellbooks");
- ResultSet spbooks = statement.executeQuery();
-
- while (spbooks.next())
- _skillSpellbooks.put(spbooks.getInt("skill_id"), spbooks.getInt("item_id"));
-
- spbooks.close();
- statement.close();
-
- _log.info("SkillSpellbookTable: Loaded " + _skillSpellbooks.size() + " Spellbooks.");
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Error while loading spellbook data: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- public int getBookForSkill(int skillId, int level)
- {
- if (skillId == L2Skill.SKILL_DIVINE_INSPIRATION && level != -1)
- {
- switch (level)
- {
- case 1:
- return 8618; // Ancient Book - Divine Inspiration (Modern Language Version)
- case 2:
- return 8619; // Ancient Book - Divine Inspiration (Original Language Version)
- case 3:
- return 8620; // Ancient Book - Divine Inspiration (Manuscript)
- case 4:
- return 8621; // Ancient Book - Divine Inspiration (Original Version)
- default:
- return -1;
- }
- }
-
- if (!Config.SP_BOOK_NEEDED)
- return (-1);
-
- if (!_skillSpellbooks.containsKey(skillId))
- return -1;
-
- return _skillSpellbooks.get(skillId);
- }
-
- public int getBookForSkill(L2Skill skill)
- {
- return getBookForSkill(skill.getId(), -1);
- }
-
- public int getBookForSkill(L2Skill skill, int level)
- {
- return getBookForSkill(skill.getId(), level);
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final SkillSpellbookTable _instance = new SkillSpellbookTable();
- }
- }
|