blob: d48dd59ae3dcaf30b9b2a3c13288fe6acc247ed9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
package eu.equalparts.cardbase.decks;
import eu.equalparts.cardbase.cards.Card;
public final class Statistics {
private Statistics() {}
public static double calculatePercentage(StandaloneDeck deck, String type) {
double allCardsByType = count(deck, type);
double allCards = count(deck);
return allCardsByType / allCards;
}
public static int count(StandaloneDeck deck, String type) {
int count = type.contains("Land") ? countBasicLands(deck) : 0;
for (Card card : deck.cards) {
if (card.type != null &&
card.type.contains(type)) {
// TODO sort this out
count += 1;
}
}
return count;
}
public static int count(StandaloneDeck deck) {
int totalCards = countBasicLands(deck);
for (Card card : deck.cards) {
// TODO sort this out
totalCards += 1;
}
return totalCards;
}
private static int countBasicLands(StandaloneDeck deck) {
return deck.plains +
deck.islands +
deck.swamps +
deck.mountains +
deck.forests;
}
public static int[] computeDistribution(StandaloneDeck deck, String type) {
int arraySize = 0;
for (Card card : deck.cards) {
if (card.type != null && card.type.contains(type))
if (card.cmc != null && card.cmc >= arraySize)
arraySize = card.cmc + 1;
}
int[] costs = new int[arraySize];
for (Card card : deck.cards) {
if (card.type != null && card.type.contains(type))
if (card.cmc != null)
// TODO sort this out
costs[card.cmc] += 1;
}
return costs;
}
public static int[] computeDistribution(StandaloneDeck deck) {
int arraySize = 0;
for (Card card : deck.cards) {
if (card.cmc != null && card.cmc >= arraySize)
arraySize = card.cmc + 1;
}
int[] costs = new int[arraySize];
for (Card card : deck.cards) {
if (card.cmc != null)
// TODO sort this out
costs[card.cmc] += 1;
}
return costs;
}
}
|