BuddyList.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:5k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.client;
  19. import java.sql.Connection;
  20. import java.sql.PreparedStatement;
  21. import java.sql.ResultSet;
  22. import java.sql.SQLException;
  23. import java.util.Collection;
  24. import java.util.Deque;
  25. import java.util.LinkedHashMap;
  26. import java.util.LinkedList;
  27. import java.util.Map;
  28. import net.sf.odinms.database.DatabaseConnection;
  29. import net.sf.odinms.tools.MaplePacketCreator;
  30. public class BuddyList {
  31.     public enum BuddyOperation {
  32.         ADDED, DELETED
  33.     }
  34.     public enum BuddyAddResult {
  35.         BUDDYLIST_FULL, ALREADY_ON_LIST, OK
  36.     }
  37.     private Map<Integer, BuddylistEntry> buddies = new LinkedHashMap<Integer, BuddylistEntry>();
  38.     private int capacity;
  39.     private Deque<CharacterNameAndId> pendingRequests = new LinkedList<CharacterNameAndId>();
  40.     public BuddyList(int capacity) {
  41.         super();
  42.         this.capacity = capacity;
  43.     }
  44.     public boolean contains(int characterId) {
  45.         return buddies.containsKey(Integer.valueOf(characterId));
  46.     }
  47.     public boolean containsVisible(int characterId) {
  48.         BuddylistEntry ble = buddies.get(characterId);
  49.         if (ble == null) {
  50.             return false;
  51.         }
  52.         return ble.isVisible();
  53.     }
  54.     public int getCapacity() {
  55.         return capacity;
  56.     }
  57.     public void setCapacity(int capacity) {
  58.         this.capacity = capacity;
  59.     }
  60.     public void addCapacity(int capacity) {
  61.         this.capacity += capacity;
  62.     }
  63.     public BuddylistEntry get(int characterId) {
  64.         return buddies.get(Integer.valueOf(characterId));
  65.     }
  66.     public BuddylistEntry get(String characterName) {
  67.         String lowerCaseName = characterName.toLowerCase();
  68.         for (BuddylistEntry ble : buddies.values()) {
  69.             if (ble.getName().toLowerCase().equals(lowerCaseName)) {
  70.                 return ble;
  71.             }
  72.         }
  73.         return null;
  74.     }
  75.     public void put(BuddylistEntry entry) {
  76.         buddies.put(Integer.valueOf(entry.getCharacterId()), entry);
  77.     }
  78.     public void remove(int characterId) {
  79.         buddies.remove(Integer.valueOf(characterId));
  80.     }
  81.     public Collection<BuddylistEntry> getBuddies() {
  82.         return buddies.values();
  83.     }
  84.     public boolean isFull() {
  85.         return buddies.size() >= capacity;
  86.     }
  87.     public int[] getBuddyIds() {
  88.         int buddyIds[] = new int[buddies.size()];
  89.         int i = 0;
  90.         for (BuddylistEntry ble : buddies.values()) {
  91.             buddyIds[i++] = ble.getCharacterId();
  92.         }
  93.         return buddyIds;
  94.     }
  95.     public void loadFromDb(int characterId) throws SQLException {
  96.         Connection con = DatabaseConnection.getConnection();
  97.         PreparedStatement ps = con.prepareStatement("SELECT b.buddyid, b.pending, c.name as buddyname FROM buddies as b, characters as c WHERE c.id = b.buddyid AND b.characterid = ?");
  98.         ps.setInt(1, characterId);
  99.         ResultSet rs = ps.executeQuery();
  100.         while (rs.next()) {
  101.             if (rs.getInt("pending") == 1) {
  102.                 pendingRequests.push(new CharacterNameAndId(rs.getInt("buddyid"), rs.getString("buddyname")));
  103.             } else {
  104.                 put(new BuddylistEntry(rs.getString("buddyname"), rs.getInt("buddyid"), -1, true));
  105.             }
  106.         }
  107.         rs.close();
  108.         ps.close();
  109.         ps = con.prepareStatement("DELETE FROM buddies WHERE pending = 1 AND characterid = ?");
  110.         ps.setInt(1, characterId);
  111.         ps.executeUpdate();
  112.         ps.close();
  113.     }
  114.     public CharacterNameAndId pollPendingRequest() {
  115.         return pendingRequests.pollLast();
  116.     }
  117.     public void addBuddyRequest(MapleClient c, int cidFrom, String nameFrom, int channelFrom) {
  118.         put(new BuddylistEntry(nameFrom, cidFrom, channelFrom, false));
  119.         if (pendingRequests.isEmpty()) {
  120.             c.getSession().write(MaplePacketCreator.requestBuddylistAdd(cidFrom, nameFrom));
  121.         } else {
  122.             pendingRequests.push(new CharacterNameAndId(cidFrom, nameFrom));
  123.         }
  124.     }
  125. }