Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdJoin.java

128 lines
4.3 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
2014-04-04 20:55:21 +02:00
import com.massivecraft.factions.*;
import com.massivecraft.factions.event.FPlayerJoinEvent;
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TL;
2014-04-04 20:55:21 +02:00
import org.bukkit.Bukkit;
2011-03-19 13:00:03 +01:00
2014-04-04 20:55:21 +02:00
public class CmdJoin extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdJoin() {
2014-07-01 22:10:18 +02:00
super();
this.aliases.add("join");
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
this.requiredArgs.add("faction name");
this.optionalArgs.put("player", "you");
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
this.permission = Permission.JOIN.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2018-12-21 22:46:10 +01:00
senderMustBePlayer = true;
2014-07-01 22:10:18 +02:00
senderMustBeMember = false;
senderMustBeModerator = false;
2018-03-26 23:43:15 +02:00
senderMustBeColeader = false;
2014-07-01 22:10:18 +02:00
senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
}
@Override
public void perform() {
2014-07-01 22:10:18 +02:00
Faction faction = this.argAsFaction(0);
if (faction == null) {
return;
}
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
FPlayer fplayer = this.argAsBestFPlayerMatch(1, fme, false);
boolean samePlayer = fplayer == fme;
2014-04-04 20:55:21 +02:00
if (!samePlayer && !Permission.JOIN_OTHERS.has(sender, false)) {
msg(TL.COMMAND_JOIN_CANNOTFORCE);
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
if (!faction.isNormal()) {
msg(TL.COMMAND_JOIN_SYSTEMFACTION);
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
if (faction == fplayer.getFaction()) {
2014-12-11 17:05:04 +01:00
//TODO:TL
msg(TL.COMMAND_JOIN_ALREADYMEMBER, fplayer.describeTo(fme, true), (samePlayer ? "are" : "is"), faction.getTag(fme));
2014-04-04 20:55:21 +02:00
return;
}
if (Conf.factionMemberLimit > 0 && faction.getFPlayers().size() >= Conf.factionMemberLimit) {
msg(TL.COMMAND_JOIN_ATLIMIT, faction.getTag(fme), Conf.factionMemberLimit, fplayer.describeTo(fme, false));
2014-04-04 20:55:21 +02:00
return;
}
if (fplayer.hasFaction()) {
2014-12-11 17:05:04 +01:00
//TODO:TL
msg(TL.COMMAND_JOIN_INOTHERFACTION, fplayer.describeTo(fme, true), (samePlayer ? "your" : "their"));
2014-04-04 20:55:21 +02:00
return;
}
if (!Conf.canLeaveWithNegativePower && fplayer.getPower() < 0) {
msg(TL.COMMAND_JOIN_NEGATIVEPOWER, fplayer.describeTo(fme, true));
2014-07-01 22:10:18 +02:00
return;
2014-04-04 20:55:21 +02:00
}
if (!(faction.getOpen() || faction.isInvited(fplayer) || fme.isAdminBypassing() || Permission.JOIN_ANY.has(sender, false))) {
msg(TL.COMMAND_JOIN_REQUIRESINVITATION);
2014-07-01 22:10:18 +02:00
if (samePlayer) {
faction.msg(TL.COMMAND_JOIN_ATTEMPTEDJOIN, fplayer.describeTo(faction, true));
2014-07-01 22:10:18 +02:00
}
2014-04-04 20:55:21 +02: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
if (samePlayer && !canAffordCommand(Conf.econCostJoin, TL.COMMAND_JOIN_TOJOIN.toString())) {
2014-07-01 22:10:18 +02:00
return;
}
2014-04-04 20:55:21 +02:00
// Check for ban
if (!fme.isAdminBypassing() && faction.isBanned(fme)) {
fme.msg(TL.COMMAND_JOIN_BANNED, faction.getTag(fme));
return;
}
2014-04-04 20:55:21 +02:00
// trigger the join event (cancellable)
FPlayerJoinEvent joinEvent = new FPlayerJoinEvent(FPlayers.getInstance().getByPlayer(me), faction, FPlayerJoinEvent.PlayerJoinReason.COMMAND);
2014-07-01 22:10:18 +02:00
Bukkit.getServer().getPluginManager().callEvent(joinEvent);
if (joinEvent.isCancelled()) {
return;
}
2014-04-04 20:55:21 +02:00
// then make 'em pay (if applicable)
if (samePlayer && !payForCommand(Conf.econCostJoin, TL.COMMAND_JOIN_TOJOIN.toString(), TL.COMMAND_JOIN_FORJOIN.toString())) {
2014-07-01 22:10:18 +02:00
return;
}
2014-04-04 20:55:21 +02:00
fme.msg(TL.COMMAND_JOIN_SUCCESS, fplayer.describeTo(fme, true), faction.getTag(fme));
2014-04-04 20:55:21 +02:00
if (!samePlayer) {
fplayer.msg(TL.COMMAND_JOIN_MOVED, fme.describeTo(fplayer, true), faction.getTag(fplayer));
2014-07-01 22:10:18 +02:00
}
faction.msg(TL.COMMAND_JOIN_JOINED, fplayer.describeTo(faction, true));
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
fplayer.resetFactionData();
fplayer.setFaction(faction);
faction.deinvite(fplayer);
fme.setRole(faction.getDefaultRole());
2014-04-04 20:55:21 +02:00
if (Conf.logFactionJoin) {
2014-07-01 22:10:18 +02:00
if (samePlayer) {
2018-11-07 06:38:43 +01:00
SavageFactions.plugin.log(TL.COMMAND_JOIN_JOINEDLOG.toString(), fplayer.getName(), faction.getTag());
2014-07-01 22:10:18 +02:00
} else {
2018-11-07 06:38:43 +01:00
SavageFactions.plugin.log(TL.COMMAND_JOIN_MOVEDLOG.toString(), fme.getName(), fplayer.getName(), faction.getTag());
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
}
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_JOIN_DESCRIPTION;
}
2011-03-19 13:00:03 +01:00
}