123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /*
- * 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.instancemanager;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.util.ArrayList;
- import java.util.Collections;
- import java.util.Comparator;
- import java.util.Map;
- import java.util.Map.Entry;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import com.l2jserver.L2DatabaseFactory;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- /**
- * @author Kerberos
- */
- public class RaidBossPointsManager
- {
- private final static Logger _log = Logger.getLogger(RaidBossPointsManager.class.getName());
- protected static FastMap<Integer, Map<Integer, Integer>> _list;
-
- private static final Comparator<Map.Entry<Integer, Integer>> _comparator = new Comparator<Map.Entry<Integer, Integer>>(){
- public int compare(Map.Entry<Integer, Integer> entry, Map.Entry<Integer, Integer> entry1)
- {
- return entry.getValue().equals(entry1.getValue()) ? 0 : entry.getValue() < entry1.getValue() ? 1 : -1;
- }
- };
- public final static void init()
- {
- _list = new FastMap<Integer, Map<Integer, Integer>>();
- FastList<Integer> _chars = new FastList<Integer>();
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement = con.prepareStatement("SELECT * FROM `character_raid_points`");
- ResultSet rset = statement.executeQuery();
- while(rset.next())
- {
- _chars.add(rset.getInt("charId"));
- }
- rset.close();
- statement.close();
-
- statement = con.prepareStatement("SELECT * FROM `character_raid_points` WHERE `charId`=?");
- for(FastList.Node<Integer> n = _chars.head(), end = _chars.tail(); (n = n.getNext()) != end;)
- {
- int charId = n.getValue();
- FastMap<Integer, Integer> values = new FastMap<Integer, Integer>();
-
- statement.setInt(1, charId);
- rset = statement.executeQuery();
- statement.clearParameters();
- while(rset.next())
- {
- values.put(rset.getInt("boss_id"), rset.getInt("points"));
- }
- rset.close();
- _list.put(charId, values);
- }
- statement.close();
- }
- catch (SQLException e)
- {
- _log.warning("RaidPointsManager: Couldnt load raid points ");
- }
- catch (Exception e)
- {
- _log.warning(e.getMessage());
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
- public final static void updatePointsInDB(L2PcInstance player, int raidId, int points)
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement;
- statement = con.prepareStatement("REPLACE INTO character_raid_points (`charId`,`boss_id`,`points`) VALUES (?,?,?)");
- statement.setInt(1, player.getObjectId());
- statement.setInt(2, raidId);
- statement.setInt(3, points);
- statement.executeUpdate();
- statement.close();
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "could not update char raid points:", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
- public final static void addPoints(L2PcInstance player, int bossId, int points)
- {
- int ownerId = player.getObjectId();
- Map<Integer, Integer> tmpPoint;
- if (_list == null)
- _list = new FastMap<Integer, Map<Integer, Integer>>();
- tmpPoint = _list.get(ownerId);
- if(tmpPoint == null || tmpPoint.isEmpty())
- {
- tmpPoint = new FastMap<Integer, Integer>();
- tmpPoint.put(bossId, points);
- updatePointsInDB(player, bossId, points);
- }
- else
- {
- int currentPoins = tmpPoint.containsKey(bossId) ? tmpPoint.get(bossId).intValue() : 0;
- tmpPoint.remove(bossId);
- tmpPoint.put(bossId, currentPoins == 0 ? points : currentPoins + points);
- updatePointsInDB(player, bossId, currentPoins == 0 ? points : currentPoins + points);
- }
- _list.remove(ownerId);
- _list.put(ownerId, tmpPoint);
- }
- public final static int getPointsByOwnerId(int ownerId)
- {
- Map<Integer, Integer> tmpPoint;
- if (_list == null)
- _list = new FastMap<Integer, Map<Integer, Integer>>();
- tmpPoint = _list.get(ownerId);
- int totalPoints = 0;
-
- if (tmpPoint == null || tmpPoint.isEmpty())
- return 0;
-
- for(int bossId : tmpPoint.keySet())
- {
- totalPoints += tmpPoint.get(bossId);
- }
- return totalPoints;
- }
- public final static Map<Integer, Integer> getList(L2PcInstance player)
- {
- return _list.get(player.getObjectId());
- }
- public final static void cleanUp()
- {
- Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement statement;
- statement = con.prepareStatement("DELETE from character_raid_points WHERE charId > 0");
- statement.executeUpdate();
- statement.close();
- _list.clear();
- _list = new FastMap<Integer, Map<Integer, Integer>>();
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "could not clean raid points: ", e);
- }
- finally
- {
- L2DatabaseFactory.close(con);
- }
- }
- public final static int calculateRanking(int playerObjId)
- {
- Map<Integer, Integer> tmpRanking = new FastMap<Integer, Integer>();
- Map<Integer, Integer> tmpPoints = new FastMap<Integer, Integer>();
- int totalPoints;
-
- for(int ownerId : _list.keySet())
- {
- totalPoints = getPointsByOwnerId(ownerId);
- if(totalPoints != 0)
- {
- tmpPoints.put(ownerId, totalPoints);
- }
- }
- ArrayList<Entry<Integer, Integer>> list = new ArrayList<Map.Entry<Integer, Integer>>(tmpPoints.entrySet());
-
- Collections.sort(list, _comparator);
- int ranking = 1;
- for(Map.Entry<Integer, Integer> entry : list)
- tmpRanking.put(entry.getKey(), ranking++);
- if (tmpRanking.containsKey(playerObjId))
- return tmpRanking.get(playerObjId);
- return 0;
- }
-
- public static Map<Integer, Integer> getRankList()
- {
- Map<Integer, Integer> tmpRanking = new FastMap<Integer, Integer>();
- Map<Integer, Integer> tmpPoints = new FastMap<Integer, Integer>();
- int totalPoints;
-
- for(int ownerId : _list.keySet())
- {
- totalPoints = getPointsByOwnerId(ownerId);
- if(totalPoints != 0)
- {
- tmpPoints.put(ownerId, totalPoints);
- }
- }
- ArrayList<Entry<Integer, Integer>> list = new ArrayList<Map.Entry<Integer, Integer>>(tmpPoints.entrySet());
-
- Collections.sort(list, _comparator);
- int ranking = 1;
- for(Map.Entry<Integer, Integer> entry : list)
- tmpRanking.put(entry.getKey(), ranking++);
- return tmpRanking;
- }
- }
|