Factions/src/com/massivecraft/factions/cmd/CmdFactionsJoin.java

110 lines
3.7 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-03-19 13:00:03 +01:00
2012-03-02 02:16:45 +01:00
import org.bukkit.Bukkit;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer;
import com.massivecraft.factions.FPlayer;
2013-04-09 13:22:23 +02:00
import com.massivecraft.factions.FPlayerColl;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Faction;
2013-04-09 13:00:09 +02:00
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.Perm;
2013-04-16 11:05:49 +02:00
import com.massivecraft.factions.cmd.arg.ARFPlayer;
import com.massivecraft.factions.cmd.arg.ARFaction;
2012-03-02 02:16:45 +01:00
import com.massivecraft.factions.event.FPlayerJoinEvent;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
2011-03-19 13:00:03 +01:00
2013-04-10 13:12:22 +02:00
public class CmdFactionsJoin extends FCommand
{
2013-04-10 13:12:22 +02:00
public CmdFactionsJoin()
{
2013-04-16 10:11:59 +02:00
this.addAliases("join");
this.addRequiredArg("faction");
this.addOptionalArg("player", "you");
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.JOIN.node));
2011-03-19 13:00:03 +01:00
}
@Override
public void perform()
{
2013-04-16 11:05:49 +02:00
Faction faction = this.arg(0, ARFaction.get());
if (faction == null) return;
2011-03-19 13:00:03 +01:00
2013-04-16 11:05:49 +02:00
FPlayer fplayer = this.arg(1, ARFPlayer.getStartAny(), fme);
if (fplayer == null) return;
boolean samePlayer = fplayer == fme;
if (!samePlayer && ! Perm.JOIN_OTHERS.has(sender, false))
{
msg("<b>You do not have permission to move other players into a faction.");
2011-03-23 17:39:56 +01:00
return;
}
if (faction == fplayer.getFaction())
{
msg("<b>%s %s already a member of %s", fplayer.describeTo(fme, true), (samePlayer ? "are" : "is"), faction.getTag(fme));
2011-03-19 13:00:03 +01:00
return;
}
2013-04-09 13:15:25 +02:00
if (ConfServer.factionMemberLimit > 0 && faction.getFPlayers().size() >= ConfServer.factionMemberLimit)
{
2013-04-09 13:15:25 +02:00
msg(" <b>!<white> The faction %s is at the limit of %d members, so %s cannot currently join.", faction.getTag(fme), ConfServer.factionMemberLimit, fplayer.describeTo(fme, false));
return;
}
if (fplayer.hasFaction())
{
msg("<b>%s must leave %s current faction first.", fplayer.describeTo(fme, true), (samePlayer ? "your" : "their"));
2011-03-19 13:00:03 +01:00
return;
}
2013-04-09 13:15:25 +02:00
if (!ConfServer.canLeaveWithNegativePower && fplayer.getPower() < 0)
{
msg("<b>%s cannot join a faction with a negative power level.", fplayer.describeTo(fme, true));
return;
}
2013-04-16 11:27:03 +02:00
if( ! (faction.isOpen() || faction.isInvited(fplayer) || fme.isUsingAdminMode() || Perm.JOIN_ANY.has(sender, false)))
{
2011-10-10 13:40:24 +02:00
msg("<i>This faction requires invitation.");
if (samePlayer)
faction.msg("%s<i> tried to join your faction.", fplayer.describeTo(faction, true));
2011-03-19 13:00:03 +01:00
return;
}
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make sure they can pay
2013-04-09 13:15:25 +02:00
if (samePlayer && ! canAffordCommand(ConfServer.econCostJoin, "to join a faction")) return;
// trigger the join event (cancellable)
2013-04-12 08:56:26 +02:00
FPlayerJoinEvent joinEvent = new FPlayerJoinEvent(FPlayerColl.get().get(me),faction,FPlayerJoinEvent.PlayerJoinReason.COMMAND);
2012-03-02 02:16:45 +01:00
Bukkit.getServer().getPluginManager().callEvent(joinEvent);
if (joinEvent.isCancelled()) return;
2012-03-13 13:47:54 +01:00
// then make 'em pay (if applicable)
2013-04-09 13:15:25 +02:00
if (samePlayer && ! payForCommand(ConfServer.econCostJoin, "to join a faction", "for joining a faction")) return;
2013-04-09 13:15:25 +02:00
fme.setRole(ConfServer.factionRankDefault); // They have just joined a faction, start them out on the lowest rank (default config).
2012-03-13 13:47:54 +01:00
if (!samePlayer)
fplayer.msg("<i>%s moved you into the faction %s.", fme.describeTo(fplayer, true), faction.getTag(fplayer));
faction.msg("<i>%s joined your faction.", fplayer.describeTo(faction, true));
fme.msg("<i>%s successfully joined %s.", fplayer.describeTo(fme, true), faction.getTag(fme));
fplayer.resetFactionData();
fplayer.setFaction(faction);
faction.deinvite(fplayer);
2013-04-09 13:15:25 +02:00
if (ConfServer.logFactionJoin)
{
if (samePlayer)
Factions.get().log("%s joined the faction %s.", fplayer.getName(), faction.getTag());
else
Factions.get().log("%s moved the player %s into the faction %s.", fme.getName(), fplayer.getName(), faction.getTag());
}
2011-03-19 13:00:03 +01:00
}
}