mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
from __future__ import annotations
|
|
|
|
import random
|
|
|
|
from .base import (
|
|
BASE_COLORS,
|
|
Action,
|
|
BuyCard,
|
|
GameState,
|
|
GemColor,
|
|
PlayerState,
|
|
ReserveCard,
|
|
Strategy,
|
|
TakeDifferent,
|
|
TakeDouble,
|
|
auto_discard_tokens,
|
|
)
|
|
|
|
|
|
class RandomBot(Strategy):
|
|
"""Dumb bot that follows rules but doesn't think."""
|
|
|
|
def __init__(self, name: str = "Bot") -> None:
|
|
super().__init__(name=name)
|
|
|
|
def choose_action(self, game: GameState, player: PlayerState) -> Action | None:
|
|
affordable: list[tuple[int, int]] = []
|
|
for tier, row in game.table_by_tier.items():
|
|
for idx, card in enumerate(row):
|
|
if player.can_afford(card):
|
|
affordable.append((tier, idx))
|
|
if affordable and random.random() < 0.5:
|
|
tier, idx = random.choice(affordable)
|
|
return BuyCard(tier=tier, index=idx)
|
|
|
|
if random.random() < 0.2:
|
|
tier = random.choice([1, 2, 3])
|
|
row = game.table_by_tier.get(tier, [])
|
|
if row:
|
|
idx = random.randrange(len(row))
|
|
return ReserveCard(tier=tier, index=idx, from_deck=False)
|
|
|
|
if random.random() < 0.5:
|
|
colors_for_double = [c for c in BASE_COLORS if game.bank[c] >= 4]
|
|
if colors_for_double:
|
|
return TakeDouble(color=random.choice(colors_for_double))
|
|
|
|
colors_for_diff = [c for c in BASE_COLORS if game.bank[c] > 0]
|
|
random.shuffle(colors_for_diff)
|
|
return TakeDifferent(colors=colors_for_diff[:3])
|
|
|
|
def choose_discard(
|
|
self,
|
|
game: GameState,
|
|
player: PlayerState,
|
|
excess: int,
|
|
) -> dict[GemColor, int]:
|
|
return auto_discard_tokens(player, excess)
|