-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhelpers.js
164 lines (148 loc) · 3.79 KB
/
helpers.js
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
const gameCardProperties = ['quantity', 'color', 'shape', 'filling'];
export const isSameCard = (cardA, cardB) => {
for (let i = 0; i < gameCardProperties.length; i += 1) {
const property = gameCardProperties[i];
if (cardA[property] !== cardB[property]) {
return false;
}
}
return true;
};
export const checkSet = cards => {
if (cards.length !== 3) {
return false;
}
const result = {
quantity: false,
color: false,
shape: false,
filling: false,
};
['quantity', 'color', 'shape', 'filling'].forEach(property => {
if (cards[0][property] === cards[1][property] && cards[0][property] === cards[2][property]) {
result[property] = true;
}
if (
cards[0][property] !== cards[1][property] &&
cards[0][property] !== cards[2][property] &&
cards[1][property] !== cards[2][property]
) {
result[property] = true;
}
});
return result.quantity && result.color && result.shape && result.filling;
};
export const markSets = _cards => {
const cards = _cards;
let setCounter = 0;
const cardCount = cards.length;
if (cards.length < 3) {
return [];
}
// reset sets for every card
cards.forEach(card => {
card.sets = []; // eslint-disable-line no-param-reassign
});
let start = 0;
do {
let i = start + 1;
do {
let j = i + 1;
do {
const possibleSet = [cards[start], cards[i], cards[j]];
if (checkSet(possibleSet)) {
cards[start].sets.push(`set${setCounter}`);
cards[i].sets.push(`set${setCounter}`);
cards[j].sets.push(`set${setCounter}`);
setCounter += 1;
}
j += 1;
} while (j < cardCount);
i += 1;
} while (i < cardCount - 1);
start += 1;
} while (start + 2 < cardCount);
return cards;
};
export const getSetCount = cards => {
const uniqueSets = new Set();
cards.forEach(card => {
card.sets.forEach(set => uniqueSets.add(set));
});
return uniqueSets.size;
};
export const removeCard = (cards, removeMe) => cards.filter(el => !isSameCard(el, removeMe));
export const removeCards = (cards, cardsToRemove) => {
let returnCards = cards;
cardsToRemove.forEach(cardToRemove => {
returnCards = removeCard(returnCards, cardToRemove);
});
return returnCards;
};
export const findCard = (cards, card) => {
if (typeof card === 'string') {
for (let i = 0; i < cards.length; i += 1) {
if (cards[i].id === card) {
return cards[i];
}
}
}
for (let i = 0; i < cards.length; i += 1) {
if (isSameCard(cards[i], card)) {
return cards[i];
}
}
return false;
};
/**
* Copy from https://bost.ocks.org/mike/shuffle/
*/
function shuffle(array) {
let m = array.length;
// While there remain elements to shuffle…
while (m) {
// Pick a remaining element…
const i = Math.floor(Math.random() * (m -= 1));
// And swap it with the current element.
const t = array[m];
array[m] = array[i]; // eslint-disable-line no-param-reassign
array[i] = t; // eslint-disable-line no-param-reassign
}
return array;
}
let cardId = 0;
export const generateCard = options => {
cardId += 1;
return {
id: `card${cardId}`,
selected: false,
sets: [],
...options,
};
};
export const generateDeck = (doShuffle = true) => {
const data = [];
let i = 0;
[1, 2, 3].forEach(quantity => {
['red', 'green', 'blue'].forEach(color => {
['oval', 'bar', 'skewed'].forEach(shape => {
['empty', 'striped', 'full'].forEach(filling => {
data.push(
generateCard({
id: `card${i}`,
quantity,
color,
shape,
filling,
}),
);
i += 1;
});
});
});
});
if (doShuffle) {
shuffle(data);
}
return data;
};