cardgames
v1.0.11
Published
Card deck library using TypeScript
Downloads
4
Readme
Deck of Cards library using TypeScript
This is a very simple deck-of-cards library built using TypeScript. This was built for personal usage, and mostly to play around with TypeScript. Feel free to clone and to star the repo, if you feel like it.
Project Structure
.
├── main.js # Example usage script
├── src # The source code
│ ├── Card.ts
│ ├── Deck.ts
│ └── misc.ts
├── tests # The unit-tests
│ ├── Card.test.js
│ └── Deck.test.js
├── build # TypeScript complilation output
│ ├── Card.js
│ ├── Deck.js
│ └── misc.js
├── jest.config.js
├── package.json
├── package-lock.json
├── tsconfig.json
└── README.md
The Library
This library consists of two main classes: Card
and DeckOfCards
.
Card
The Card class has three properties:
value
rank
suite
Usage example:
const card = new Card("A", "hearts") // Instantiate Card class
console.log(card) // Output: A ♥
Source:
export type Suite = "hearts" | "spades" | "diamonds" | "clubs";
export type Rank = "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "J" | "Q" | "K" | "A";
export class Card {
value: string;
constructor(public rank: Rank, public suite: Suite) {
this.rank = rank;
this.suite = suite;
this.value = `${rank} ${symbolUnicodes[this.suite]}`;
}
}
Deck
The DeckOfCards class has the following properties:
- deck - an array of Cards
- drawCard() - function that returns a card
- shuffleDeck() - function that shuffles the deck, in place
Usage example:
// Build the deck with 52 cards
const Deck = new DeckOfCards(40);
// Shuffle the deck
Deck.shuffleDeck();
// Draw some cards
for (let index = 1; index < 6; index++) {
let card = Deck.drawCard();
console.log(`Card ${index} - ${card.value}`);
}
Source:
export class DeckOfCards {
public deck: Card[] = [];
constructor(public numberOfCards: validNumberOfCards) {
this.numberOfCards = numberOfCards;
this.buildDeck();
}
buildDeck() {
const validRanks = this.numberOfCards == 40 ? validRanks40 : validRanks52;
validSuites.forEach(suite => {
validRanks.forEach(rank => {
this.deck.push(new Card(rank, suite));
})
});
}
drawCard() {
if (this.deck.length == 0) {
console.log("The Deck of Cards is empty. Can not draw card.")
return 0;
}
return this.deck.pop();
}
shuffleDeck(times = 1) {
for (var i=1; i <= times; i+=1) {
shuffleArray(this.deck);
}
}
}
Example Usage
➜ CardGames git:(master) ✗ npm run example
> [email protected] example /home/rafael/proj/CardGames
> node main.js
Running basic example
This is the deck after being built:
2 ♥ 3 ♥ 4 ♥ 5 ♥ 6 ♥ 7 ♥ J ♥ Q ♥ K ♥ A ♥ 2 ♠ 3 ♠ 4 ♠ 5 ♠ 6 ♠ 7 ♠ J ♠ Q ♠ K ♠ A ♠ 2 ♦ 3 ♦ 4 ♦ 5 ♦ 6 ♦ 7 ♦ J ♦ Q ♦ K ♦ A ♦ 2 ♣ 3 ♣ 4 ♣ 5 ♣ 6 ♣ 7 ♣ J ♣ Q ♣ K ♣ A ♣
Shuffling deck of cards
This is the deck after being shuffled:
4 ♣ A ♠ 4 ♦ 2 ♠ Q ♥ K ♣ 5 ♥ 6 ♠ 7 ♥ 6 ♥ J ♣ 3 ♥ 5 ♦ 2 ♦ Q ♦ 4 ♥ J ♥ 7 ♣ K ♦ 7 ♠ 7 ♦ 3 ♠ A ♦ A ♣ 2 ♣ 3 ♣ K ♥ 3 ♦ 5 ♣ 6 ♣ Q ♠ J ♦ J ♠ 2 ♥ 5 ♠ A ♥ Q ♣ 4 ♠ K ♠ 6 ♦
Drawing some cards...
Card 1 - 6 ♦
Card 2 - K ♠
Card 3 - 4 ♠
Card 4 - Q ♣
Card 5 - A ♥
Tests
Run all tests with
npm run test
Example output:
➜ CardGames git:(master) ✗ jest --verbose
PASS tests/Deck.test.js
DeckOfCards
✓ instantiates a deck of card with 40 or 52 cards (2ms)
✓ has a shuffle function (1ms)
✓ allows to draw cards from the deck
PASS tests/Card.test.js
Card
✓ instantiates an object with correct input
✓ has a property called value (1ms)
Test Suites: 2 passed, 2 total
Tests: 5 passed, 5 total
Snapshots: 0 total
Time: 1.377s