Factions/src/com/massivecraft/factions/FPlayer.java

755 lines
21 KiB
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions;
2011-02-06 13:36:11 +01:00
2011-10-22 16:00:24 +02:00
import java.util.HashSet;
import java.util.Set;
2012-03-02 02:16:45 +01:00
import org.bukkit.Bukkit;
2011-02-06 13:36:11 +01:00
import org.bukkit.ChatColor;
import org.bukkit.Location;
2011-02-06 13:36:11 +01:00
import org.bukkit.entity.Player;
2011-07-18 22:06:02 +02:00
2012-03-02 02:16:45 +01:00
import com.massivecraft.factions.event.FPlayerLeaveEvent;
import com.massivecraft.factions.event.LandClaimEvent;
2011-10-12 17:25:01 +02:00
import com.massivecraft.factions.iface.EconomyParticipator;
import com.massivecraft.factions.iface.RelationParticipator;
import com.massivecraft.factions.integration.Econ;
import com.massivecraft.factions.integration.LWCFeatures;
import com.massivecraft.factions.integration.SpoutFeatures;
import com.massivecraft.factions.integration.Worldguard;
2011-10-12 17:25:01 +02:00
import com.massivecraft.factions.util.RelationUtil;
import com.massivecraft.mcore.ps.PS;
2013-04-12 08:56:26 +02:00
import com.massivecraft.mcore.store.SenderEntity;
2013-04-10 10:32:04 +02:00
import com.massivecraft.mcore.util.Txt;
2011-02-06 13:36:11 +01:00
2013-04-12 08:56:26 +02:00
public class FPlayer extends SenderEntity<FPlayer> implements EconomyParticipator
{
// -------------------------------------------- //
2013-04-12 08:56:26 +02:00
// META
// -------------------------------------------- //
2013-04-12 08:56:26 +02:00
public static FPlayer get(Object oid)
{
2013-04-12 08:56:26 +02:00
return FPlayerColl.get().get(oid);
}
// -------------------------------------------- //
// OVERRIDE: ENTITY
// -------------------------------------------- //
2013-04-12 08:56:26 +02:00
@Override
public FPlayer load(FPlayer that)
{
this.setFactionId(that.factionId);
this.role = that.role;
this.title = that.title;
this.power = that.power;
this.powerBoost = that.powerBoost;
this.lastPowerUpdateTime = that.lastPowerUpdateTime;
this.lastLoginTime = that.lastLoginTime;
return this;
2013-04-12 08:56:26 +02:00
}
@Override
public boolean isDefault()
{
if (this.hasFaction()) return false;
if (this.getPowerRounded() != this.getPowerMaxRounded() && this.getPowerRounded() != (int) Math.round(ConfServer.powerPlayerStarting)) return false;
return true;
}
// -------------------------------------------- //
2013-04-12 08:11:11 +02:00
// FIELDS: RAW PERMANENT
// -------------------------------------------- //
2011-10-08 23:22:02 +02:00
// FIELD: factionId
// TODO: Ensure this one always is null in the nofaction case and never actually the ID of the nofaction-faction.
// TODO: The getFactionId should however NEVER return null!
private String factionId = null;
// The get methods never return null.
public String getFactionId()
2011-10-08 23:22:02 +02:00
{
if (this.factionId == null) return Const.FACTIONID_NONE;
return this.factionId;
}
public Faction getFaction()
{
Faction ret = FactionColl.get().get(this.getFactionId());
if (ret == null) ret = FactionColl.get().get(Const.FACTIONID_NONE);
return ret;
}
// TODO: When is this one used?
public boolean hasFaction()
{
// TODO: Broken logic
return !this.getFactionId().equals(Const.FACTIONID_NONE);
}
// This setter is so long because it search for default/null case and takes care of updating the faction member index
public void setFactionId(String factionId)
{
// Avoid null input
if (factionId == null) factionId = Const.FACTIONID_NONE;
// Get the old value
String oldFactionId = this.getFactionId();
// Ignore nochange
if (factionId.equals(oldFactionId)) return;
// Apply change
if (factionId.equals(Const.FACTIONID_NONE))
{
this.factionId = null;
}
else
{
this.factionId = factionId;
}
// Next we must be attached and inited
if (!this.attached()) return;
if (!this.getColl().inited()) return;
// Spout Derp
SpoutFeatures.updateTitle(this, null);
SpoutFeatures.updateTitle(null, this);
// Update index
Faction oldFaction = FactionColl.get().get(oldFactionId);
Faction faction = FactionColl.get().get(factionId);
oldFaction.fplayers.remove(this);
faction.fplayers.add(this);
// Mark as changed
this.changed();
}
public void setFaction(Faction faction)
{
this.setFactionId(faction.getId());
2011-10-08 23:22:02 +02:00
}
2011-10-08 23:22:02 +02:00
// FIELD: role
private Rel role;
public Rel getRole() { return this.role; }
public void setRole(Rel role) { this.role = role; SpoutFeatures.updateTitle(this, null); }
2011-10-08 23:22:02 +02:00
// FIELD: title
2011-02-06 13:36:11 +01:00
private String title;
2011-10-24 03:02:25 +02:00
public String getTitle() { return this.title; }
public void setTitle(String title) { this.title = title; }
2011-10-08 23:22:02 +02:00
// FIELD: power
2011-02-06 13:36:11 +01:00
private double power;
// FIELD: powerBoost
// special increase/decrease to min and max power for this player
private double powerBoost;
public double getPowerBoost() { return this.powerBoost; }
public void setPowerBoost(double powerBoost) { this.powerBoost = powerBoost; }
2011-10-08 23:22:02 +02:00
// FIELD: lastPowerUpdateTime
2011-02-06 13:36:11 +01:00
private long lastPowerUpdateTime;
2011-10-08 23:22:02 +02:00
// FIELD: lastLoginTime
2011-03-22 20:36:33 +01:00
private long lastLoginTime;
2011-10-08 23:22:02 +02:00
2013-04-12 08:11:11 +02:00
// -------------------------------------------- //
// FIELDS: RAW TRANSIENT
// -------------------------------------------- //
// Where did this player stand the last time we checked?
private transient PS currentChunk = null;
public PS getCurrentChunk() { return this.currentChunk; }
public void setCurrentChunk(PS currentChunk) { this.currentChunk = currentChunk.getChunk(true); }
2011-10-08 23:22:02 +02:00
// FIELD: mapAutoUpdating
private transient boolean mapAutoUpdating;
2011-10-24 03:02:25 +02:00
public void setMapAutoUpdating(boolean mapAutoUpdating) { this.mapAutoUpdating = mapAutoUpdating; }
public boolean isMapAutoUpdating() { return mapAutoUpdating; }
2011-10-08 23:22:02 +02:00
// FIELD: autoClaimEnabled
private transient Faction autoClaimFor;
2011-10-24 03:02:25 +02:00
public Faction getAutoClaimFor() { return autoClaimFor; }
public void setAutoClaimFor(Faction faction) { this.autoClaimFor = faction; }
2011-10-23 22:08:57 +02:00
2013-04-16 11:27:03 +02:00
private transient boolean usingAdminMode = false;
public boolean isUsingAdminMode() { return this.usingAdminMode; }
public void setUsingAdminMode(boolean val) { this.usingAdminMode = val; }
2011-10-09 18:35:39 +02:00
2011-10-08 23:22:02 +02:00
// FIELD: loginPvpDisabled
2011-09-24 12:04:49 +02:00
private transient boolean loginPvpDisabled;
2011-10-08 23:22:02 +02:00
2011-10-12 17:25:01 +02:00
// FIELD: account
public String getAccountId() { return this.getId(); }
2011-10-12 17:25:01 +02:00
2011-03-22 17:20:21 +01:00
// -------------------------------------------- //
// CONSTRUCT
2011-03-22 17:20:21 +01:00
// -------------------------------------------- //
2011-03-18 17:33:23 +01:00
// GSON need this noarg constructor.
public FPlayer()
{
2011-10-10 01:21:05 +02:00
this.resetFactionData(false);
2013-04-09 13:15:25 +02:00
this.power = ConfServer.powerPlayerStarting;
2011-03-19 13:00:03 +01:00
this.lastPowerUpdateTime = System.currentTimeMillis();
2011-03-22 20:36:33 +01:00
this.lastLoginTime = System.currentTimeMillis();
2011-03-19 13:00:03 +01:00
this.mapAutoUpdating = false;
this.autoClaimFor = null;
2013-04-09 13:15:25 +02:00
this.loginPvpDisabled = (ConfServer.noPVPDamageToOthersForXSecondsAfterLogin > 0) ? true : false;
this.powerBoost = 0.0;
2013-04-12 09:51:14 +02:00
if ( ! ConfServer.newPlayerStartingFactionID.equals(Const.FACTIONID_NONE) && FactionColl.get().containsId(ConfServer.newPlayerStartingFactionID))
{
2013-04-09 13:15:25 +02:00
this.factionId = ConfServer.newPlayerStartingFactionID;
}
2011-03-19 13:00:03 +01:00
}
2012-02-19 15:32:50 +01:00
public final void resetFactionData(boolean doSpoutUpdate)
{
2013-04-12 09:51:14 +02:00
// TODO: Should we not rather use ConfServer.newPlayerStartingFactionID here?
this.factionId = Const.FACTIONID_NONE; // The default neutral faction
this.role = Rel.MEMBER;
2011-03-19 13:00:03 +01:00
this.title = "";
this.autoClaimFor = null;
2012-02-19 15:32:50 +01:00
if (doSpoutUpdate)
2011-10-10 01:21:05 +02:00
{
SpoutFeatures.updateTitle(this, null);
SpoutFeatures.updateTitle(null, this);
SpoutFeatures.updateCape(this.getPlayer(), null);
2011-10-10 01:21:05 +02:00
}
}
public void resetFactionData()
{
this.resetFactionData(true);
2011-03-18 17:33:23 +01:00
}
2011-03-22 17:20:21 +01:00
// -------------------------------------------- //
// GETTERS AND SETTERS
2011-03-22 17:20:21 +01:00
// -------------------------------------------- //
public long getLastLoginTime()
{
2011-03-22 20:36:33 +01:00
return lastLoginTime;
}
public void setLastLoginTime(long lastLoginTime)
{
losePowerFromBeingOffline();
2011-03-22 20:36:33 +01:00
this.lastLoginTime = lastLoginTime;
this.lastPowerUpdateTime = lastLoginTime;
2013-04-09 13:15:25 +02:00
if (ConfServer.noPVPDamageToOthersForXSecondsAfterLogin > 0)
{
this.loginPvpDisabled = true;
}
2011-03-22 20:36:33 +01:00
}
public boolean hasLoginPvpDisabled()
{
if (!loginPvpDisabled)
{
return false;
}
2013-04-09 13:15:25 +02:00
if (this.lastLoginTime + (ConfServer.noPVPDamageToOthersForXSecondsAfterLogin * 1000) < System.currentTimeMillis())
{
this.loginPvpDisabled = false;
return false;
}
return true;
}
// -------------------------------------------- //
// TITLE, NAME, FACTION TAG AND CHAT
// -------------------------------------------- //
public String getName()
{
return getId();
}
public String getTag()
{
if ( ! this.hasFaction())
{
return "";
}
return this.getFaction().getTag();
}
// Base concatenations:
public String getNameAndSomething(String something)
{
String ret = this.role.getPrefix();
if (something.length() > 0) {
ret += something+" ";
}
ret += this.getName();
return ret;
}
public String getNameAndTitle()
{
return this.getNameAndSomething(this.getTitle());
}
public String getNameAndTag()
{
return this.getNameAndSomething(this.getTag());
}
// Colored concatenations:
// These are used in information messages
public String getNameAndTitle(Faction faction)
{
return this.getColorTo(faction)+this.getNameAndTitle();
}
public String getNameAndTitle(FPlayer fplayer)
{
return this.getColorTo(fplayer)+this.getNameAndTitle();
}
// Chat Tag:
// These are injected into the format of global chat messages.
public String getChatTag()
{
2011-03-19 13:00:03 +01:00
if ( ! this.hasFaction()) {
return "";
}
2013-04-09 13:15:25 +02:00
return String.format(ConfServer.chatTagFormat, this.role.getPrefix()+this.getTag());
}
// Colored Chat Tag
public String getChatTag(Faction faction)
{
2011-03-19 13:00:03 +01:00
if ( ! this.hasFaction()) {
return "";
}
2011-10-12 17:25:01 +02:00
return this.getRelationTo(faction).getColor()+getChatTag();
}
public String getChatTag(FPlayer fplayer)
{
if ( ! this.hasFaction())
{
return "";
}
return this.getColorTo(fplayer)+getChatTag();
}
// -------------------------------------------- //
// RELATION AND RELATION COLORS
// -------------------------------------------- //
2011-10-12 17:25:01 +02:00
@Override
2011-10-24 11:07:06 +02:00
public String describeTo(RelationParticipator observer, boolean ucfirst)
{
2011-10-24 11:07:06 +02:00
return RelationUtil.describeThatToMe(this, observer, ucfirst);
}
2011-10-12 17:25:01 +02:00
@Override
2011-10-24 11:07:06 +02:00
public String describeTo(RelationParticipator observer)
{
2011-10-24 11:07:06 +02:00
return RelationUtil.describeThatToMe(this, observer);
}
2011-10-12 17:25:01 +02:00
@Override
2011-10-24 11:07:06 +02:00
public Rel getRelationTo(RelationParticipator observer)
{
2011-10-24 11:07:06 +02:00
return RelationUtil.getRelationOfThatToMe(this, observer);
}
2011-10-12 17:25:01 +02:00
@Override
2011-10-24 11:07:06 +02:00
public Rel getRelationTo(RelationParticipator observer, boolean ignorePeaceful)
{
2011-10-24 11:07:06 +02:00
return RelationUtil.getRelationOfThatToMe(this, observer, ignorePeaceful);
}
public Rel getRelationToLocation()
{
// TODO: Use some built in system to get sender
return BoardColl.get().getFactionAt(PS.valueOf(this.getPlayer())).getRelationTo(this);
}
2011-10-12 17:25:01 +02:00
@Override
2011-10-24 11:07:06 +02:00
public ChatColor getColorTo(RelationParticipator observer)
2011-10-12 17:25:01 +02:00
{
2011-10-24 11:07:06 +02:00
return RelationUtil.getColorOfThatToMe(this, observer);
2011-10-12 17:25:01 +02:00
}
// -------------------------------------------- //
// HEALTH
// -------------------------------------------- //
public void heal(int amnt)
{
2011-02-06 13:36:11 +01:00
Player player = this.getPlayer();
if (player == null)
{
2011-02-06 13:36:11 +01:00
return;
}
player.setHealth(player.getHealth() + amnt);
}
// -------------------------------------------- //
// POWER
// -------------------------------------------- //
public double getPower()
{
2011-02-06 13:36:11 +01:00
this.updatePower();
return this.power;
}
protected void alterPower(double delta)
{
2011-02-06 13:36:11 +01:00
this.power += delta;
if (this.power > this.getPowerMax())
2011-02-06 13:36:11 +01:00
this.power = this.getPowerMax();
else if (this.power < this.getPowerMin())
2011-02-06 13:36:11 +01:00
this.power = this.getPowerMin();
}
public double getPowerMax()
{
2013-04-09 13:15:25 +02:00
return ConfServer.powerPlayerMax + this.powerBoost;
2011-02-06 13:36:11 +01:00
}
public double getPowerMin()
{
2013-04-09 13:15:25 +02:00
return ConfServer.powerPlayerMin + this.powerBoost;
2011-02-06 13:36:11 +01:00
}
public int getPowerRounded()
{
2011-02-06 13:36:11 +01:00
return (int) Math.round(this.getPower());
}
public int getPowerMaxRounded()
{
2011-02-06 13:36:11 +01:00
return (int) Math.round(this.getPowerMax());
}
public int getPowerMinRounded()
{
2011-02-06 13:36:11 +01:00
return (int) Math.round(this.getPowerMin());
}
protected void updatePower()
{
if (this.isOffline())
{
losePowerFromBeingOffline();
2013-04-09 13:15:25 +02:00
if (!ConfServer.powerRegenOffline)
{
return;
}
}
2011-02-06 13:36:11 +01:00
long now = System.currentTimeMillis();
long millisPassed = now - this.lastPowerUpdateTime;
this.lastPowerUpdateTime = now;
Player thisPlayer = this.getPlayer();
if (thisPlayer != null && thisPlayer.isDead()) return; // don't let dead players regain power until they respawn
int millisPerMinute = 60*1000;
2013-04-09 13:15:25 +02:00
double powerPerMinute = ConfServer.powerPerMinute;
if(ConfServer.scaleNegativePower && this.power < 0)
{
2013-04-09 13:15:25 +02:00
powerPerMinute += (Math.sqrt(Math.abs(this.power)) * Math.abs(this.power)) / ConfServer.scaleNegativeDivisor;
}
this.alterPower(millisPassed * powerPerMinute / millisPerMinute);
2011-02-06 13:36:11 +01:00
}
protected void losePowerFromBeingOffline()
{
2013-04-09 13:15:25 +02:00
if (ConfServer.powerOfflineLossPerDay > 0.0 && this.power > ConfServer.powerOfflineLossLimit)
{
long now = System.currentTimeMillis();
long millisPassed = now - this.lastPowerUpdateTime;
this.lastPowerUpdateTime = now;
2013-04-09 13:15:25 +02:00
double loss = millisPassed * ConfServer.powerOfflineLossPerDay / (24*60*60*1000);
if (this.power - loss < ConfServer.powerOfflineLossLimit)
{
loss = this.power;
}
this.alterPower(-loss);
}
}
2011-02-06 13:36:11 +01:00
public void onDeath()
{
2011-02-06 13:36:11 +01:00
this.updatePower();
2013-04-09 13:15:25 +02:00
this.alterPower(-ConfServer.powerPerDeath);
2011-02-06 13:36:11 +01:00
}
// -------------------------------------------- //
// TERRITORY
// -------------------------------------------- //
public boolean isInOwnTerritory()
{
// TODO: Use Mixin to get this PS instead
return BoardColl.get().getFactionAt(PS.valueOf(this.getPlayer())) == this.getFaction();
2011-02-06 13:36:11 +01:00
}
public boolean isInEnemyTerritory()
{
// TODO: Use Mixin to get this PS instead
return BoardColl.get().getFactionAt(PS.valueOf(this.getPlayer())).getRelationTo(this) == Rel.ENEMY;
2011-02-06 13:36:11 +01:00
}
public void sendFactionHereMessage()
{
if (SpoutFeatures.updateTerritoryDisplay(this))
{
return;
}
Faction factionHere = BoardColl.get().getFactionAt(this.getCurrentChunk());
2013-04-10 10:32:04 +02:00
String msg = Txt.parse("<i>")+" ~ "+factionHere.getTag(this);
if (factionHere.hasDescription())
{
msg += " - "+factionHere.getDescription();
}
2011-02-06 13:36:11 +01:00
this.sendMessage(msg);
}
// -------------------------------------------- //
// ACTIONS
// -------------------------------------------- //
2011-03-22 20:36:33 +01:00
public void leave(boolean makePay)
{
2011-03-22 20:36:33 +01:00
Faction myFaction = this.getFaction();
2013-04-16 11:27:03 +02:00
makePay = makePay && Econ.shouldBeUsed() && ! this.isUsingAdminMode();
if (myFaction == null)
{
resetFactionData();
return;
}
boolean perm = myFaction.getFlag(FFlag.PERMANENT);
2011-03-22 20:36:33 +01:00
if (!perm && this.getRole() == Rel.LEADER && myFaction.getFPlayers().size() > 1)
{
2011-10-10 13:40:24 +02:00
msg("<b>You must give the admin role to someone else first.");
2011-03-22 20:36:33 +01:00
return;
}
2013-04-09 13:15:25 +02:00
if (!ConfServer.canLeaveWithNegativePower && this.getPower() < 0)
{
2011-10-10 13:40:24 +02:00
msg("<b>You cannot leave until your power is positive.");
return;
}
// if economy is enabled and they're not on the bypass list, make sure they can pay
2013-04-09 13:15:25 +02:00
if (makePay && ! Econ.hasAtLeast(this, ConfServer.econCostLeave, "to leave your faction.")) return;
2012-03-02 02:16:45 +01:00
FPlayerLeaveEvent leaveEvent = new FPlayerLeaveEvent(this,myFaction,FPlayerLeaveEvent.PlayerLeaveReason.LEAVE);
Bukkit.getServer().getPluginManager().callEvent(leaveEvent);
if (leaveEvent.isCancelled()) return;
// then make 'em pay (if applicable)
2013-04-09 13:15:25 +02:00
if (makePay && ! Econ.modifyMoney(this, -ConfServer.econCostLeave, "to leave your faction.", "for leaving your faction.")) return;
// Am I the last one in the faction?
if (myFaction.getFPlayers().size() == 1)
{
// Transfer all money
if (Econ.shouldBeUsed())
Econ.transferMoney(this, myFaction, this, Econ.getBalance(myFaction.getAccountId()));
}
if (myFaction.isNormal())
{
for (FPlayer fplayer : myFaction.getFPlayersWhereOnline(true))
{
fplayer.msg("%s<i> left %s<i>.", this.describeTo(fplayer, true), myFaction.describeTo(fplayer));
}
2013-04-09 13:15:25 +02:00
if (ConfServer.logFactionLeave)
Factions.get().log(this.getName()+" left the faction: "+myFaction.getTag());
}
this.resetFactionData();
if (myFaction.isNormal() && !perm && myFaction.getFPlayers().isEmpty())
{
2011-03-22 20:36:33 +01:00
// Remove this faction
2013-04-12 08:56:26 +02:00
for (FPlayer fplayer : FPlayerColl.get().getAllOnline())
{
fplayer.msg("<i>%s<i> was disbanded.", myFaction.describeTo(fplayer, true));
2011-03-22 20:36:33 +01:00
}
2011-10-10 01:21:05 +02:00
myFaction.detach();
2013-04-09 13:15:25 +02:00
if (ConfServer.logFactionDisband)
Factions.get().log("The faction "+myFaction.getTag()+" ("+myFaction.getId()+") was disbanded due to the last player ("+this.getName()+") leaving.");
2011-03-22 20:36:33 +01:00
}
}
2011-10-22 16:00:24 +02:00
public boolean canClaimForFactionAtLocation(Faction forFaction, Location location, boolean notifyFailure)
{
2011-10-22 16:00:24 +02:00
String error = null;
PS ps = PS.valueOf(location);
Faction myFaction = this.getFaction();
Faction currentFaction = BoardColl.get().getFactionAt(ps);
int ownedLand = forFaction.getLandCount();
2011-10-22 16:00:24 +02:00
2013-04-09 13:15:25 +02:00
if (ConfServer.worldGuardChecking && Worldguard.checkForRegionsInChunk(location))
{
// Checks for WorldGuard regions in the chunk attempting to be claimed
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>This land is protected");
}
else if (ConfServer.worldsNoClaiming.contains(ps.getWorld()))
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>Sorry, this world has land claiming disabled.");
}
2013-04-16 11:27:03 +02:00
else if (this.isUsingAdminMode())
{
2011-10-22 16:00:24 +02:00
return true;
}
2011-10-22 16:00:24 +02:00
else if (forFaction == currentFaction)
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("%s<i> already own this land.", forFaction.describeTo(this, true));
}
else if ( ! FPerm.TERRITORY.has(this, forFaction, true))
{
return false;
}
2013-04-09 13:15:25 +02:00
else if (forFaction.getFPlayers().size() < ConfServer.claimsRequireMinFactionMembers)
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("Factions must have at least <h>%s<b> members to claim land.", ConfServer.claimsRequireMinFactionMembers);
}
2011-10-22 16:00:24 +02:00
else if (ownedLand >= forFaction.getPowerRounded())
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>You can't claim more land! You need more power!");
2011-10-22 16:00:24 +02:00
}
2013-04-09 13:15:25 +02:00
else if (ConfServer.claimedLandsMax != 0 && ownedLand >= ConfServer.claimedLandsMax && ! forFaction.getFlag(FFlag.INFPOWER))
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>Limit reached. You can't claim more land!");
}
2013-04-09 13:15:25 +02:00
else if ( ! ConfServer.claimingFromOthersAllowed && currentFaction.isNormal())
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>You may not claim land from others.");
}
2011-10-25 22:18:54 +02:00
else if (currentFaction.getRelationTo(forFaction).isAtLeast(Rel.TRUCE) && ! currentFaction.isNone())
2011-10-22 16:00:24 +02:00
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>You can't claim this land due to your relation with the current owner.");
2011-10-22 16:00:24 +02:00
}
else if
(
2013-04-09 13:15:25 +02:00
ConfServer.claimsMustBeConnected
2013-04-16 11:27:03 +02:00
&& ! this.isUsingAdminMode()
&& myFaction.getLandCountInWorld(ps.getWorld()) > 0
&& !BoardColl.get().isConnectedPs(ps, myFaction)
2013-04-09 13:15:25 +02:00
&& (!ConfServer.claimsCanBeUnconnectedIfOwnedByOtherFaction || !currentFaction.isNormal())
)
{
2013-04-09 13:15:25 +02:00
if (ConfServer.claimsCanBeUnconnectedIfOwnedByOtherFaction)
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>You can only claim additional land which is connected to your first claim or controlled by another faction!");
else
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>You can only claim additional land which is connected to your first claim!");
}
2011-10-22 16:00:24 +02:00
else if (currentFaction.isNormal())
{
2011-10-23 22:08:57 +02:00
if ( ! currentFaction.hasLandInflation())
{
// TODO more messages WARN current faction most importantly
2013-04-10 10:32:04 +02:00
error = Txt.parse("%s<i> owns this land and is strong enough to keep it.", currentFaction.getTag(this));
}
else if ( ! BoardColl.get().isBorderPs(ps))
{
2013-04-10 10:32:04 +02:00
error = Txt.parse("<b>You must start claiming land at the border of the territory.");
}
}
2011-10-22 16:00:24 +02:00
if (notifyFailure && error != null)
{
msg(error);
}
return error == null;
}
public boolean attemptClaim(Faction forFaction, Location location, boolean notifyFailure)
{
// notifyFailure is false if called by auto-claim; no need to notify on every failure for it
// return value is false on failure, true on success
PS flocation = PS.valueOf(location).getChunk(true);
Faction currentFaction = BoardColl.get().getFactionAt(flocation);
2011-10-22 16:00:24 +02:00
int ownedLand = forFaction.getLandCount();
2011-10-22 16:00:24 +02:00
if ( ! this.canClaimForFactionAtLocation(forFaction, location, notifyFailure)) return false;
2011-10-23 22:08:57 +02:00
// TODO: Add flag no costs??
// if economy is enabled and they're not on the bypass list, make sure they can pay
2013-04-16 11:27:03 +02:00
boolean mustPay = Econ.shouldBeUsed() && ! this.isUsingAdminMode();
double cost = 0.0;
EconomyParticipator payee = null;
if (mustPay)
{
cost = Econ.calculateClaimCost(ownedLand, currentFaction.isNormal());
if (ConfServer.econClaimUnconnectedFee != 0.0 && forFaction.getLandCountInWorld(flocation.getWorld()) > 0 && !BoardColl.get().isConnectedPs(flocation, forFaction))
2013-04-09 13:15:25 +02:00
cost += ConfServer.econClaimUnconnectedFee;
2013-04-09 13:15:25 +02:00
if(ConfServer.bankEnabled && ConfServer.bankFactionPaysLandCosts && this.hasFaction())
payee = this.getFaction();
else
payee = this;
if ( ! Econ.hasAtLeast(payee, cost, "to claim this land")) return false;
}
LandClaimEvent claimEvent = new LandClaimEvent(flocation, forFaction, this);
2012-03-02 02:16:45 +01:00
Bukkit.getServer().getPluginManager().callEvent(claimEvent);
if(claimEvent.isCancelled()) return false;
// then make 'em pay (if applicable)
if (mustPay && ! Econ.modifyMoney(payee, -cost, "to claim this land", "for claiming this land")) return false;
2013-04-09 13:15:25 +02:00
if (LWCFeatures.getEnabled() && forFaction.isNormal() && ConfServer.onCaptureResetLwcLocks)
LWCFeatures.clearOtherChests(flocation, this.getFaction());
// announce success
2011-10-22 16:00:24 +02:00
Set<FPlayer> informTheseFPlayers = new HashSet<FPlayer>();
informTheseFPlayers.add(this);
informTheseFPlayers.addAll(forFaction.getFPlayersWhereOnline(true));
for (FPlayer fp : informTheseFPlayers)
{
2011-10-22 16:00:24 +02:00
fp.msg("<h>%s<i> claimed land for <h>%s<i> from <h>%s<i>.", this.describeTo(fp, true), forFaction.describeTo(fp), currentFaction.describeTo(fp));
}
2011-10-22 16:00:24 +02:00
BoardColl.get().setFactionAt(flocation, forFaction);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2013-04-09 13:15:25 +02:00
if (ConfServer.logLandClaims)
Factions.get().log(this.getName()+" claimed land at ("+flocation.getChunkX()+","+flocation.getChunkZ()+") for the faction: "+forFaction.getTag());
return true;
}
2011-03-19 13:00:03 +01:00
}