/*
* 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 .
*/
package net.sf.l2j.gameserver.model;
import java.util.List;
import javolution.util.FastList;
import net.sf.l2j.gameserver.model.actor.instance.L2GrandBossInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2RaidBossInstance;
import net.sf.l2j.gameserver.serverpackets.ExCloseMPCC;
import net.sf.l2j.gameserver.serverpackets.ExMPCCPartyInfoUpdate;
import net.sf.l2j.gameserver.serverpackets.ExOpenMPCC;
import net.sf.l2j.gameserver.serverpackets.L2GameServerPacket;
/**
*
* @author chris_00
*/
public class L2CommandChannel
{
private List _partys = null;
private L2PcInstance _commandLeader = null;
private int _channelLvl;
/**
* Creates a New Command Channel and Add the Leaders party to the CC
*
* @param CommandChannelLeader
*
*/
public L2CommandChannel(L2PcInstance leader)
{
_commandLeader = leader;
_partys = new FastList();
_partys.add(leader.getParty());
_channelLvl = leader.getParty().getLevel();
leader.getParty().setCommandChannel(this);
leader.getParty().broadcastToPartyMembers(new ExOpenMPCC());
}
/**
* Adds a Party to the Command Channel
* @param Party
*/
public void addParty(L2Party party)
{
// Update the CCinfo for existing players
this.broadcastToChannelMembers(new ExMPCCPartyInfoUpdate(party, 1));
_partys.add(party);
if (party.getLevel() > _channelLvl)
_channelLvl = party.getLevel();
party.setCommandChannel(this);
party.broadcastToPartyMembers(new ExOpenMPCC());
}
/**
* Removes a Party from the Command Channel
* @param Party
*/
public void removeParty(L2Party party)
{
_partys.remove(party);
_channelLvl = 0;
for (L2Party pty : _partys)
{
if (pty.getLevel() > _channelLvl)
_channelLvl = pty.getLevel();
}
party.setCommandChannel(null);
party.broadcastToPartyMembers(new ExCloseMPCC());
if(_partys.size() < 2)
{
disbandChannel();
}
else
{
// Update the CCinfo for existing players
this.broadcastToChannelMembers(new ExMPCCPartyInfoUpdate(party, 0));
}
}
/**
* disbands the whole Command Channel
*/
public void disbandChannel()
{
for (L2Party party : _partys)
{
if(party != null)
removeParty(party);
}
_partys = null;
}
/**
* @return overall membercount of the Command Channel
*/
public int getMemberCount()
{
int count = 0;
for (L2Party party : _partys)
{
if(party != null)
count += party.getMemberCount();
}
return count;
}
/**
* Broadcast packet to every channelmember
* @param L2GameServerPacket
*/
public void broadcastToChannelMembers(L2GameServerPacket gsp)
{
if (!_partys.isEmpty())
{
for (L2Party party : _partys)
{
if(party != null)
party.broadcastToPartyMembers(gsp);
}
}
}
/**
* @return list of Parties in Command Channel
*/
public List getPartys()
{
return _partys;
}
/**
* @return list of all Members in Command Channel
*/
public List getMembers()
{
List members = new FastList();
for (L2Party party : getPartys())
{
members.addAll(party.getPartyMembers());
}
return members;
}
/**
*
* @return Level of CC
*/
public int getLevel() { return _channelLvl; }
/**
* @param sets the leader of the Command Channel
*/
public void setChannelLeader(L2PcInstance leader)
{
_commandLeader = leader;
}
/**
* @return the leader of the Command Channel
*/
public L2PcInstance getChannelLeader()
{
return _commandLeader;
}
/**
* Queen Ant, Core, Orfen, Zaken: MemberCount > 36
* Baium: MemberCount > 56
* Antharas: MemberCount > 225
* Valakas: MemberCount > 99
* normal RaidBoss: MemberCount > 18
*
* @param obj
* @return true if proper condition for RaidWar
*/
public boolean meetRaidWarCondition(L2Object obj)
{
if (!(obj instanceof L2RaidBossInstance) || !(obj instanceof L2GrandBossInstance))
return false;
int npcId = ((L2Attackable)obj).getNpcId();
switch(npcId)
{
case 29001: // Queen Ant
case 29006: // Core
case 29014: // Orfen
case 29022: // Zaken
return (getMemberCount() > 36);
case 29020: // Baium
return (getMemberCount() > 56);
case 29019: // Antharas
return (getMemberCount() > 225);
case 29028: // Valakas
return (getMemberCount() > 99);
default: // normal Raidboss
return (getMemberCount() > 18);
}
}
}