mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Some minor changes.
This commit is contained in:
parent
905fd65ebd
commit
bdaa78e144
4 changed files with 121 additions and 120 deletions
|
@ -13,7 +13,6 @@ import mage.cards.repository.ExpansionRepository;
|
|||
import mage.constants.SetType;
|
||||
import mage.deck.Standard;
|
||||
|
||||
|
||||
/**
|
||||
* Utility class for constructed formats (expansions and other editions).
|
||||
*
|
||||
|
@ -21,8 +20,6 @@ import mage.deck.Standard;
|
|||
*/
|
||||
public class ConstructedFormats {
|
||||
|
||||
private static final GregorianCalendar calendar = new GregorianCalendar();
|
||||
|
||||
public static final String ALL = "- All Sets";
|
||||
public static final String STANDARD = "- Standard";
|
||||
public static final String EXTENDED = "- Extended";
|
||||
|
@ -67,32 +64,32 @@ public class ConstructedFormats {
|
|||
if (set.getType().equals(SetType.CORE) || set.getType().equals(SetType.EXPANSION) || set.getType().equals(SetType.SUPPLEMENTAL_STANDARD_LEGAL)) {
|
||||
if (STANDARD_CARDS.getSetCodes().contains(set.getCode())) {
|
||||
if (underlyingSetCodesPerFormat.get(STANDARD) == null) {
|
||||
underlyingSetCodesPerFormat.put(STANDARD, new ArrayList<String>());
|
||||
underlyingSetCodesPerFormat.put(STANDARD, new ArrayList<>());
|
||||
}
|
||||
underlyingSetCodesPerFormat.get(STANDARD).add(set.getCode());
|
||||
}
|
||||
if (set.getReleaseDate().after(extendedDate)) {
|
||||
if (underlyingSetCodesPerFormat.get(EXTENDED) == null) {
|
||||
underlyingSetCodesPerFormat.put(EXTENDED, new ArrayList<String>());
|
||||
underlyingSetCodesPerFormat.put(EXTENDED, new ArrayList<>());
|
||||
}
|
||||
underlyingSetCodesPerFormat.get(EXTENDED).add(set.getCode());
|
||||
}
|
||||
if (set.getReleaseDate().after(frontierDate)) {
|
||||
if (underlyingSetCodesPerFormat.get(FRONTIER) == null) {
|
||||
underlyingSetCodesPerFormat.put(FRONTIER, new ArrayList<String>());
|
||||
underlyingSetCodesPerFormat.put(FRONTIER, new ArrayList<>());
|
||||
}
|
||||
underlyingSetCodesPerFormat.get(FRONTIER).add(set.getCode());
|
||||
}
|
||||
if (set.getReleaseDate().after(modernDate)) {
|
||||
if (underlyingSetCodesPerFormat.get(MODERN) == null) {
|
||||
underlyingSetCodesPerFormat.put(MODERN, new ArrayList<String>());
|
||||
underlyingSetCodesPerFormat.put(MODERN, new ArrayList<>());
|
||||
}
|
||||
underlyingSetCodesPerFormat.get(MODERN).add(set.getCode());
|
||||
}
|
||||
}
|
||||
|
||||
if (underlyingSetCodesPerFormat.get(set.getName()) == null) {
|
||||
underlyingSetCodesPerFormat.put(set.getName(), new ArrayList<String>());
|
||||
underlyingSetCodesPerFormat.put(set.getName(), new ArrayList<>());
|
||||
}
|
||||
|
||||
underlyingSetCodesPerFormat.get(set.getName()).add(set.getCode());
|
||||
|
@ -100,7 +97,7 @@ public class ConstructedFormats {
|
|||
if (set.getType().equals(SetType.EXPANSION) && set.getBlockName() != null) {
|
||||
String blockDisplayName = getBlockDisplayName(set.getBlockName());
|
||||
if (underlyingSetCodesPerFormat.get(blockDisplayName) == null) {
|
||||
underlyingSetCodesPerFormat.put(blockDisplayName, new ArrayList<String>());
|
||||
underlyingSetCodesPerFormat.put(blockDisplayName, new ArrayList<>());
|
||||
}
|
||||
|
||||
underlyingSetCodesPerFormat.get(blockDisplayName).add(set.getCode());
|
||||
|
@ -136,8 +133,8 @@ public class ConstructedFormats {
|
|||
|
||||
if (expansionInfo1.getType().compareTo(expansionInfo2.getType()) == 0) {
|
||||
SetType setType = expansionInfo1.getType();
|
||||
if(setType.equals(SetType.EXPANSION)) {
|
||||
|
||||
switch (setType) {
|
||||
case EXPANSION:
|
||||
if (expansionInfo1.getBlockName() == null) {
|
||||
if (expansionInfo2.getBlockName() == null) {
|
||||
return expansionInfo2.getReleaseDate().compareTo(expansionInfo1.getReleaseDate());
|
||||
|
@ -168,8 +165,7 @@ public class ConstructedFormats {
|
|||
}
|
||||
|
||||
return expansionInfo2.getReleaseDate().compareTo(expansionInfo1.getReleaseDate());
|
||||
|
||||
} else if(setType.equals(SetType.SUPPLEMENTAL)) {
|
||||
case SUPPLEMENTAL:
|
||||
if (expansionInfo1.getBlockName() == null) {
|
||||
if (expansionInfo2.getBlockName() == null) {
|
||||
return expansionInfo2.getReleaseDate().compareTo(expansionInfo1.getReleaseDate());
|
||||
|
@ -204,9 +200,7 @@ public class ConstructedFormats {
|
|||
ExpansionInfo blockInfo2 = expansionInfo.get(expansionInfo2.getBlockName());
|
||||
|
||||
return blockInfo2.getReleaseDate().compareTo(blockInfo1.getReleaseDate());
|
||||
|
||||
|
||||
} else {
|
||||
default:
|
||||
return expansionInfo2.getReleaseDate().compareTo(expansionInfo1.getReleaseDate());
|
||||
}
|
||||
}
|
||||
|
@ -230,7 +224,6 @@ public class ConstructedFormats {
|
|||
return builder.toString();
|
||||
}
|
||||
|
||||
|
||||
private static final Date extendedDate = new GregorianCalendar(2009, 8, 20).getTime();
|
||||
private static final Date frontierDate = new GregorianCalendar(2014, 7, 17).getTime();
|
||||
private static final Date modernDate = new GregorianCalendar(2003, 7, 20).getTime();
|
||||
|
|
|
@ -142,6 +142,7 @@
|
|||
<deckType name="Block Constructed - Shards of Alara" jar="mage-deck-constructed.jar" className="mage.deck.ShardsOfAlaraBlock"/>
|
||||
<deckType name="Block Constructed - Theros" jar="mage-deck-constructed.jar" className="mage.deck.TherosBlock"/>
|
||||
<deckType name="Block Constructed - Zendikar" jar="mage-deck-constructed.jar" className="mage.deck.ZendikarBlock"/>
|
||||
<deckType name="Block Constructed Custom - Star Wars" jar="mage-deck-constructed.jar" className="mage.deck.StarWarsBlock"/>
|
||||
<deckType name="Limited" jar="mage-deck-limited.jar" className="mage.deck.Limited"/>
|
||||
</deckTypes>
|
||||
</config>
|
||||
|
|
|
@ -139,6 +139,7 @@
|
|||
<deckType name="Block Constructed - Shards of Alara" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.ShardsOfAlaraBlock"/>
|
||||
<deckType name="Block Constructed - Theros" jar="mage-deck-constructed.jar" className="mage.deck.TherosBlock"/>
|
||||
<deckType name="Block Constructed - Zendikar" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.ZendikarBlock"/>
|
||||
<deckType name="Block Constructed Construced - Star Wars" jar="mage-deck-constructed-${project.version}.jar" className="mage.deck.StarWarsBlock"/>
|
||||
<deckType name="Limited" jar="mage-deck-limited-${project.version}.jar" className="mage.deck.Limited"/>
|
||||
</deckTypes>
|
||||
</config>
|
||||
|
|
|
@ -30,7 +30,6 @@ package mage.cards.decks;
|
|||
import java.util.*;
|
||||
import java.util.Map.Entry;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.Sets;
|
||||
import mage.cards.repository.CardInfo;
|
||||
import mage.cards.repository.CardRepository;
|
||||
import mage.constants.Rarity;
|
||||
|
@ -147,6 +146,7 @@ public class Constructed extends DeckValidator {
|
|||
|
||||
/**
|
||||
* Checks if the given card is legal in any of the given rarities
|
||||
*
|
||||
* @param card - the card to check
|
||||
* @return Whether the card was printed at any of the given rarities.
|
||||
*/
|
||||
|
@ -168,16 +168,22 @@ public class Constructed extends DeckValidator {
|
|||
|
||||
/**
|
||||
* Checks if a given set is legal in this format.
|
||||
*
|
||||
* @param code - the set code to check
|
||||
* @return Whether the set is legal in this format.
|
||||
*/
|
||||
protected boolean isSetAllowed(String code) {
|
||||
if(Sets.isCustomSet(code)) return allowAllCustomSets || allowedCustomSetCodes.contains(code);
|
||||
else return setCodes.isEmpty() || setCodes.contains(code);
|
||||
// To check here for custom set makes no sens IMHO because the format does define what's aloowed and what not
|
||||
// if (Sets.isCustomSet(code)) {
|
||||
// return allowAllCustomSets || allowedCustomSetCodes.contains(code);
|
||||
// } else {
|
||||
return setCodes.isEmpty() || setCodes.contains(code);
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if the given card is legal in any of the given sets
|
||||
*
|
||||
* @param card - the card to check
|
||||
* @return Whether the card was printed in any of this format's sets.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue