123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /*
- * 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 java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.util.List;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import javolution.util.FastList;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.model.FishData;
- /**
- * @author -Nemesiss-
- *
- */
- public class FishTable
- {
- private static Logger _log = Logger.getLogger(FishTable.class.getName());
-
- private static List<FishData> _fishsNormal;
- private static List<FishData> _fishsEasy;
- private static List<FishData> _fishsHard;
-
- public static FishTable getInstance()
- {
- return SingletonHolder._instance;
- }
-
- private FishTable()
- {
- //Create table that contains all fish datas
- int count = 0;
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- _fishsEasy = new FastList<FishData>();
- _fishsNormal = new FastList<FishData>();
- _fishsHard = new FastList<FishData>();
- FishData fish;
- PreparedStatement statement = con.prepareStatement("SELECT id, level, name, hp, hpregen, fish_type, fish_group, fish_guts, guts_check_time, wait_time, combat_time FROM fish ORDER BY id");
- ResultSet fishes = statement.executeQuery();
-
- while (fishes.next())
- {
- int id = fishes.getInt("id");
- int lvl = fishes.getInt("level");
- String name = fishes.getString("name");
- int hp = fishes.getInt("hp");
- int hpreg = fishes.getInt("hpregen");
- int type = fishes.getInt("fish_type");
- int group = fishes.getInt("fish_group");
- int fish_guts = fishes.getInt("fish_guts");
- int guts_check_time = fishes.getInt("guts_check_time");
- int wait_time = fishes.getInt("wait_time");
- int combat_time = fishes.getInt("combat_time");
- fish = new FishData(id, lvl, name, hp, hpreg, type, group, fish_guts, guts_check_time, wait_time, combat_time);
- switch (fish.getGroup())
- {
- case 0:
- _fishsEasy.add(fish);
- break;
- case 1:
- _fishsNormal.add(fish);
- break;
- case 2:
- _fishsHard.add(fish);
- }
- }
- fishes.close();
- statement.close();
- count = _fishsEasy.size() + _fishsNormal.size() + _fishsHard.size();
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Error while creating fish table" + e.getMessage(), e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- _log.info("FishTable: Loaded " + count + " Fishes.");
- }
-
- /**
- * @param lvl
- * @param type
- * @param group
- * @return List of Fish that can be fished
- */
- public List<FishData> getfish(int lvl, int type, int group)
- {
- List<FishData> result = new FastList<FishData>();
- List<FishData> _Fishs = null;
- switch (group)
- {
- case 0:
- _Fishs = _fishsEasy;
- break;
- case 1:
- _Fishs = _fishsNormal;
- break;
- case 2:
- _Fishs = _fishsHard;
- }
- if (_Fishs == null)
- {
- // the fish list is empty
- _log.warning("Fish are not defined !");
- return null;
- }
- for (FishData f : _Fishs)
- {
- if (f.getLevel() != lvl)
- continue;
- if (f.getType() != type)
- continue;
-
- result.add(f);
- }
- if (result.isEmpty())
- _log.warning("Cant Find Any Fish!? - Lvl: " + lvl + " Type: " + type);
- return result;
- }
-
- @SuppressWarnings("synthetic-access")
- private static class SingletonHolder
- {
- protected static final FishTable _instance = new FishTable();
- }
- }
|