2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd ;
2011-03-22 15:45:41 +01:00
2012-03-09 23:09:33 +01:00
import org.bukkit.Bukkit ;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer ;
2013-04-09 13:24:55 +02:00
import com.massivecraft.factions.FFlag ;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Faction ;
2013-04-09 12:56:29 +02:00
import com.massivecraft.factions.Perm ;
2013-04-09 13:24:55 +02:00
import com.massivecraft.factions.Rel ;
2012-03-09 23:09:33 +01:00
import com.massivecraft.factions.event.FactionRelationEvent ;
2011-10-05 12:13:54 +02:00
import com.massivecraft.factions.integration.SpoutFeatures ;
2013-04-16 09:48:57 +02:00
import com.massivecraft.mcore.cmd.req.ReqIsPlayer ;
2011-03-22 15:45:41 +01:00
2013-04-10 13:12:22 +02:00
public abstract class CmdFactionsRelationAbstract extends FCommand
2011-10-09 18:35:39 +02:00
{
2011-10-23 17:30:41 +02:00
public Rel targetRelation ;
2011-03-22 15:45:41 +01:00
2013-04-10 13:12:22 +02:00
public CmdFactionsRelationAbstract ( )
2011-10-09 18:35:39 +02:00
{
super ( ) ;
2011-10-24 11:11:53 +02:00
this . requiredArgs . add ( " faction " ) ;
//this.optionalArgs.put("", "");
2011-10-09 18:35:39 +02:00
2013-04-09 12:56:29 +02:00
this . permission = Perm . RELATION . node ;
2011-03-22 15:45:41 +01:00
2011-10-23 17:55:53 +02:00
senderMustBeOfficer = true ;
2011-03-22 15:45:41 +01:00
}
2011-10-09 18:35:39 +02:00
@Override
public void perform ( )
{
Faction them = this . argAsFaction ( 0 ) ;
2011-10-10 01:21:05 +02:00
if ( them = = null ) return ;
2011-03-22 15:45:41 +01:00
2011-10-24 02:33:30 +02:00
/ * if ( ! them . isNormal ( ) )
2011-10-09 18:35:39 +02:00
{
2011-10-10 13:40:24 +02:00
msg ( " <b>Nope! You can't. " ) ;
2011-03-22 15:45:41 +01:00
return ;
2011-10-24 02:33:30 +02:00
} * /
2011-03-22 15:45:41 +01:00
2011-10-09 18:35:39 +02:00
if ( them = = myFaction )
{
2011-10-10 13:40:24 +02:00
msg ( " <b>Nope! You can't declare a relation to yourself :) " ) ;
2011-03-22 15:45:41 +01:00
return ;
}
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
2012-04-06 20:27:23 +02:00
if ( myFaction . getRelationWish ( them ) = = targetRelation )
{
msg ( " <b>You already have that relation wish set with %s. " , them . getTag ( ) ) ;
return ;
}
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2011-10-12 18:48:47 +02:00
if ( ! payForCommand ( targetRelation . getRelationCost ( ) , " to change a relation wish " , " for changing a relation wish " ) ) return ;
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
2012-03-09 23:09:33 +01:00
// try to set the new relation
Rel oldRelation = myFaction . getRelationTo ( them , true ) ;
2011-10-09 18:35:39 +02:00
myFaction . setRelationWish ( them , targetRelation ) ;
2011-10-23 17:30:41 +02:00
Rel currentRelation = myFaction . getRelationTo ( them , true ) ;
2012-03-09 23:09:33 +01:00
// if the relation change was successful
2011-10-24 11:07:06 +02:00
if ( targetRelation = = currentRelation )
2011-10-09 18:35:39 +02:00
{
2012-03-13 13:47:54 +01:00
// trigger the faction relation event
FactionRelationEvent relationEvent = new FactionRelationEvent ( myFaction , them , oldRelation , currentRelation ) ;
Bukkit . getServer ( ) . getPluginManager ( ) . callEvent ( relationEvent ) ;
2012-03-09 23:09:33 +01:00
2011-10-24 11:07:06 +02:00
them . msg ( " %s<i> is now %s. " , myFaction . describeTo ( them , true ) , targetRelation . getDescFactionOne ( ) ) ;
myFaction . msg ( " %s<i> is now %s. " , them . describeTo ( myFaction , true ) , targetRelation . getDescFactionOne ( ) ) ;
2011-03-22 15:45:41 +01:00
}
2012-03-09 23:09:33 +01:00
// inform the other faction of your request
2011-10-09 18:35:39 +02:00
else
{
2011-10-24 11:07:06 +02:00
them . msg ( " %s<i> wishes to be %s. " , myFaction . describeTo ( them , true ) , targetRelation . getColor ( ) + targetRelation . getDescFactionOne ( ) ) ;
2013-04-09 13:15:25 +02:00
them . msg ( " <i>Type <c>/ " + ConfServer . baseCommandAliases . get ( 0 ) + " " + targetRelation + " " + myFaction . getTag ( ) + " <i> to accept. " ) ;
2011-10-24 11:07:06 +02:00
myFaction . msg ( " %s<i> were informed that you wish to be %s<i>. " , them . describeTo ( myFaction , true ) , targetRelation . getColor ( ) + targetRelation . getDescFactionOne ( ) ) ;
2011-08-05 10:50:47 +02:00
}
2011-10-09 18:35:39 +02:00
2011-10-24 11:07:06 +02:00
// TODO: The ally case should work!!
2012-03-09 23:09:33 +01:00
// * this might have to be bumped up to make that happen, & allow ALLY,NEUTRAL only
2011-10-24 11:07:06 +02:00
if ( targetRelation ! = Rel . TRUCE & & them . getFlag ( FFlag . PEACEFUL ) )
2011-10-09 18:35:39 +02:00
{
2011-10-10 13:40:24 +02:00
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. " ) ;
2011-10-09 18:35:39 +02:00
}
2011-10-24 11:07:06 +02:00
if ( targetRelation ! = Rel . TRUCE & & myFaction . getFlag ( FFlag . PEACEFUL ) )
2011-10-09 18:35:39 +02:00
{
2011-10-10 13:40:24 +02:00
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. " ) ;
2011-08-05 10:50:47 +02:00
}
2011-08-20 03:36:23 +02:00
2012-05-09 03:24:07 +02:00
SpoutFeatures . updateTitle ( myFaction , them ) ;
2012-05-09 05:21:21 +02:00
SpoutFeatures . updateTitle ( them , myFaction ) ;
2011-10-23 16:03:28 +02:00
SpoutFeatures . updateTerritoryDisplayLoc ( null ) ;
2011-03-22 15:45:41 +01:00
}
}