File size: 12,489 Bytes
a7b6b46 | 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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | import { v4 as uuidv4 } from 'uuid';
import type {
CardId,
CardInstance,
Player,
GameState,
PlayerHand,
CARD_DATABASE,
PendingAction,
} from '../../../shared/types.js';
import { CARD_DATABASE as CardDB } from '../../../shared/types.js';
// Helper to shuffle array
function shuffleArray<T>(array: T[]): T[] {
const shuffled = [...array];
for (let i = shuffled.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]];
}
return shuffled;
}
// Helper to create card instances
function createCardInstances(cardId: CardId, count: number): CardInstance[] {
return Array.from({ length: count }, () => ({
instanceId: uuidv4(),
cardId,
}));
}
export class GameEngine {
private deck: CardInstance[] = [];
private discardPile: CardInstance[] = [];
private playerHands: Map<string, CardInstance[]> = new Map();
private players: Player[] = [];
private currentPlayerIndex: number = 0;
private turnsRemaining: number = 1;
private phase: 'waiting' | 'playing' | 'game_over' = 'waiting';
private winnerId: string | null = null;
// Pending action for King Ra reactions
public pendingAction: PendingAction | null = null;
// Callbacks for socket events
public onStateChange?: (state: GameState) => void;
public onHandChange?: (playerId: string, hand: CardInstance[]) => void;
public onNotification?: (playerId: string | null, message: string, type: 'info' | 'warning' | 'success' | 'danger') => void;
constructor(players: Player[]) {
this.players = players.map(p => ({ ...p, isAlive: true, cardCount: 0 }));
}
// Initialize the game
initializeGame(): void {
const playerCount = this.players.length;
// Create the deck based on player count
this.deck = [];
// Add N copies of each normal card
const normalCards: CardId[] = [
'sharp_eye', 'wait_a_sec', 'me_or_you', 'spellbound',
'criminal_mummy', 'shuffle_it', 'king_ra_says_no', 'safe_travels'
];
for (const cardId of normalCards) {
this.deck.push(...createCardInstances(cardId, playerCount));
}
// Add N copies of each half card
const halfCards: CardId[] = [
'give_and_take', 'all_or_nothing', 'flip_the_table', 'this_is_on_you'
];
for (const cardId of halfCards) {
this.deck.push(...createCardInstances(cardId, playerCount));
}
// Add Take a Lap cards: N+1 total (N distributed, 1 in deck)
const defuseCards = createCardInstances('take_a_lap', playerCount + 1);
// Add Mummy cards: N-1
const mummyCards = createCardInstances('mummified', playerCount - 1);
// Shuffle deck (without defuse and mummy for now)
this.deck = shuffleArray(this.deck);
// Distribute starting hands
for (const player of this.players) {
const hand: CardInstance[] = [];
// Give 1 defuse card
hand.push(defuseCards.pop()!);
// Give 4 random cards from deck (non-mummy, non-defuse)
for (let i = 0; i < 4 && this.deck.length > 0; i++) {
hand.push(this.deck.pop()!);
}
this.playerHands.set(player.id, shuffleArray(hand));
player.cardCount = hand.length;
}
// Add remaining defuse card to deck
if (defuseCards.length > 0) {
this.deck.push(...defuseCards);
}
// Add mummy cards to deck
this.deck.push(...mummyCards);
// Final shuffle
this.deck = shuffleArray(this.deck);
// Start the game
this.phase = 'playing';
this.currentPlayerIndex = 0;
this.turnsRemaining = 1;
}
// Get current game state (public info only)
getGameState(): GameState {
return {
phase: this.phase,
players: this.players.map(p => ({
...p,
cardCount: this.playerHands.get(p.id)?.length ?? 0,
})),
currentPlayerIndex: this.currentPlayerIndex,
turnsRemaining: this.turnsRemaining,
deckCount: this.deck.length,
discardPile: this.discardPile.map(c => c.cardId),
winnerId: this.winnerId,
};
}
// Get a player's hand
getPlayerHand(playerId: string): CardInstance[] {
return this.playerHands.get(playerId) ?? [];
}
// Get current player
getCurrentPlayer(): Player | null {
return this.players[this.currentPlayerIndex] ?? null;
}
// Check if it's a player's turn
isPlayerTurn(playerId: string): boolean {
const current = this.getCurrentPlayer();
return current?.id === playerId && this.phase === 'playing';
}
// Check if player has card
hasCard(playerId: string, cardId: CardId): boolean {
const hand = this.playerHands.get(playerId);
return hand?.some(c => c.cardId === cardId) ?? false;
}
// Count cards of type in hand
countCards(playerId: string, cardId: CardId): number {
const hand = this.playerHands.get(playerId);
return hand?.filter(c => c.cardId === cardId).length ?? 0;
}
// Find card instance in hand
findCardInstance(playerId: string, instanceId: string): CardInstance | null {
const hand = this.playerHands.get(playerId);
return hand?.find(c => c.instanceId === instanceId) ?? null;
}
// Remove card from hand
removeCardFromHand(playerId: string, instanceId: string): CardInstance | null {
const hand = this.playerHands.get(playerId);
if (!hand) return null;
const index = hand.findIndex(c => c.instanceId === instanceId);
if (index === -1) return null;
const [card] = hand.splice(index, 1);
this.updatePlayerCardCount(playerId);
return card;
}
// Add card to hand
addCardToHand(playerId: string, card: CardInstance): void {
const hand = this.playerHands.get(playerId);
if (hand) {
hand.push(card);
this.updatePlayerCardCount(playerId);
}
}
// Update player card count
private updatePlayerCardCount(playerId: string): void {
const player = this.players.find(p => p.id === playerId);
if (player) {
player.cardCount = this.playerHands.get(playerId)?.length ?? 0;
}
}
// Discard card
discardCard(card: CardInstance): void {
this.discardPile.push(card);
}
// Draw top card from deck
drawTopCard(): CardInstance | null {
return this.deck.pop() ?? null;
}
// Peek at top N cards
peekTopCards(count: number): CardInstance[] {
const startIndex = Math.max(0, this.deck.length - count);
return this.deck.slice(startIndex).reverse(); // Top card first
}
// Insert card at position in deck (0 = top)
insertCardInDeck(card: CardInstance, position: number): void {
const actualPosition = this.deck.length - position;
this.deck.splice(Math.max(0, actualPosition), 0, card);
}
// Rearrange top N cards
rearrangeTopCards(newOrder: string[]): void {
const count = newOrder.length;
const topCards = this.deck.splice(-count);
// Sort by new order
const orderedCards = newOrder.map(instanceId =>
topCards.find(c => c.instanceId === instanceId)!
).filter(Boolean);
// Put back in reverse (so first in array is on top)
this.deck.push(...orderedCards.reverse());
}
// Shuffle deck
shuffleDeck(): void {
this.deck = shuffleArray(this.deck);
}
// Get deck size
getDeckSize(): number {
return this.deck.length;
}
// End current turn
endTurn(skipDraw: boolean = false): void {
this.turnsRemaining--;
if (this.turnsRemaining <= 0) {
this.moveToNextPlayer();
}
}
// Move to next alive player
private moveToNextPlayer(): void {
const alivePlayers = this.players.filter(p => p.isAlive);
if (alivePlayers.length <= 1) {
this.endGame(alivePlayers[0]?.id ?? null);
return;
}
// Find next alive player
let nextIndex = (this.currentPlayerIndex + 1) % this.players.length;
while (!this.players[nextIndex].isAlive) {
nextIndex = (nextIndex + 1) % this.players.length;
}
this.currentPlayerIndex = nextIndex;
this.turnsRemaining = 1;
}
// Set turns remaining (for Safe Travels)
setNextPlayerTurns(turns: number): void {
// Find next player
const alivePlayers = this.players.filter(p => p.isAlive);
if (alivePlayers.length <= 1) return;
let nextIndex = (this.currentPlayerIndex + 1) % this.players.length;
while (!this.players[nextIndex].isAlive) {
nextIndex = (nextIndex + 1) % this.players.length;
}
this.currentPlayerIndex = nextIndex;
this.turnsRemaining = turns;
}
// Eliminate player
eliminatePlayer(playerId: string): void {
const player = this.players.find(p => p.id === playerId);
if (!player) return;
player.isAlive = false;
// Discard their hand
const hand = this.playerHands.get(playerId) ?? [];
for (const card of hand) {
this.discardCard(card);
}
this.playerHands.set(playerId, []);
player.cardCount = 0;
// Check win condition
const alivePlayers = this.players.filter(p => p.isAlive);
if (alivePlayers.length === 1) {
this.endGame(alivePlayers[0].id);
} else if (this.getCurrentPlayer()?.id === playerId) {
// If eliminated player was current, move to next
this.moveToNextPlayer();
}
}
// End game
private endGame(winnerId: string | null): void {
this.phase = 'game_over';
this.winnerId = winnerId;
}
// Check if player can use Take a Lap (defuse)
canDefuse(playerId: string): boolean {
return this.hasCard(playerId, 'take_a_lap');
}
// Use defuse card
useDefuse(playerId: string): CardInstance | null {
const hand = this.playerHands.get(playerId);
if (!hand) return null;
const defuseIndex = hand.findIndex(c => c.cardId === 'take_a_lap');
if (defuseIndex === -1) return null;
const [defuseCard] = hand.splice(defuseIndex, 1);
this.discardCard(defuseCard);
this.updatePlayerCardCount(playerId);
return defuseCard;
}
// Get alive players except one
getOtherAlivePlayers(excludeId: string): Player[] {
return this.players.filter(p => p.isAlive && p.id !== excludeId);
}
// Get player by ID
getPlayer(playerId: string): Player | null {
return this.players.find(p => p.id === playerId) ?? null;
}
// Find lowest value card in hand (excluding defuse and mummy)
getLowestValueCard(playerId: string): CardInstance | null {
const hand = this.playerHands.get(playerId);
if (!hand || hand.length === 0) return null;
const playableCards = hand.filter(c =>
c.cardId !== 'take_a_lap' && c.cardId !== 'mummified'
);
if (playableCards.length === 0) return null;
return playableCards.reduce((lowest, card) => {
const lowestValue = CardDB[lowest.cardId].value;
const cardValue = CardDB[card.cardId].value;
return cardValue < lowestValue ? card : lowest;
});
}
// Find highest value card in hand (excluding mummy)
getHighestValueCard(playerId: string): CardInstance | null {
const hand = this.playerHands.get(playerId);
if (!hand || hand.length === 0) return null;
const playableCards = hand.filter(c => c.cardId !== 'mummified');
if (playableCards.length === 0) return null;
return playableCards.reduce((highest, card) => {
const highestValue = CardDB[highest.cardId].value;
const cardValue = CardDB[card.cardId].value;
return cardValue > highestValue ? card : highest;
});
}
// Get random card from hand (for blind steal)
getRandomCard(playerId: string, position: number): CardInstance | null {
const hand = this.playerHands.get(playerId);
if (!hand || position < 0 || position >= hand.length) return null;
return hand[position];
}
// Rearrange player's hand
rearrangeHand(playerId: string, newOrder: string[]): void {
const hand = this.playerHands.get(playerId);
if (!hand) return;
const newHand = newOrder
.map(instanceId => hand.find(c => c.instanceId === instanceId))
.filter((c): c is CardInstance => c !== undefined);
this.playerHands.set(playerId, newHand);
}
// Check if game is over
isGameOver(): boolean {
return this.phase === 'game_over';
}
// Get players with King Ra card (excluding one player)
getPlayersWithKingRa(excludeId: string): string[] {
return this.players
.filter(p => p.isAlive && p.id !== excludeId && this.hasCard(p.id, 'king_ra_says_no'))
.map(p => p.id);
}
}
|