foul-magics/Mage/src/main/java/mage/abilities/costs/OptionalAdditionalCostImpl.java
Susucre f75b1c9f0a
Code cleanup: protect all copy constructors (#10750)
* apply regex to change public copy constructors to protected
* cleanup code using now protected constructors
* fix manaBuilder weird casting of Mana into ConditionalMana
2023-08-04 19:34:58 -04:00

181 lines
4.6 KiB
Java

package mage.abilities.costs;
import mage.abilities.costs.mana.VariableManaCost;
import mage.util.CardUtil;
/**
* @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);
}
protected OptionalAdditionalCostImpl(final OptionalAdditionalCostImpl cost) {
super(cost);
this.name = cost.name;
this.reminderText = cost.reminderText;
this.delimiter = cost.delimiter;
this.activated = cost.activated;
this.activatedCounter = cost.activatedCounter;
this.repeatable = cost.repeatable;
}
@Override
public String getName() {
return this.name;
}
/**
* Returns the complete text for the additional cost or if onlyCost is true
* only the pure text for the included native cost
*
* @param onlyCost
* @return
*/
@Override
public String getText(boolean onlyCost) {
if (onlyCost) {
return getText();
} else {
return name + delimiter + getText() + (delimiter.equals("&mdash;") ? "." : "");
}
}
/**
* 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}", CardUtil.getTextWithFirstCharLowerCase(this.getText(true)));
}
return replace;
}
@Override
public void setReminderText(String reminderText) {
this.reminderText = reminderText;
}
@Override
public void setMinimumCost(int minimumCost) {
for (VariableCost cost : this.getVariableCosts()) {
if (cost instanceof VariableManaCost) {
((VariableManaCost) cost).setMinX(minimumCost);
}
}
}
/**
* 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 void setCostType(VariableCostType costType) {
this.getVariableCosts().forEach(cost -> {
cost.setCostType(costType);
});
}
@Override
public OptionalAdditionalCostImpl copy() {
return new OptionalAdditionalCostImpl(this);
}
}