/*
* Copyright (C) 2004-2015 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.network.serverpackets;
import java.util.ArrayList;
import java.util.List;
import com.l2jserver.gameserver.model.PartyMatchRoom;
import com.l2jserver.gameserver.model.PartyMatchRoomList;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
/**
* @author Gnacik
*/
public class ListPartyWating extends L2GameServerPacket
{
private final L2PcInstance _cha;
private final int _loc;
private final int _lim;
private final List<PartyMatchRoom> _rooms;
public ListPartyWating(L2PcInstance player, int auto, int location, int limit)
{
_cha = player;
_loc = location;
_lim = limit;
_rooms = new ArrayList<>();
}
@Override
protected final void writeImpl()
{
for (PartyMatchRoom room : PartyMatchRoomList.getInstance().getRooms())
{
if ((room.getMembers() < 1) || (room.getOwner() == null) || !room.getOwner().isOnline() || (room.getOwner().getPartyRoom() != room.getId()))
{
PartyMatchRoomList.getInstance().deleteRoom(room.getId());
continue;
}
if ((_loc > 0) && (_loc != room.getLocation()))
{
continue;
}
if ((_lim == 0) && ((_cha.getLevel() < room.getMinLvl()) || (_cha.getLevel() > room.getMaxLvl())))
{
continue;
}
_rooms.add(room);
}
int size = _rooms.size();
writeC(0x9c);
if (size > 0)
{
writeD(0x01);
}
else
{
writeD(0x00);
}
writeD(_rooms.size());
for (PartyMatchRoom room : _rooms)
{
writeD(room.getId());
writeS(room.getTitle());
writeD(room.getLocation());
writeD(room.getMinLvl());
writeD(room.getMaxLvl());
writeD(room.getMaxMembers());
writeS(room.getOwner().getName());
writeD(room.getMembers());
for (L2PcInstance member : room.getPartyMembers())
{
if (member != null)
{
writeD(member.getClassId().getId());
writeS(member.getName());
}
else
{
writeD(0x00);
writeS("Not Found");
}
}
}
}
}