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.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
@ -176,44 +177,30 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
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() {
List<ObjectColor> colors = new ArrayList<>();
int firstColor = -1;
int firstColor = 5000;
int secondColor = -1;
if (this.isWhite()) {
firstColor = getColorIndex(firstColor, 1, true);
secondColor = getColorIndex(secondColor, 1, false);
firstColor = 1;
secondColor = 1;
}
if (this.isBlue()) {
firstColor = getColorIndex(firstColor, 2, true);
secondColor = getColorIndex(secondColor, 2, false);
firstColor = Math.min(firstColor, 2);
secondColor = Math.max(secondColor, 2);
}
if (this.isBlack()) {
firstColor = getColorIndex(firstColor, 3, true);
secondColor = getColorIndex(secondColor, 3, false);
firstColor = Math.min(firstColor, 3);
secondColor = Math.max(secondColor, 3);
}
if (this.isRed()) {
firstColor = getColorIndex(firstColor, 4, true);
secondColor = getColorIndex(secondColor, 4, false);
firstColor = Math.min(firstColor, 4);
secondColor = Math.max(secondColor, 4);
}
if (this.isGreen()) {
firstColor = getColorIndex(firstColor, 5, true);
secondColor = getColorIndex(secondColor, 5, false);
firstColor = Math.min(firstColor, 5);
secondColor = Math.max(secondColor, 5);
}
if (secondColor - firstColor <= 2) {
if (this.isWhite()) {
colors.add(ObjectColor.WHITE);
}
@ -229,22 +216,8 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
if (this.isGreen()) {
colors.add(ObjectColor.GREEN);
}
} else if (secondColor - firstColor >= 3) {
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 (colors.size() >= 2 && secondColor - firstColor >= 3) {
Collections.swap(colors, 0, 1);
}
if (this.isGold()) {
@ -358,7 +331,6 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
this.green = green;
}
public boolean isGold() {
return gold;
}