Package com.l2jfrozen.gameserver.model

Source Code of com.l2jfrozen.gameserver.model.PartyMatchRoomList

/*
* 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.l2jfrozen.gameserver.model;

import java.util.Map;

import javolution.util.FastMap;

import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.SystemMessageId;
import com.l2jfrozen.gameserver.network.serverpackets.ExClosePartyRoom;
import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage;

/**
* @author Gnacik
*/
public class PartyMatchRoomList
{
  private int _maxid = 1;
  private Map<Integer, PartyMatchRoom> _rooms;
 
  private PartyMatchRoomList()
  {
    _rooms = new FastMap<Integer, PartyMatchRoom>();
  }
 
  public synchronized void addPartyMatchRoom(int id, PartyMatchRoom room)
  {
    _rooms.put(id, room);
    _maxid++;
  }
 
  public void deleteRoom(int id)
  {
    for (L2PcInstance _member : getRoom(id).getPartyMembers())
    {
      if (_member == null)
        continue;
     
      _member.sendPacket(new ExClosePartyRoom());
      _member.sendPacket(new SystemMessage(SystemMessageId.PARTY_ROOM_DISBANDED));
     
      _member.setPartyRoom(0);
      _member.broadcastUserInfo();
    }
    _rooms.remove(id);
  }
 
  public PartyMatchRoom getRoom(int id)
  {
    return _rooms.get(id);
  }
 
  public PartyMatchRoom[] getRooms()
  {
    return _rooms.values().toArray(new PartyMatchRoom[_rooms.size()]);
  }
 
  public int getPartyMatchRoomCount()
  {
    return _rooms.size();
  }
 
  public int getMaxId()
  {
    return _maxid;
  }
 
  public PartyMatchRoom getPlayerRoom(L2PcInstance player)
  {
    for (PartyMatchRoom _room : _rooms.values())
      for (L2PcInstance member : _room.getPartyMembers())
        if (member.equals(player))
          return _room;
   
    return null;
  }
 
  public int getPlayerRoomId(L2PcInstance player)
  {
    for (PartyMatchRoom _room : _rooms.values())
      for (L2PcInstance member : _room.getPartyMembers())
        if (member.equals(player))
          return _room.getId();
   
    return -1;
  }
 
  public static PartyMatchRoomList getInstance()
  {
    return SingletonHolder._instance;
  }
 
  @SuppressWarnings("synthetic-access")
  private static class SingletonHolder
  {
    protected static final PartyMatchRoomList _instance = new PartyMatchRoomList();
  }
}
TOP

Related Classes of com.l2jfrozen.gameserver.model.PartyMatchRoomList

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.