1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 17:00:16 -09:00

Fix M15 colors for GW (was WG), GU (was UG), RW (was WR)

This commit is contained in:
spjspj 2018-01-19 21:28:47 +11:00
parent b26cd21f02
commit d095f83d8a

View file

@ -29,6 +29,7 @@ package mage;
import java.io.Serializable; import java.io.Serializable;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections;
import java.util.List; import java.util.List;
import java.util.Objects; import java.util.Objects;
@ -42,7 +43,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
public static final ObjectColor BLACK = new ObjectColor("B"); public static final ObjectColor BLACK = new ObjectColor("B");
public static final ObjectColor RED = new ObjectColor("R"); public static final ObjectColor RED = new ObjectColor("R");
public static final ObjectColor GREEN = new ObjectColor("G"); public static final ObjectColor GREEN = new ObjectColor("G");
public static final ObjectColor GOLD = new ObjectColor("O"); public static final ObjectColor GOLD = new ObjectColor("O");
private boolean white; private boolean white;
@ -50,7 +51,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
private boolean black; private boolean black;
private boolean red; private boolean red;
private boolean green; private boolean green;
private boolean gold; private boolean gold;
public ObjectColor() { public ObjectColor() {
@ -74,7 +75,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
case 'G': case 'G':
green = true; green = true;
break; break;
case 'O': case 'O':
gold = true; gold = true;
break; break;
@ -88,7 +89,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
black = color.black; black = color.black;
red = color.red; red = color.red;
green = color.green; green = color.green;
gold = color.gold; gold = color.gold;
} }
@ -106,13 +107,13 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
newColor.black = black || other.black; newColor.black = black || other.black;
newColor.red = red || other.red; newColor.red = red || other.red;
newColor.green = green || other.green; newColor.green = green || other.green;
newColor.gold = gold || other.gold; newColor.gold = gold || other.gold;
return newColor; return newColor;
} }
/** /**
* Returns a new color which contains the intersection of the colors of this * Returns a new color which contains the intersection of the colors of this
* ObjectColor and the other ObjectColor. * ObjectColor and the other ObjectColor.
* *
* @param other The other ObjectColor to intersect with * @param other The other ObjectColor to intersect with
@ -145,7 +146,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (red) { if (red) {
count++; count++;
} }
if (gold) { if (gold) {
count++; count++;
} }
@ -169,82 +170,54 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (this.isGreen()) { if (this.isGreen()) {
colors.add(ObjectColor.GREEN); colors.add(ObjectColor.GREEN);
} }
if (this.isGold()) { if (this.isGold()) {
colors.add(ObjectColor.GOLD); colors.add(ObjectColor.GOLD);
} }
return colors; return colors;
} }
private int getColorIndex(int current, int potentialNext, boolean wantMinimum) {
if (current == -1) {
return potentialNext;
}
if ((current < potentialNext) && wantMinimum) {
return current;
}
if ((current < potentialNext) && !wantMinimum) {
return potentialNext;
}
return current;
}
public List<ObjectColor> getTwoColorsInOrder() { public List<ObjectColor> getTwoColorsInOrder() {
List<ObjectColor> colors = new ArrayList<>(); List<ObjectColor> colors = new ArrayList<>();
int firstColor = -1; int firstColor = 5000;
int secondColor = -1; int secondColor = -1;
if (this.isWhite()) { if (this.isWhite()) {
firstColor = getColorIndex(firstColor, 1, true); firstColor = 1;
secondColor = getColorIndex(secondColor, 1, false); secondColor = 1;
} }
if (this.isBlue()) { if (this.isBlue()) {
firstColor = getColorIndex(firstColor, 2, true); firstColor = Math.min(firstColor, 2);
secondColor = getColorIndex(secondColor, 2, false); secondColor = Math.max(secondColor, 2);
} }
if (this.isBlack()) { if (this.isBlack()) {
firstColor = getColorIndex(firstColor, 3, true); firstColor = Math.min(firstColor, 3);
secondColor = getColorIndex(secondColor, 3, false); secondColor = Math.max(secondColor, 3);
} }
if (this.isRed()) { if (this.isRed()) {
firstColor = getColorIndex(firstColor, 4, true); firstColor = Math.min(firstColor, 4);
secondColor = getColorIndex(secondColor, 4, false); secondColor = Math.max(secondColor, 4);
} }
if (this.isGreen()) { if (this.isGreen()) {
firstColor = getColorIndex(firstColor, 5, true); firstColor = Math.min(firstColor, 5);
secondColor = getColorIndex(secondColor, 5, false); secondColor = Math.max(secondColor, 5);
} }
if (secondColor - firstColor <= 2) { if (this.isWhite()) {
if (this.isWhite()) { colors.add(ObjectColor.WHITE);
colors.add(ObjectColor.WHITE); }
} if (this.isBlue()) {
if (this.isBlue()) { colors.add(ObjectColor.BLUE);
colors.add(ObjectColor.BLUE); }
} if (this.isBlack()) {
if (this.isBlack()) { colors.add(ObjectColor.BLACK);
colors.add(ObjectColor.BLACK); }
} if (this.isRed()) {
if (this.isRed()) { colors.add(ObjectColor.RED);
colors.add(ObjectColor.RED); }
} if (this.isGreen()) {
if (this.isGreen()) { colors.add(ObjectColor.GREEN);
colors.add(ObjectColor.GREEN); }
} if (colors.size() >= 2 && secondColor - firstColor >= 3) {
} else if (secondColor - firstColor >= 3) { Collections.swap(colors, 0, 1);
if (this.isGreen()) {
colors.add(ObjectColor.GREEN);
}
if (this.isRed()) {
colors.add(ObjectColor.RED);
}
if (this.isBlack()) {
colors.add(ObjectColor.BLACK);
}
if (this.isBlue()) {
colors.add(ObjectColor.BLUE);
}
if (this.isWhite()) {
colors.add(ObjectColor.WHITE);
}
} }
if (this.isGold()) { if (this.isGold()) {
@ -259,7 +232,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
this.setGreen(color.isGreen()); this.setGreen(color.isGreen());
this.setRed(color.isRed()); this.setRed(color.isRed());
this.setWhite(color.isWhite()); this.setWhite(color.isWhite());
this.setGold(color.isGold()); this.setGold(color.isGold());
} }
@ -279,7 +252,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (color.isGreen()) { if (color.isGreen()) {
setGreen(true); setGreen(true);
} }
if (color.isGold()) { if (color.isGold()) {
setGold(true); setGold(true);
} }
@ -314,7 +287,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
|| gold)) { || gold)) {
return true; return true;
} }
return green return green
&& gold; && gold;
} }
@ -357,12 +330,11 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
public void setGreen(boolean green) { public void setGreen(boolean green) {
this.green = green; this.green = green;
} }
public boolean isGold() { public boolean isGold() {
return gold; return gold;
} }
public void setGold(boolean gold) { public void setGold(boolean gold) {
this.gold = gold; this.gold = gold;
} }
@ -385,7 +357,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (green) { if (green) {
sb.append('G'); sb.append('G');
} }
if (gold) { if (gold) {
sb.append('O'); sb.append('O');
} }
@ -411,7 +383,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (green) { if (green) {
return "green"; return "green";
} }
if (gold) { if (gold) {
return "gold"; return "gold";
} }
@ -454,7 +426,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
hash = 23 * hash + (this.black ? 1 : 0); hash = 23 * hash + (this.black ? 1 : 0);
hash = 23 * hash + (this.red ? 1 : 0); hash = 23 * hash + (this.red ? 1 : 0);
hash = 23 * hash + (this.green ? 1 : 0); hash = 23 * hash + (this.green ? 1 : 0);
hash = 23 * hash + (this.gold ? 1 : 0); hash = 23 * hash + (this.gold ? 1 : 0);
return hash; return hash;
} }
@ -478,7 +450,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (color.green && this.green) { if (color.green && this.green) {
return true; return true;
} }
if (color.gold && this.gold) { if (color.gold && this.gold) {
return true; return true;
} }
@ -517,7 +489,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
o1 = 4; o1 = 4;
} else if (this.isWhite()) { } else if (this.isWhite()) {
o1 = 5; o1 = 5;
} else if (this.isGold()) { } else if (this.isGold()) {
o1 = 6; o1 = 6;
} }
@ -535,7 +507,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
o2 = 4; o2 = 4;
} else if (o.isWhite()) { } else if (o.isWhite()) {
o2 = 5; o2 = 5;
} else if (o.isGold()) { } else if (o.isGold()) {
o2 = 6; o2 = 6;
} }
@ -564,7 +536,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (isWhite()) { if (isWhite()) {
return ColoredManaSymbol.W; return ColoredManaSymbol.W;
} }
if (isGold()) { if (isGold()) {
return ColoredManaSymbol.O; return ColoredManaSymbol.O;
} }
@ -578,7 +550,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
colors.add(ObjectColor.BLACK); colors.add(ObjectColor.BLACK);
colors.add(ObjectColor.RED); colors.add(ObjectColor.RED);
colors.add(ObjectColor.GREEN); colors.add(ObjectColor.GREEN);
colors.add(ObjectColor.GOLD); colors.add(ObjectColor.GOLD);
return colors; return colors;
} }