forked from External/mage
160 lines
3.8 KiB
Java
160 lines
3.8 KiB
Java
|
|
package mage.abilities.costs;
|
|
|
|
/**
|
|
*
|
|
* @author LevelX2
|
|
*/
|
|
public class OptionalAdditionalCostImpl extends CostsImpl<Cost> implements OptionalAdditionalCost {
|
|
|
|
protected String name;
|
|
protected String reminderText;
|
|
protected String delimiter;
|
|
|
|
protected boolean activated;
|
|
protected int activatedCounter;
|
|
protected boolean repeatable;
|
|
|
|
public OptionalAdditionalCostImpl(String name, String reminderText, Cost cost) {
|
|
this(name, " ", reminderText, cost);
|
|
}
|
|
|
|
public OptionalAdditionalCostImpl(String name, String delimiter, String reminderText, Cost cost) {
|
|
this.activated = false;
|
|
this.name = name;
|
|
this.delimiter = delimiter;
|
|
this.reminderText = "<i>(" + reminderText + ")</i>";
|
|
this.activatedCounter = 0;
|
|
this.add(cost);
|
|
}
|
|
|
|
public OptionalAdditionalCostImpl(final OptionalAdditionalCostImpl cost) {
|
|
super(cost);
|
|
this.name = cost.name;
|
|
this.reminderText = cost.reminderText;
|
|
this.activated = cost.activated;
|
|
this.activatedCounter = cost.activatedCounter;
|
|
this.delimiter = cost.delimiter;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
/**
|
|
* Returns the complete text for the addional cost or if onlyCost is true
|
|
* only the pure text fore the included native cost
|
|
*
|
|
* @param onlyCost
|
|
* @return
|
|
*/
|
|
@Override
|
|
public String getText(boolean onlyCost) {
|
|
if (onlyCost) {
|
|
return getText();
|
|
} else {
|
|
return name + delimiter + getText();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns a reminder text, if the cost has one
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
public String getReminderText() {
|
|
String replace = "";
|
|
if (reminderText != null && !reminderText.isEmpty()) {
|
|
replace = reminderText.replace("{cost}", this.getText(true));
|
|
}
|
|
return replace;
|
|
}
|
|
|
|
/**
|
|
* Returns a text suffix for the game log, that can be added to the cast
|
|
* message.
|
|
*
|
|
* @param position - if there are multiple costs, it's the postion the cost
|
|
* is set (starting with 0)
|
|
* @return
|
|
*/
|
|
@Override
|
|
public String getCastSuffixMessage(int position) {
|
|
StringBuilder sb = new StringBuilder();
|
|
if (isActivated() && (!isRepeatable() || getActivateCount() > 0)) {
|
|
sb.append(position > 0 ? " and " : "").append(" with ");
|
|
if (isRepeatable()) {
|
|
sb.append(getActivateCount()).append(getActivateCount() > 1 ? " times " : " time ");
|
|
}
|
|
sb.append(name);
|
|
}
|
|
return sb.toString();
|
|
}
|
|
|
|
/**
|
|
* If the player intends to pay the cost, the cost will be activated
|
|
*
|
|
*/
|
|
@Override
|
|
public void activate() {
|
|
activated = true;
|
|
++activatedCounter;
|
|
}
|
|
|
|
/**
|
|
* Reset the activate and count information
|
|
*
|
|
*/
|
|
@Override
|
|
public void reset() {
|
|
activated = false;
|
|
activatedCounter = 0;
|
|
}
|
|
|
|
/**
|
|
* Set if the cost be multiple times activated
|
|
*
|
|
* @param repeatable
|
|
*/
|
|
@Override
|
|
public void setRepeatable(boolean repeatable) {
|
|
this.repeatable = repeatable;
|
|
}
|
|
|
|
/**
|
|
* Can the cost be multiple times activated
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
public boolean isRepeatable() {
|
|
return repeatable;
|
|
}
|
|
|
|
/**
|
|
* Returns if the cost was activated
|
|
*
|
|
* @return
|
|
*/
|
|
@Override
|
|
public boolean isActivated() {
|
|
return activated;
|
|
}
|
|
|
|
/**
|
|
* Returns the number of times the cost was activated
|
|
* @return
|
|
*/
|
|
@Override
|
|
public int getActivateCount() {
|
|
return activatedCounter;
|
|
}
|
|
|
|
|
|
@Override
|
|
public OptionalAdditionalCostImpl copy() {
|
|
return new OptionalAdditionalCostImpl(this);
|
|
}
|
|
}
|