Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

engine: Convert to typescript #33

Merged
merged 1 commit into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions backend/uno-game-engine/types.d.ts → backend/src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ type UNOCard = {
value: CardValue;
id: undefined;
};

type Player = {
id: string;
cards: UNOCard[];
};
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import { getShuffledCardDeck } from './deck';

const NUM_CARDS_PER_PLAYER = 7;

export class GameEngine {
cardDeck: UNOCard[];
thrownCards: UNOCard[];
players: Player[];
currentPlayerIndex: number;
lastThrownCard: UNOCard | null;
currentColor: number;
direction: number;
status: 'READY' | 'STARTED';

constructor() {
this.cardDeck = getShuffledCardDeck();
this.thrownCards = [];
Expand All @@ -18,12 +28,12 @@ export class GameEngine {
throw new Error('Not enough cards to distribute');
}

this.players = this.players.map((player) => {
this.players = this.players.map((player: Player) => {
player.cards = this.cardDeck.splice(0, NUM_CARDS_PER_PLAYER);
return player;
});
}
addPlayer(player) {
addPlayer(player: Player) {
this.players.push(player);
}
startGame() {
Expand All @@ -36,10 +46,10 @@ export class GameEngine {
this.currentPlayerIndex =
(this.currentPlayerIndex + this.direction) % this.players.length;
}
drawCardFromDeck(player) {
drawCardFromDeck(player: Player) {
//todo: Handle the case when the deck is empty and we have to move the thrown cards back to the deck
this.players
.find((p) => p.id === player.id)
.find((p: Player) => p.id === player.id)
.cards.push(this.cardDeck.pop());
}
}
Loading