123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- /*
- * 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.sql.Connection;
- import java.sql.ResultSet;
- import java.sql.Statement;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.model.L2DropCategory;
- import com.l2jserver.gameserver.model.L2DropData;
- /**
- * This class ...
- * @version $Revision$ $Date$
- */
- public class HerbDropTable
- {
- private static final Logger _log = Logger.getLogger(HerbDropTable.class.getName());
-
- private final Map<Integer, List<L2DropCategory>> _herbGroups = new HashMap<>();
-
- protected HerbDropTable()
- {
- restoreData();
- }
-
- private void restoreData()
- {
- try (Connection con = L2DatabaseFactory.getInstance().getConnection();
- Statement statement = con.createStatement();
- ResultSet dropData = statement.executeQuery("SELECT groupId,itemId,min,max,category,chance FROM herb_droplist_groups ORDER BY groupId,chance DESC"))
- {
- L2DropData dropDat = null;
- while (dropData.next())
- {
- int groupId = dropData.getInt("groupId");
- List<L2DropCategory> category;
- if (_herbGroups.containsKey(groupId))
- {
- category = _herbGroups.get(groupId);
- }
- else
- {
- category = new ArrayList<>();
- _herbGroups.put(groupId, category);
- }
-
- dropDat = new L2DropData();
-
- dropDat.setItemId(dropData.getInt("itemId"));
- dropDat.setMinDrop(dropData.getInt("min"));
- dropDat.setMaxDrop(dropData.getInt("max"));
- dropDat.setChance(dropData.getInt("chance"));
-
- int categoryType = dropData.getInt("category");
-
- if (ItemTable.getInstance().getTemplate(dropDat.getItemId()) == null)
- {
- _log.warning(getClass().getSimpleName() + ": Data for undefined item template! GroupId: " + groupId + " itemId: " + dropDat.getItemId());
- continue;
- }
-
- boolean catExists = false;
- for (L2DropCategory cat : category)
- {
- // if the category exists, add the drop to this category.
- if (cat.getCategoryType() == categoryType)
- {
- cat.addDropData(dropDat, false);
- catExists = true;
- break;
- }
- }
- // if the category doesn't exit, create it and add the drop
- if (!catExists)
- {
- L2DropCategory cat = new L2DropCategory(categoryType);
- cat.addDropData(dropDat, false);
- category.add(cat);
- }
- }
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, getClass().getSimpleName() + ": Error reading Herb dropdata. ", e);
- }
- }
-
- public List<L2DropCategory> getHerbDroplist(int groupId)
- {
- return _herbGroups.get(groupId);
- }
-
- public static HerbDropTable getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private static class SingletonHolder
- {
- protected static final HerbDropTable _instance = new HerbDropTable();
- }
- }
|