foul-magics/Mage/src/main/java/mage/counters/Counter.java
ssk97 d806a6a3be
Counter text improvements (plus a Magus Lucea Kane gameplay fix) (#11503)
* Improve text generation for some counter abilities

* Magus Lucea Kane must apply to permanent spells (bugfix, related to #11440)

* Further improve text generation of counter text

* Text improvements to a couple cards

* Graft text improvements

* Further remove unused variable

* Be consistent on Backup ability setup, revert Thalia's Lieutenant (filter reuse means it doesn't work)

* Thalia's Lieutenant original text was slightly wrong, fixed
2023-12-03 21:42:16 -05:00

136 lines
3.3 KiB
Java

package mage.counters;
import mage.util.CardUtil;
import mage.util.Copyable;
import java.io.Serializable;
import org.apache.log4j.Logger;
/**
* @author BetaSteward_at_googlemail.com
*/
public class Counter implements Serializable, Copyable<Counter> {
private static final Logger logger = Logger.getLogger(Counter.class);
protected final String name;
protected int count;
/**
* Creates a {@link Counter} with the provided {@code name} and a default
* value of 1
*
* @param name the name of this counter.
*/
public Counter(final String name) {
this.name = name;
this.count = 1;
}
/**
* Creates a {@link Counter} with the provided {@code name} and
* {@code count}
*
* @param name the name of this counter.
* @param count the value of this counter.
*/
public Counter(final String name, final int count) {
this.name = name;
this.count = count;
}
/**
* Creates a {@link Counter} from an existing {@link Counter} object.
*
* @param counter the {@link Counter} to create a copy from.
*/
protected Counter(final Counter counter) {
this.name = counter.name;
this.count = counter.count;
}
/**
* Adds the passed in {@code amount} to the {@code count}
*
* @param amount the value to add to the {@code count}
*/
public void add(int amount) {
count += amount;
}
/**
* Decreases the {@code count} by the passed in {@code amount}. Will not
* allow the count to be less than 0. If an attempt is made to make the
* count be less than zero, the call will be logged.
*
* @param amount
*/
public void remove(int amount) {
if (count >= amount) {
count -= amount;
} else {
logger.warn("An attempt was made to set the counter '" + name
+ "' to less than 0. Setting to 0.");
count = 0;
}
}
/**
* Returns the name of this {@link Counter}
*
* @return the name of this {@link Counter}
*/
public String getName() {
return name;
}
/**
* Returns the count of this {@link Counter}
*
* @return the count of this {@link Counter}
*/
public int getCount() {
return count;
}
/**
* Returns a full description of this {@link Counter}, e.g. "a +1/+1 counter" or "two -1/-1 counters"
*
* @return a full description of this {@link Counter}
*/
public String getDescription() {
return CardUtil.getSimpleCountersText(Math.max(count, 1), CounterType.findArticle(name), name);
}
/**
* Returns a deep copy of this object.
*
* @return a deep copy of this object.
*/
public Counter copy() {
return new Counter(this);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Counter counter = (Counter) o;
return count == counter.count && !(name != null ? !name.equals(counter.name) : counter.name != null);
}
@Override
public int hashCode() {
int result = name != null ? name.hashCode() : 0;
result = 31 * result + count;
return result;
}
}