123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*
- * 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.skills;
- import gnu.trove.TIntObjectHashMap;
- import java.io.File;
- import java.util.List;
- import java.util.Map;
- import java.util.logging.Logger;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.Item;
- import com.l2jserver.gameserver.datatables.SkillTable;
- import com.l2jserver.gameserver.model.L2Skill;
- import com.l2jserver.gameserver.templates.item.L2Armor;
- import com.l2jserver.gameserver.templates.item.L2EtcItem;
- import com.l2jserver.gameserver.templates.item.L2EtcItemType;
- import com.l2jserver.gameserver.templates.item.L2Item;
- import com.l2jserver.gameserver.templates.item.L2Weapon;
- import javolution.util.FastList;
- /**
- * @author mkizub
- */
- public class SkillsEngine
- {
-
- protected static final Logger _log = Logger.getLogger(SkillsEngine.class.getName());
-
- private List<File> _armorFiles = new FastList<File>();
- private List<File> _weaponFiles = new FastList<File>();
- private List<File> _etcitemFiles = new FastList<File>();
- private List<File> _skillFiles = new FastList<File>();
-
- public static SkillsEngine getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private SkillsEngine()
- {
- hashFiles("data/stats/etcitem", _etcitemFiles);
- hashFiles("data/stats/armor", _armorFiles);
- hashFiles("data/stats/weapon", _weaponFiles);
- hashFiles("data/stats/skills", _skillFiles);
- }
-
- private void hashFiles(String dirname, List<File> hash)
- {
- File dir = new File(Config.DATAPACK_ROOT, dirname);
- if (!dir.exists())
- {
- _log.config("Dir " + dir.getAbsolutePath() + " not exists");
- return;
- }
- File[] files = dir.listFiles();
- for (File f : files)
- {
- if (f.getName().endsWith(".xml") && !f.getName().startsWith("custom"))
- hash.add(f);
- }
- File customfile = new File(Config.DATAPACK_ROOT, dirname + "/custom.xml");
- if (customfile.exists())
- hash.add(customfile);
- }
-
- public List<L2Skill> loadSkills(File file)
- {
- if (file == null)
- {
- _log.config("Skill file not found.");
- return null;
- }
- DocumentSkill doc = new DocumentSkill(file);
- doc.parse();
- return doc.getSkills();
- }
-
- public void loadAllSkills(final TIntObjectHashMap<L2Skill> allSkills)
- {
- int count = 0;
- for (File file : _skillFiles)
- {
- List<L2Skill> s = loadSkills(file);
- if (s == null)
- continue;
- for (L2Skill skill : s)
- {
- allSkills.put(SkillTable.getSkillHashCode(skill), skill);
- count++;
- }
- }
- _log.config("SkillsEngine: Loaded " + count + " Skill templates from XML files.");
- }
-
- public List<L2Armor> loadArmors(Map<Integer, Item> armorData)
- {
- List<L2Armor> list = new FastList<L2Armor>();
- for (L2Item item : loadData(armorData, _armorFiles))
- {
- list.add((L2Armor) item);
- }
- return list;
- }
-
- public List<L2Weapon> loadWeapons(Map<Integer, Item> weaponData)
- {
- List<L2Weapon> list = new FastList<L2Weapon>();
- for (L2Item item : loadData(weaponData, _weaponFiles))
- {
- list.add((L2Weapon) item);
- }
- return list;
- }
-
- public List<L2EtcItem> loadItems(Map<Integer, Item> itemData)
- {
- List<L2EtcItem> list = new FastList<L2EtcItem>();
- List<Integer> xmlItem = new FastList<Integer>();
-
- for (L2Item item : loadData(itemData, _etcitemFiles))
- {
- list.add((L2EtcItem) item);
- xmlItem.add(item.getItemId());
- }
- for (Item item : itemData.values())
- {
- if (!xmlItem.contains(item.id))
- list.add(new L2EtcItem((L2EtcItemType) item.type, item.set));
- }
- return list;
- }
-
- public List<L2Item> loadData(Map<Integer, Item> itemData, List<File> files)
- {
- List<L2Item> list = new FastList<L2Item>();
- for (File f : files)
- {
- DocumentItem document = new DocumentItem(itemData, f);
- document.parse();
- list.addAll(document.getItemList());
- }
- return list;
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final SkillsEngine _instance = new SkillsEngine();
- }
- }
|