/
tofu
/
l2interlude
Обзор
Документация
Войти
/
tofu
/
l2interlude
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/main/java/com/l2jserver/gameserver/data/sql/impl/SummonSkillsTable.java
148 строк
4 KB
Zoey76
Copyright Update
01 янв 2025, 07:57
01 янв 2025, 07:57
16130a5
Код
Авторство
О чём код?
/* * Copyright © 2004-2025 L2J Server * * This file is part of L2J Server. * * L2J Server 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. * * L2J Server 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.data.sql.impl; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.List; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.l2jserver.commons.database.ConnectionFactory; import com.l2jserver.gameserver.datatables.SkillData; import com.l2jserver.gameserver.model.actor.L2Summon; public class SummonSkillsTable { private static final Logger LOG = LoggerFactory.getLogger(SummonSkillsTable.class); private final Map<Integer, Map<Integer, L2PetSkillLearn>> _skillTrees = new HashMap<>(); protected SummonSkillsTable() { load(); } public void load() { _skillTrees.clear(); int count = 0; try (var con = ConnectionFactory.getInstance().getConnection(); var s = con.createStatement(); var rs = s.executeQuery("SELECT templateId, minLvl, skillId, skillLvl FROM pets_skills")) { while (rs.next()) { final int npcId = rs.getInt("templateId"); final var skillTree = _skillTrees.computeIfAbsent(npcId, k -> new HashMap<>()); int id = rs.getInt("skillId"); int lvl = rs.getInt("skillLvl"); skillTree.put(SkillData.getSkillHashCode(id, lvl + 1), new L2PetSkillLearn(id, lvl, rs.getInt("minLvl"))); count++; } } catch (Exception ex) { LOG.error("Error while loading pet skill tree!", ex); } LOG.info("Loaded {} summon skills.", count); } public int getAvailableLevel(L2Summon cha, int skillId) { int lvl = 0; if (!_skillTrees.containsKey(cha.getId())) { LOG.warn("Pet Id {} does not have any skills assigned!", cha.getId()); return lvl; } Collection<L2PetSkillLearn> skills = _skillTrees.get(cha.getId()).values(); for (L2PetSkillLearn temp : skills) { if (temp.getId() != skillId) { continue; } if (temp.getLevel() == 0) { if (cha.getLevel() < 70) { lvl = (cha.getLevel() / 10); if (lvl <= 0) { lvl = 1; } } else { lvl = (7 + ((cha.getLevel() - 70) / 5)); } // formula usable for skill that have 10 or more skill levels int maxLvl = SkillData.getInstance().getMaxLevel(temp.getId()); if (lvl > maxLvl) { lvl = maxLvl; } break; } else if (temp.getMinLevel() <= cha.getLevel()) { if (temp.getLevel() > lvl) { lvl = temp.getLevel(); } } } return lvl; } public List<Integer> getAvailableSkills(L2Summon cha) { List<Integer> skillIds = new ArrayList<>(); if (!_skillTrees.containsKey(cha.getId())) { LOG.warn("Pet Id {} does not have any skills assigned!", cha.getId()); return skillIds; } Collection<L2PetSkillLearn> skills = _skillTrees.get(cha.getId()).values(); for (L2PetSkillLearn temp : skills) { if (skillIds.contains(temp.getId())) { continue; } skillIds.add(temp.getId()); } return skillIds; } public static final class L2PetSkillLearn { private final int _id; private final int _level; private final int _minLevel; public L2PetSkillLearn(int id, int lvl, int minLvl) { _id = id; _level = lvl; _minLevel = minLvl; } public int getId() { return _id; } public int getLevel() { return _level; } public int getMinLevel() { return _minLevel; } } public static SummonSkillsTable getInstance() { return SingletonHolder._instance; } private static class SingletonHolder { protected static final SummonSkillsTable _instance = new SummonSkillsTable(); } }