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

93 lines
3.7 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.Faction;
import com.massivecraft.factions.event.FactionRelationEvent;
import com.massivecraft.factions.scoreboards.FScoreboard;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.struct.Permission;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.struct.Relation;
2014-04-04 20:55:21 +02:00
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
public abstract class FRelationCommand extends FCommand {
2014-04-04 20:55:21 +02:00
public Relation targetRelation;
public FRelationCommand() {
2014-07-01 22:10:18 +02:00
super();
this.requiredArgs.add("faction tag");
2014-04-04 20:55:21 +02:00
//this.optionalArgs.put("player name", "you");
2014-07-01 22:10:18 +02:00
this.permission = Permission.RELATION.node;
this.disableOnLock = true;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = true;
senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
}
@Override
public void perform() {
2014-07-01 22:10:18 +02:00
Faction them = this.argAsFaction(0);
if (them == null) {
return;
}
2014-04-04 20:55:21 +02:00
if (!them.isNormal()) {
2014-07-01 22:10:18 +02:00
msg("<b>Nope! You can't.");
return;
2014-04-04 20:55:21 +02:00
}
if (them == myFaction) {
2014-07-01 22:10:18 +02:00
msg("<b>Nope! You can't declare a relation to yourself :)");
return;
2014-04-04 20:55:21 +02:00
}
if (myFaction.getRelationWish(them) == targetRelation) {
2014-07-01 22:10:18 +02:00
msg("<b>You already have that relation wish set with %s.", them.getTag());
return;
2014-04-04 20:55:21 +02:00
}
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2014-07-01 21:49:42 +02:00
if (!payForCommand(targetRelation.getRelationCost(), "to change a relation wish", "for changing a relation wish")) {
2014-04-04 20:55:21 +02:00
return;
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
// try to set the new relation
2014-07-01 22:10:18 +02:00
Relation oldRelation = myFaction.getRelationTo(them, true);
myFaction.setRelationWish(them, targetRelation);
2014-04-04 20:55:21 +02:00
Relation currentRelation = myFaction.getRelationTo(them, true);
ChatColor currentRelationColor = currentRelation.getColor();
// if the relation change was successful
if (targetRelation.value == currentRelation.value) {
// trigger the faction relation event
FactionRelationEvent relationEvent = new FactionRelationEvent(myFaction, them, oldRelation, currentRelation);
Bukkit.getServer().getPluginManager().callEvent(relationEvent);
them.msg("<i>Your faction is now " + currentRelationColor + targetRelation.toString() + "<i> to " + currentRelationColor + myFaction.getTag());
myFaction.msg("<i>Your faction is now " + currentRelationColor + targetRelation.toString() + "<i> to " + currentRelationColor + them.getTag());
}
// inform the other faction of your request
else {
them.msg(currentRelationColor + myFaction.getTag() + "<i> wishes to be your " + targetRelation.getColor() + targetRelation.toString());
them.msg("<i>Type <c>/" + Conf.baseCommandAliases.get(0) + " " + targetRelation + " " + myFaction.getTag() + "<i> to accept.");
myFaction.msg(currentRelationColor + them.getTag() + "<i> were informed that you wish to be " + targetRelation.getColor() + targetRelation);
}
if (!targetRelation.isNeutral() && them.isPeaceful()) {
them.msg("<i>This will have no effect while your faction is peaceful.");
myFaction.msg("<i>This will have no effect while their faction is peaceful.");
}
if (!targetRelation.isNeutral() && myFaction.isPeaceful()) {
them.msg("<i>This will have no effect while their faction is peaceful.");
myFaction.msg("<i>This will have no effect while your faction is peaceful.");
}
2014-10-20 21:55:16 +02:00
FScoreboard.applyUpdates(myFaction);
FScoreboard.applyUpdates(them);
2014-04-04 20:55:21 +02:00
}
}