123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * Copyright (C) 2004-2013 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.datatables;
- import java.io.File;
- import java.util.HashMap;
- import java.util.Map;
- import java.util.Scanner;
- import java.util.logging.Logger;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.model.L2SummonItem;
- /**
- * @author FBIagent
- */
- public class SummonItemsData
- {
- private static final Logger _log = Logger.getLogger(SummonItemsData.class.getName());
- private static final Map<Integer, L2SummonItem> _summonitems = new HashMap<>();
-
- protected SummonItemsData()
- {
- try (Scanner s = new Scanner(new File(Config.DATAPACK_ROOT, "data/summon_items.csv")))
- {
- int lineCount = 0;
-
- while (s.hasNextLine())
- {
- lineCount++;
-
- String line = s.nextLine();
-
- if (line.isEmpty() || (line.charAt(0) == '#'))
- {
- continue;
- }
-
- String[] lineSplit = line.split(";");
- int itemID = 0, npcID = 0;
- byte summonType = 0;
- int despawn = -1;
-
- try
- {
- itemID = Integer.parseInt(lineSplit[0]);
- npcID = Integer.parseInt(lineSplit[1]);
- summonType = Byte.parseByte(lineSplit[2]);
- if (summonType == 0)
- {
- despawn = Integer.parseInt(lineSplit[3]);
- }
- }
- catch (Exception e)
- {
- _log.warning(getClass().getSimpleName() + ": Error in line " + lineCount + " -> incomplete/invalid data or wrong seperator!");
- _log.warning(" " + line);
- continue;
- }
- _summonitems.put(itemID, new L2SummonItem(itemID, npcID, summonType, despawn));
- }
-
- _log.info(getClass().getSimpleName() + ": Loaded " + _summonitems.size() + " summon items.");
- }
- catch (Exception e)
- {
- _log.warning(getClass().getSimpleName() + ": Can not find '" + Config.DATAPACK_ROOT + "/data/summon_items.csv'");
- return;
- }
- }
-
- public L2SummonItem getSummonItem(int itemId)
- {
- return _summonitems.get(itemId);
- }
-
- public int[] itemIDs()
- {
- int size = _summonitems.size();
- int[] result = new int[size];
- int i = 0;
- for (L2SummonItem si : _summonitems.values())
- {
- result[i++] = si.getItemId();
- }
- return result;
- }
-
- public static SummonItemsData getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private static class SingletonHolder
- {
- protected static final SummonItemsData _instance = new SummonItemsData();
- }
- }
|