123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- /*
- * 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.map.hash.TIntObjectHashMap;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.util.List;
- import java.util.Map;
- import java.util.Map.Entry;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import com.l2jserver.Config;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.model.Elementals;
- import com.l2jserver.gameserver.model.L2DropCategory;
- import com.l2jserver.gameserver.model.L2DropData;
- import com.l2jserver.gameserver.model.L2MinionData;
- import com.l2jserver.gameserver.model.L2NpcAIData;
- import com.l2jserver.gameserver.model.StatsSet;
- import com.l2jserver.gameserver.model.actor.templates.L2NpcTemplate;
- import com.l2jserver.gameserver.model.base.ClassId;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.model.quest.Quest.QuestEventType;
- import com.l2jserver.gameserver.model.skills.L2Skill;
- import com.l2jserver.gameserver.model.stats.BaseStats;
- public class NpcTable
- {
- private static Logger _log = Logger.getLogger(NpcTable.class.getName());
-
- private final TIntObjectHashMap<L2NpcTemplate> _npcs = new TIntObjectHashMap<L2NpcTemplate>();
-
- public static NpcTable getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private NpcTable()
- {
- _npcs.clear();
- restoreNpcData();
- }
-
- private void restoreNpcData()
- {
- loadNpcs(0);
- loadNpcsSkills(0);
- loadNpcsDrop(0);
- loadNpcsSkillLearn(0);
- loadMinions(0);
- loadNpcsAI(0);
- loadNpcsElement(0);
- }
-
- /**
- * @param NpcData
- * @throws Exception
- */
- private void fillNpcTable(ResultSet NpcData) throws Exception
- {
- StatsSet npcDat = new StatsSet();
- int id = NpcData.getInt("id");
- int idTemp = NpcData.getInt("idTemplate");
-
- assert idTemp < 1000000;
-
- npcDat.set("npcId", id);
- npcDat.set("idTemplate", idTemp);
- int level = NpcData.getInt("level");
- npcDat.set("level", level);
- npcDat.set("client_class", NpcData.getString("class"));
-
- npcDat.set("baseShldDef", 0);
- npcDat.set("baseShldRate", 0);
- npcDat.set("baseCritRate", NpcData.getInt("critical"));
-
- npcDat.set("name", NpcData.getString("name"));
- npcDat.set("serverSideName", NpcData.getBoolean("serverSideName"));
- npcDat.set("title", NpcData.getString("title"));
- npcDat.set("serverSideTitle", NpcData.getBoolean("serverSideTitle"));
- npcDat.set("collision_radius", NpcData.getDouble("collision_radius"));
- npcDat.set("collision_height", NpcData.getDouble("collision_height"));
- npcDat.set("sex", NpcData.getString("sex"));
- npcDat.set("type", NpcData.getString("type"));
- npcDat.set("baseAtkRange", NpcData.getInt("attackrange"));
- npcDat.set("rewardExp", NpcData.getInt("exp"));
- npcDat.set("rewardSp", NpcData.getInt("sp"));
- npcDat.set("basePAtkSpd", NpcData.getInt("atkspd"));
- npcDat.set("baseMAtkSpd", NpcData.getInt("matkspd"));
- npcDat.set("rhand", NpcData.getInt("rhand"));
- npcDat.set("lhand", NpcData.getInt("lhand"));
- npcDat.set("enchant", NpcData.getInt("enchant"));
- npcDat.set("baseWalkSpd", NpcData.getInt("walkspd"));
- npcDat.set("baseRunSpd", NpcData.getInt("runspd"));
-
- // constants, until we have stats in DB
- npcDat.safeSet("baseSTR", NpcData.getInt("str"), 0, BaseStats.MAX_STAT_VALUE, "Loading npc template id: " + NpcData.getInt("idTemplate"));
- npcDat.safeSet("baseCON", NpcData.getInt("con"), 0, BaseStats.MAX_STAT_VALUE, "Loading npc template id: " + NpcData.getInt("idTemplate"));
- npcDat.safeSet("baseDEX", NpcData.getInt("dex"), 0, BaseStats.MAX_STAT_VALUE, "Loading npc template id: " + NpcData.getInt("idTemplate"));
- npcDat.safeSet("baseINT", NpcData.getInt("int"), 0, BaseStats.MAX_STAT_VALUE, "Loading npc template id: " + NpcData.getInt("idTemplate"));
- npcDat.safeSet("baseWIT", NpcData.getInt("wit"), 0, BaseStats.MAX_STAT_VALUE, "Loading npc template id: " + NpcData.getInt("idTemplate"));
- npcDat.safeSet("baseMEN", NpcData.getInt("men"), 0, BaseStats.MAX_STAT_VALUE, "Loading npc template id: " + NpcData.getInt("idTemplate"));
-
- npcDat.set("baseHpMax", NpcData.getDouble("hp"));
- npcDat.set("baseCpMax", 0);
- npcDat.set("baseMpMax", NpcData.getDouble("mp"));
- npcDat.set("baseHpReg", NpcData.getFloat("hpreg") > 0 ? NpcData.getFloat("hpreg") : 1.5 + ((level - 1) / 10.0));
- npcDat.set("baseMpReg", NpcData.getFloat("mpreg") > 0 ? NpcData.getFloat("mpreg") : 0.9 + (0.3 * ((level - 1) / 10.0)));
- npcDat.set("basePAtk", NpcData.getInt("patk"));
- npcDat.set("basePDef", NpcData.getInt("pdef"));
- npcDat.set("baseMAtk", NpcData.getInt("matk"));
- npcDat.set("baseMDef", NpcData.getInt("mdef"));
-
- npcDat.set("dropHerbGroup", NpcData.getInt("dropHerbGroup"));
-
- // Default element resists
- npcDat.set("baseFireRes", 20);
- npcDat.set("baseWindRes", 20);
- npcDat.set("baseWaterRes", 20);
- npcDat.set("baseEarthRes", 20);
- npcDat.set("baseHolyRes", 20);
- npcDat.set("baseDarkRes", 20);
-
- _npcs.put(id, new L2NpcTemplate(npcDat));
- }
-
- /**
- * @param id of the NPC to reload.
- */
- public void reloadNpc(int id)
- {
- try
- {
- // save a copy of the old data
- L2NpcTemplate old = getTemplate(id);
-
- TIntObjectHashMap<L2Skill> skills = new TIntObjectHashMap<>();
- List<L2MinionData> minions = new FastList<>();
- Map<QuestEventType, Quest[]> quests = new FastMap<>();
- List<ClassId> classIds = new FastList<>();
- FastList<L2DropCategory> categories = new FastList<>();
-
- if (old != null)
- {
- skills.putAll(old.getSkills());
- categories.addAll(old.getDropData());
- classIds.addAll(old.getTeachInfo());
- minions.addAll(old.getMinionData());
-
- if (!old.getEventQuests().isEmpty())
- {
- quests.putAll(old.getEventQuests());
- }
- }
-
- loadNpcs(id);
- loadNpcsSkills(id);
- loadNpcsDrop(id);
- loadNpcsSkillLearn(id);
- loadMinions(id);
- loadNpcsAI(id);
- loadNpcsElement(id);
-
- // restore additional data from saved copy
- L2NpcTemplate created = getTemplate(id);
-
- if ((old != null) && (created != null))
- {
- if (!skills.isEmpty())
- {
- for (L2Skill skill : skills.values(new L2Skill[0]))
- {
- created.addSkill(skill);
- }
- }
-
- for (ClassId classId : classIds)
- {
- created.addTeachInfo(classId);
- }
-
- if (!minions.isEmpty())
- {
- for (L2MinionData minion : minions)
- {
- created.addRaidData(minion);
- }
- }
-
- if (!quests.isEmpty())
- {
- created.getEventQuests().putAll(quests);
- }
- }
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "NPCTable: Could not reload data for NPC " + id + ": " + e.getMessage(), e);
- }
- }
-
- /**
- * Just wrapper.
- */
- public void reloadAllNpc()
- {
- restoreNpcData();
- }
-
- /**
- * @param npc
- */
- public void saveNpc(StatsSet npc)
- {
- final Map<String, Object> set = npc.getSet();
- int length = 0;
- for (Object obj : set.keySet())
- {
- // 15 is just guessed npc name length
- length += ((String) obj).length() + 7 + 15;
- }
-
- final StringBuilder npcSb = new StringBuilder(length);
- final StringBuilder npcAiSb = new StringBuilder(30);
- String attribute;
- String value;
- for (Entry<String, Object> entry : set.entrySet())
- {
- attribute = entry.getKey();
- value = String.valueOf(entry.getValue());
- switch (attribute)
- {
- case "npcId":
- break;
- case "aggro":
- case "showName":
- case "targetable":
- {
- appendEntry(npcAiSb, attribute, value);
- break;
- }
- default:
- {
- appendEntry(npcSb, attribute, value);
- }
- }
- }
-
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- int updated = 0;
- final int npcId = npc.getInteger("npcId");
- if (Config.CUSTOM_NPC_TABLE)
- {
- updated = performUpdate(npcSb, "custom_npc", "id", npcId, con);
- performUpdate(npcAiSb, "custom_npcaidata", "npcId", npcId, con);
- }
-
- if (updated == 0)
- {
- performUpdate(npcSb, "npc", "id", npcId, con);
- performUpdate(npcAiSb, "npcaidata", "npcId", npcId, con);
- }
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "NPCTable: Could not store new NPC data in database: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * @param sb the string builder to append the attribute and value.
- * @param attribute the attribute to append.
- * @param value the value to append.
- */
- private final void appendEntry(StringBuilder sb, String attribute, String value)
- {
- if (sb.length() > 0)
- {
- sb.append(", ");
- }
-
- sb.append(attribute);
- sb.append(" = '");
- sb.append(value);
- sb.append("'");
- }
-
- /**
- * @param sb the string builder with the parameters
- * @param table the table to update.
- * @param key the key of the table.
- * @param npcId the Npc Id.
- * @param con the current database connection.
- * @return the count of updated NPCs.
- * @throws SQLException the SQL exception.
- */
- private final int performUpdate(StringBuilder sb, String table, String key, int npcId, Connection con) throws SQLException
- {
- int updated = 0;
- if ((sb != null) && !sb.toString().isEmpty())
- {
- final StringBuilder sbQuery = new StringBuilder(sb.length() + 28);
- sbQuery.append("UPDATE ");
- sbQuery.append(table);
- sbQuery.append(" SET ");
- sbQuery.append(sb.toString());
- sbQuery.append(" WHERE ");
- sbQuery.append(key);
- sbQuery.append(" = ?");
- final PreparedStatement statement = con.prepareStatement(sbQuery.toString());
- statement.setInt(1, npcId);
- updated = statement.executeUpdate();
- statement.close();
- }
- return updated;
- }
-
- /**
- * @param id the template Id to get.
- * @return the template for the given id.
- */
- public L2NpcTemplate getTemplate(int id)
- {
- return _npcs.get(id);
- }
-
- /**
- * @param name of the template to get.
- * @return the template for the given name.
- */
- public L2NpcTemplate getTemplateByName(String name)
- {
- for (L2NpcTemplate npcTemplate : _npcs.values(new L2NpcTemplate[0]))
- {
- if (npcTemplate.getName().equalsIgnoreCase(name))
- {
- return npcTemplate;
- }
- }
- return null;
- }
-
- /**
- * @param lvls of all the templates to get.
- * @return the template list for the given level.
- */
- public List<L2NpcTemplate> getAllOfLevel(int ...lvls)
- {
- final List<L2NpcTemplate> list = new FastList<>();
- for (int lvl : lvls)
- {
- for (L2NpcTemplate t : _npcs.values(new L2NpcTemplate[0]))
- {
- if (t.getLevel() == lvl)
- {
- list.add(t);
- }
- }
- }
- return list;
- }
-
- /**
- * @param lvls of all the monster templates to get.
- * @return the template list for the given level.
- */
- public List<L2NpcTemplate> getAllMonstersOfLevel(int ...lvls)
- {
- final List<L2NpcTemplate> list = new FastList<>();
- for (int lvl : lvls)
- {
- for (L2NpcTemplate t : _npcs.values(new L2NpcTemplate[0]))
- {
- if ((t.getLevel() == lvl) && t.isType("L2Monster"))
- {
- list.add(t);
- }
- }
- }
- return list;
- }
-
- /**
- * @param letters of all the NPC templates which its name start with.
- * @return the template list for the given letter.
- */
- public List<L2NpcTemplate> getAllNpcStartingWith(String ...letters)
- {
- final List<L2NpcTemplate> list = new FastList<>();
- for (String letter : letters)
- {
- for (L2NpcTemplate t : _npcs.values(new L2NpcTemplate[0]))
- {
- if (t.getName().startsWith(letter) && t.isType("L2Npc"))
- {
- list.add(t);
- }
- }
- }
- return list;
- }
-
- /**
- * @param classTypes of all the templates to get.
- * @return the template list for the given class type.
- */
- public List<L2NpcTemplate> getAllNpcOfClassType(String ...classTypes)
- {
- final List<L2NpcTemplate> list = new FastList<>();
- for (String classType : classTypes)
- {
- for (L2NpcTemplate t : _npcs.values(new L2NpcTemplate[0]))
- {
- if (t.isType(classType))
- {
- list.add(t);
- }
- }
- }
- return list;
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load.
- */
- public void loadNpcs(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM npc WHERE id = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM npc ORDER BY id");
- }
- ResultSet rset = statement.executeQuery();
-
- int cont = 0;
- int cCont = 0;
-
- while (rset.next())
- {
- fillNpcTable(rset);
- cont++;
- }
-
- rset.close();
- statement.close();
-
- if (Config.CUSTOM_NPC_TABLE)
- {
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM custom_npc WHERE id = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM custom_npc ORDER BY id");
- }
- rset = statement.executeQuery();
-
- while (rset.next())
- {
- fillNpcTable(rset);
- cCont++;
- }
-
- rset.close();
- statement.close();
- }
-
- _log.info("NpcTable: Loaded " + cont + " (Custom: " + cCont + ") NPC template(s).");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error creating NPC table.", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load it's skills.
- */
- public void loadNpcsSkills(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM npcskills WHERE npcid = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM npcskills ORDER BY npcid");
- }
-
- ResultSet rset = statement.executeQuery();
-
- int cont = 0;
- int cCont = 0;
-
- L2NpcTemplate npcDat = null;
- L2Skill npcSkill = null;
-
- while (rset.next())
- {
- int mobId = rset.getInt("npcid");
- npcDat = _npcs.get(mobId);
-
- if (npcDat == null)
- {
- _log.warning("NPCTable: Skill data for undefined NPC. npcId: " + mobId);
- continue;
- }
-
- int skillId = rset.getInt("skillid");
- int level = rset.getInt("level");
-
- if (skillId == L2Skill.SKILL_NPC_RACE)
- {
- npcDat.setRace(level);
- continue;
- }
-
- npcSkill = SkillTable.getInstance().getInfo(skillId, level);
- if (npcSkill == null)
- {
- continue;
- }
- cont++;
- npcDat.addSkill(npcSkill);
- }
-
- rset.close();
- statement.close();
-
- if (Config.CUSTOM_NPC_SKILLS_TABLE)
- {
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM custom_npcskills WHERE npcid = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM custom_npcskills ORDER BY npcid");
- }
- rset = statement.executeQuery();
-
- while (rset.next())
- {
- int mobId = rset.getInt("npcid");
- npcDat = _npcs.get(mobId);
-
- if (npcDat == null)
- {
- _log.warning("Custom NPCTable: Skill data for undefined NPC. npcId: " + mobId);
- continue;
- }
-
- int skillId = rset.getInt("skillid");
- int level = rset.getInt("level");
-
- if ((npcDat.getRace() == null) && (skillId == L2Skill.SKILL_NPC_RACE))
- {
- npcDat.setRace(level);
- continue;
- }
-
- npcSkill = SkillTable.getInstance().getInfo(skillId, level);
-
- if (npcSkill == null)
- {
- continue;
- }
-
- cCont++;
- npcDat.addSkill(npcSkill);
- }
-
- rset.close();
- statement.close();
- }
-
- _log.info("NpcTable: Loaded " + cont + " (Custom: " + cCont + ") npc skills.");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error reading NPC skills table.", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load it's drops.
- */
- public void loadNpcsDrop(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
-
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM droplist WHERE mobId = ? ORDER BY mobId, chance DESC");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM droplist ORDER BY mobId, chance DESC");
- }
-
- ResultSet rset = statement.executeQuery();
- L2DropData dropDat = null;
- L2NpcTemplate npcDat = null;
-
- int cont = 0;
- int cCont = 0;
-
- while (rset.next())
- {
- int mobId = rset.getInt("mobId");
- npcDat = _npcs.get(mobId);
- if (npcDat == null)
- {
- _log.warning("NPCTable: Drop data for undefined NPC. npcId: " + mobId);
- continue;
- }
- dropDat = new L2DropData();
-
- dropDat.setItemId(rset.getInt("itemId"));
- dropDat.setMinDrop(rset.getInt("min"));
- dropDat.setMaxDrop(rset.getInt("max"));
- dropDat.setChance(rset.getInt("chance"));
-
- int category = rset.getInt("category");
-
- if (ItemTable.getInstance().getTemplate(dropDat.getItemId()) == null)
- {
- _log.warning("Drop data for undefined item template! NpcId: " + mobId + " itemId: " + dropDat.getItemId());
- continue;
- }
- cont++;
- npcDat.addDropData(dropDat, category);
- }
-
- rset.close();
- statement.close();
-
- if (Config.CUSTOM_DROPLIST_TABLE)
- {
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM custom_droplist WHERE mobId = ? ORDER BY mobId, chance DESC");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM custom_droplist ORDER BY mobId, chance DESC");
- }
-
- rset = statement.executeQuery();
-
- while (rset.next())
- {
- int mobId = rset.getInt("mobId");
- npcDat = _npcs.get(mobId);
- if (npcDat == null)
- {
- _log.warning("NPCTable: CUSTOM DROPLIST: Drop data for undefined NPC. npcId: " + mobId);
- continue;
- }
- dropDat = new L2DropData();
- dropDat.setItemId(rset.getInt("itemId"));
- dropDat.setMinDrop(rset.getInt("min"));
- dropDat.setMaxDrop(rset.getInt("max"));
- dropDat.setChance(rset.getInt("chance"));
- int category = rset.getInt("category");
-
- if (ItemTable.getInstance().getTemplate(dropDat.getItemId()) == null)
- {
- _log.warning("Custom drop data for undefined item template! NpcId: " + mobId + " itemId: " + dropDat.getItemId());
- continue;
- }
-
- npcDat.addDropData(dropDat, category);
- cCont++;
- }
- rset.close();
- statement.close();
- }
- _log.info("NpcTable: Loaded " + cont + " (Custom: " + cCont + ") drops.");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error reading NPC dropdata. ", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load it's skill learn list.
- */
- private void loadNpcsSkillLearn(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
-
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM skill_learn WHERE npc_id = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM skill_learn");
- }
-
- ResultSet rset = statement.executeQuery();
-
- int cont = 0;
-
- while (rset.next())
- {
- int npcId = rset.getInt("npc_id");
- int classId = rset.getInt("class_id");
- L2NpcTemplate npc = getTemplate(npcId);
-
- if (npc == null)
- {
- _log.warning("NPCTable: Error getting NPC template ID " + npcId + " while trying to load skill trainer data.");
- continue;
- }
- cont++;
- npc.addTeachInfo(ClassId.values()[classId]);
- }
-
- rset.close();
- statement.close();
-
- _log.info("NpcTable: Loaded " + cont + " Skill Learn.");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error reading NPC trainer data.", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load it's minions.
- */
- public void loadMinions(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
-
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM minions WHERE boss_id = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM minions ORDER BY boss_id");
- }
-
- ResultSet rset = statement.executeQuery();
-
- L2MinionData minionDat = null;
- L2NpcTemplate npcDat = null;
- int cnt = 0;
-
- while (rset.next())
- {
- int raidId = rset.getInt("boss_id");
- npcDat = _npcs.get(raidId);
- if (npcDat == null)
- {
- _log.warning("Minion references undefined boss NPC. Boss NpcId: " + raidId);
- continue;
- }
- minionDat = new L2MinionData();
- minionDat.setMinionId(rset.getInt("minion_id"));
- minionDat.setAmountMin(rset.getInt("amount_min"));
- minionDat.setAmountMax(rset.getInt("amount_max"));
- npcDat.addRaidData(minionDat);
- cnt++;
- }
-
- rset.close();
- statement.close();
- _log.info("NpcTable: Loaded " + cnt + " Minions.");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error loading minion data.", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load it's AI data.
- */
- public void loadNpcsAI(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
-
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM npcaidata WHERE npcId = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM npcaidata ORDER BY npcId");
- }
-
- ResultSet rset = statement.executeQuery();
-
- L2NpcAIData npcAIDat = null;
- L2NpcTemplate npcDat = null;
-
- int cont = 0;
- int cCont = 0;
-
- while (rset.next())
- {
- int npc_id = rset.getInt("npcId");
- npcDat = _npcs.get(npc_id);
- if (npcDat == null)
- {
- _log.severe("NPCTable: AI Data Error with id : " + npc_id);
- continue;
- }
- npcAIDat = new L2NpcAIData();
-
- npcAIDat.setPrimarySkillId(rset.getInt("primarySkillId"));
- npcAIDat.setMinSkillChance(rset.getInt("minSkillChance"));
- npcAIDat.setMaxSkillChance(rset.getInt("maxSkillChance"));
- npcAIDat.setAggro(rset.getInt("aggro"));
- npcAIDat.setCanMove(rset.getInt("canMove"));
- npcAIDat.setShowName(rset.getBoolean("showName"));
- npcAIDat.setTargetable(rset.getBoolean("targetable"));
- npcAIDat.setSoulShot(rset.getInt("soulshot"));
- npcAIDat.setSpiritShot(rset.getInt("spiritshot"));
- npcAIDat.setSoulShotChance(rset.getInt("ssChance"));
- npcAIDat.setSpiritShotChance(rset.getInt("spsChance"));
- npcAIDat.setIsChaos(rset.getInt("isChaos"));
- npcAIDat.setShortRangeSkill(rset.getInt("minRangeSkill"));
- npcAIDat.setShortRangeChance(rset.getInt("minRangeChance"));
- npcAIDat.setLongRangeSkill(rset.getInt("maxRangeSkill"));
- npcAIDat.setLongRangeChance(rset.getInt("maxRangeChance"));
- npcAIDat.setClan(rset.getString("clan"));
- npcAIDat.setClanRange(rset.getInt("clanRange"));
- npcAIDat.setEnemyClan(rset.getString("enemyClan"));
- npcAIDat.setEnemyRange(rset.getInt("enemyRange"));
- npcAIDat.setDodge(rset.getInt("dodge"));
- npcAIDat.setAi(rset.getString("aiType"));
-
- npcDat.setAIData(npcAIDat);
- cont++;
- }
-
- rset.close();
- statement.close();
-
- if (Config.CUSTOM_NPC_TABLE)
- {
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM custom_npcaidata WHERE npcId = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM custom_npcaidata ORDER BY npcId");
- }
-
- rset = statement.executeQuery();
-
- while (rset.next())
- {
- int npc_id = rset.getInt("npcId");
- npcDat = _npcs.get(npc_id);
- if (npcDat == null)
- {
- _log.severe("NPCTable: Custom AI Data Error with id : " + npc_id);
- continue;
- }
- npcAIDat = new L2NpcAIData();
-
- npcAIDat.setPrimarySkillId(rset.getInt("primarySkillId"));
- npcAIDat.setMinSkillChance(rset.getInt("minSkillChance"));
- npcAIDat.setMaxSkillChance(rset.getInt("maxSkillChance"));
- npcAIDat.setAggro(rset.getInt("aggro"));
- npcAIDat.setCanMove(rset.getInt("canMove"));
- npcAIDat.setShowName(rset.getBoolean("showName"));
- npcAIDat.setTargetable(rset.getBoolean("targetable"));
- npcAIDat.setSoulShot(rset.getInt("soulshot"));
- npcAIDat.setSpiritShot(rset.getInt("spiritshot"));
- npcAIDat.setSoulShotChance(rset.getInt("ssChance"));
- npcAIDat.setSpiritShotChance(rset.getInt("spsChance"));
- npcAIDat.setIsChaos(rset.getInt("isChaos"));
- npcAIDat.setShortRangeSkill(rset.getInt("minRangeSkill"));
- npcAIDat.setShortRangeChance(rset.getInt("minRangeChance"));
- npcAIDat.setLongRangeSkill(rset.getInt("maxRangeSkill"));
- npcAIDat.setLongRangeChance(rset.getInt("maxRangeChance"));
- npcAIDat.setClan(rset.getString("clan"));
- npcAIDat.setClanRange(rset.getInt("clanRange"));
- npcAIDat.setEnemyClan(rset.getString("enemyClan"));
- npcAIDat.setEnemyRange(rset.getInt("enemyRange"));
- npcAIDat.setDodge(rset.getInt("dodge"));
- npcAIDat.setAi(rset.getString("aiType"));
-
- npcDat.setAIData(npcAIDat);
- cCont++;
- }
-
- rset.close();
- statement.close();
- }
-
- _log.info("NpcTable: Loaded " + cont + " (Custom: " + cCont + ") AI Data.");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error reading NPC AI Data: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- /**
- * Id equals to zero or lesser means all.
- * @param id of the NPC to load it's element data.
- */
- public void loadNpcsElement(int id)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = null;
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM npc_elementals WHERE npc_id = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM npc_elementals ORDER BY npc_id");
- }
-
- ResultSet rset = statement.executeQuery();
- L2NpcTemplate npcDat = null;
-
- int cont = 0;
- int cCount = 0;
-
- while (rset.next())
- {
- int npc_id = rset.getInt("npc_id");
- npcDat = _npcs.get(npc_id);
- if (npcDat == null)
- {
- _log.severe("NPCElementals: Elementals Error with id : " + npc_id);
- continue;
- }
- switch (rset.getByte("elemAtkType"))
- {
- case Elementals.FIRE:
- npcDat.setBaseFire(rset.getInt("elemAtkValue"));
- break;
- case Elementals.WATER:
- npcDat.setBaseWater(rset.getInt("elemAtkValue"));
- break;
- case Elementals.EARTH:
- npcDat.setBaseEarth(rset.getInt("elemAtkValue"));
- break;
- case Elementals.WIND:
- npcDat.setBaseWind(rset.getInt("elemAtkValue"));
- break;
- case Elementals.HOLY:
- npcDat.setBaseHoly(rset.getInt("elemAtkValue"));
- break;
- case Elementals.DARK:
- npcDat.setBaseDark(rset.getInt("elemAtkValue"));
- break;
- default:
- _log.severe("NPCElementals: Elementals Error with id : " + npc_id + "; unknown elementType: " + rset.getByte("elemAtkType"));
- continue;
- }
- npcDat.setBaseFireRes(rset.getInt("fireDefValue"));
- npcDat.setBaseWaterRes(rset.getInt("waterDefValue"));
- npcDat.setBaseEarthRes(rset.getInt("earthDefValue"));
- npcDat.setBaseWindRes(rset.getInt("windDefValue"));
- npcDat.setBaseHolyRes(rset.getInt("holyDefValue"));
- npcDat.setBaseDarkRes(rset.getInt("darkDefValue"));
- cont++;
- }
-
- rset.close();
- statement.close();
-
- if (Config.CUSTOM_NPC_TABLE)
- {
- if (id > 0)
- {
- statement = con.prepareStatement("SELECT * FROM custom_npc_elementals WHERE npc_id = ?");
- statement.setInt(1, id);
- }
- else
- {
- statement = con.prepareStatement("SELECT * FROM custom_npc_elementals ORDER BY npc_id");
- }
-
- rset = statement.executeQuery();
-
- while (rset.next())
- {
- int npc_id = rset.getInt("npc_id");
- npcDat = _npcs.get(npc_id);
- if (npcDat == null)
- {
- _log.severe("NPCElementals: Custom Elementals Error with id : " + npc_id);
- continue;
- }
- switch (rset.getByte("elemAtkType"))
- {
- case Elementals.FIRE:
- npcDat.setBaseFire(rset.getInt("elemAtkValue"));
- break;
- case Elementals.WATER:
- npcDat.setBaseWater(rset.getInt("elemAtkValue"));
- break;
- case Elementals.EARTH:
- npcDat.setBaseEarth(rset.getInt("elemAtkValue"));
- break;
- case Elementals.WIND:
- npcDat.setBaseWind(rset.getInt("elemAtkValue"));
- break;
- case Elementals.HOLY:
- npcDat.setBaseHoly(rset.getInt("elemAtkValue"));
- break;
- case Elementals.DARK:
- npcDat.setBaseDark(rset.getInt("elemAtkValue"));
- break;
- default:
- _log.severe("NPCElementals: Custom Elementals Error with id : " + npc_id + "; unknown elementType: " + rset.getByte("elemAtkType"));
- continue;
- }
- npcDat.setBaseFireRes(rset.getInt("fireDefValue"));
- npcDat.setBaseWaterRes(rset.getInt("waterDefValue"));
- npcDat.setBaseEarthRes(rset.getInt("earthDefValue"));
- npcDat.setBaseWindRes(rset.getInt("windDefValue"));
- npcDat.setBaseHolyRes(rset.getInt("holyDefValue"));
- npcDat.setBaseDarkRes(rset.getInt("darkDefValue"));
- cont++;
- }
- rset.close();
- statement.close();
- }
-
- _log.info("NpcTable: Loaded " + cont + " (Custom: " + cCount + ") elementals Data.");
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "NPCTable: Error reading NPC Elementals Data: " + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final NpcTable _instance = new NpcTable();
- }
- }
|