A 4-player terminal card game
Project description
Belote – 4-Player Terminal Card Game
Complete implementation of the French card game Belote for the terminal, with a full-screen green felt table and full card graphics at compass positions (N/W/E/S).
What's new in 3.4.0
- BelAtro joker correctness —
BidMadeEventno longer double-fireson_bidjoker handlers on coinche paths. Pre-3.4.0 the player-coinche, AI-partner-coinche,auto_coincheboss, andstart_coincheddeck-mod paths all re-emitted the same bid event a second time with the resolvedcoinche_level, so on_bid jokers (Le Passeur today, anything new tomorrow) were silently invoked twice for the same bid. Fixed via are_emit: boolfield on the event; refreshes updatejoker_state["contract"]but skip joker firing. - Endless mode honours its prompt — Accepting "Continue into Endless Mode? (Ante 9+ scales ×2.2)" used to leave the player at Ante 8 Boss Blind for one more un-scaled round before the ×2.2 kicked in.
enter_endless()now advances into the first scaled cycle (offset=1, blind_index=0) immediately, so the very next round is the scaled Small Blind as advertised. - Classic mode tie-breaker actually plays — When both teams ended a round tied at exactly the target score, the classic loop unconditionally forced GAME_OVER, overriding
apply_round_score's deliberatephase=DEALfor tie-breaker rounds. The redundant re-check is gone; the scoring layer is the single source of truth for game-over phase. - Terminal raw-mode no longer leaks on SSH drop —
_UnixKeyReader.restore()now wrapstermios.tcsetattrincontextlib.suppress(termios.error, OSError)and marks the reader restored regardless. A dropped SSH session previously left the parent shell in no-echo mode. - Shop reroll OOB fix — Shop selection index after reroll is now correctly clamped to
len(inventory) - 1instead oflen(inventory), preventing an out-of-range access on the next render. - HUD: joker pip strip + synergy tooltip + polished trust bar — Top-row 5-slot strip shows your jokers as compact pips with edition tint (Foil cyan / Holo magenta / Polychrome pink-violet / Negative reverse-video); slots in an active synergy pair gain a
*marker, and a one-line tooltip below the score line describes the synergy. The trust bar gains a four-tier colour ramp (cramoisi/orange/gold/emeraude) and a leading tier glyph (✗ ♡ ♥ ♦ ★) — Loyal/Mécène glyphs are bolded so the top tiers pop. - Audit reconciliation — A fresh three-agent audit pass surfaced ~80 candidate findings; verification rejected ~95% as false positives or by-design patterns. The seven survivors are the fixes above; the rejected claims are catalogued in
CHANGELOG.mdso they aren't re-investigated. - Test coverage — 551 tests (up from 549). Strict gates still clean: pytest 551/551, mypy 0 errors (76 files), ruff 0 violations.
What's new in 3.3.4
- Portability fix — Removed all terminal-bell / sound code, which was triggering SIGSYS ("Bad system call") on Alpine 23 (musl libc) the moment the first trick completed in classic Belote mode. BelAtro mode and every glibc-based distro (Kubuntu / Lubuntu 24.10 / 25.10) were unaffected, but rather than guard the BEL writes behind a libc check, the entire sound subsystem is gone —
play_sound,AudioManager/AUDIO,is_muted/toggle_mute, the[M]mute key, and the help-screen mute line. Classic Belote and BelAtro now share the same "no bells" baseline. - Test coverage — Still 549 tests. Strict gates clean: pytest 549/549, mypy 0 errors, ruff 0 violations.
What's new in 3.3.3
- Determinism — Boss assignment in BelAtro mode now draws from the run's seeded RNG instead of the module-level
random. This was the last unseeded RNG site in the round flow (shop and tarots were converted in 3.2.0, AI in 3.3.1, replay analysis in 3.3.2). Same seed now reproduces the same boss on the boss blind. - UI — Hands sort by the trump-rank ladder under Tout Atout (Jack first, then 9 / A / 10 / K / Q / 8 / 7). Pre-3.3.3 the predicate
c.suit == trumpwas always false under TA because Card.suit is neverSuit.TOUT_ATOUT, so the South hand displayed in the non-trump order whenever the player bid TA. - Tarot — Le Jugement now correctly grants only Common jokers as advertised. Pre-3.3.3 the code drew from the full unlocked pool, so late-run players with Rare/Legendary unlocks could roll out-of-rarity jokers off this tarot.
- Test moat — Three new invariant test suites added: scoring-conservation property (
table_taker + table_defender == 162 / 258 / 130for normal / Tout Atout / Sans Atout), seeded-round replay determinism (same seed → same card sequence → same final state), and HUD synergy-badge negative test (solo half of a pair must not fire the badge). These would have caught most of the 3.3.x bug cycle from below. - Audit reconciliation — A fresh three-agent codebase pass surfaced ~50 candidate findings; the three above held up under verification and the rest are catalogued in
CHANGELOG.mdso they aren't re-investigated. - Test coverage — 549 tests (up from 537). Strict gates still clean: pytest 549/549, mypy 0 errors (76 files), ruff 0 violations.
What's new in 3.3.1
- Scoring correctness under bosses — La Rupture (
no_consecutive_team_wins) used to be applied to the live HUD but silently ignored byscore_round, so the running total and final score diverged and impossible capots could be reported. L'Anarchie (dynamic trump) rotatedstate.trumpmid-round, after which scoring'sbelote_holders.get(trump)lookup missed any Belote announced on the original trump and silently zeroed the 20/40 bonus. Both are fixed: a newcompute_trick_winnershelper is the single source of truth for La Rupture-aware winner resolution, and a newbelote_announcer: Seatfield captures the announcing seat at declaration time so the rotated trump no longer matters. - Boss interactions — Le Zéro Final (
no_dix_de_der) is now honored by the chute branch and by La Compétition's per-player tally (both used to unconditionally add +10 de der). La Compétition'sban_clubscheck now matches the main scoring path (anyrather thanlead-only). - Determinism —
AIPlayernow accepts and threads a seededRandomfrom the round driver. Pre-3.3.1 it constructed an unseededRandom()regardless of the run seed, breaking ghost-run reproducibility and replay determinism. Partner'sshould_coinche(Le Flambeur) was also using the globalrandommodule; now uses the driver's seeded RNG and is actually wired into the coinche flow (it had no production caller before). - AI memory across undo — Hard AI's void inference is no longer stuck with stale voids after a mid-round undo:
update_memorydetects state regression and rebuilds inferences from the live tricks. - Hard AI under Sans Atout — Used to deterministically return
legal[0]; now falls back to easy (random) like medium, removing the worst-case under SA. - Audit fixes —
ban_clubsHUD/final divergence (was real); per-round stats now flush to disk (achievement unlocks no longer lost on crash);fuse_jokersnow carries over edition (FOIL/HOLO/POLY) and corruption;assertinmodifier_patchreplaced withraise ValueError(was strippable bypython -O); unlock notifications routed through the TUI banner instead of rawprint()(no more alt-screen scroll); ante themes (Café/Tournoi) wired into the live game loop (the Phase 3.1 module was previously test-only). - UI — Trust bar is three-tier (red ≤3, gold 4–6, green ≥7). Pre-3.3.1 the default trust of 5 rendered red, falsely signalling distrust at run start.
- Test coverage — 535 tests still passing. Strict gates clean: pytest 535/535, mypy 0 errors, ruff 0 violations.
What's new in 3.3.0
- BelAtro [H] history overlay — Pressing H during a BelAtro run now opens a populated, run-aware ledger: one row per blind with ante, blind label (Small/Big/Boss), target, boss name (when active), taker, contract, NS/EW trick split, BelAtro score, status (
WON/FAILED/CAPOT/SURVIVED), and money delta. Before 3.3, [H] always showed "No rounds completed yet." in BelAtro because the round driver never invokedapply_round_score— the classic-mode writer ofstate.score_history. The fix keeps a parallelBelAtroRun.historyledger and routes [H] to a new BelAtro renderer via a small override hook inbelote.ui.prompts. Classic Belote's [H] path is unchanged. - Test coverage — 535 tests (up from 528). Strict gates still clean: pytest 535/535, mypy 0 errors, ruff 0 violations.
What's new in 3.2.0
- Joker correctness — La Sentinelle and Le Dernier Mot both used to key on
Seat.SOUTHinstead of the NS team, so the joker silently no-op'd when North (the AI partner) held the trump Jack or won the last trick. Both now correctly fire on team membership. - Score floor — L'Égoïste's
add_chips = -event.card_pointsper partner-won trick could drive the running total negative and produce a negative final round score;ScoreAccumulator.get_totalnow clamps at 0 so the intermediate log can still show the deduction without the visible score going below zero. - Auto-coinche event parity — The NS-taker
auto_coincheboss path now re-emitsBidMadeEventwith the newcoinche_level, matching the EW-taker branch. Pre-3.2 jokers and HUD subscribed toon_bidsilently missed this code path. - Determinism — The shop and the three RNG-using tarots (
LeJugement,LaPretresse,LeFou) now all draw from the run's seeded_get_rng()instead of the module-levelrandom. Ghost-run replays are now reproducible across shop generations.LaPretresseadditionallysamples instead ofchoice-ing twice, so the two planets it grants are always distinct. - Registry / boss-field hygiene —
register_joker/planet/tarot/vouchernow assert against duplicate IDs (typo'd registrations used to silently overwrite the original).boss_fieldsinmodifier_patch.pyis now derived fromBossModifiers' dataclass fields, so adding a new flag no longer requires updating an out-of-band allowlist. - UI fix —
patch_trick_cardnow re-appliesrender's vertical-centering offset; on tall terminals (>40 rows) it used to draw single-card patches too high. - Audit reconciliation — This release consolidates the verified findings from two independent LLM code audits (Qwen 3.6 27B + Ring 1T). Both audits had load-bearing false positives — Qwen's two P0 "dead voucher / dead boss flag" claims were both wrong (the flags are consumed); Ring's "critical IllegalMoveError" only fires under test mocks. Eleven rejected claims are catalogued in the changelog so they aren't re-investigated.
- Test coverage — 528 tests (up from 525). Strict gates still clean: pytest 528/528, mypy 0 errors, ruff 0 violations.
What's new in 3.1.0
- Bug fixes — HUD running-total no longer drifts under multi-boss combos (
Les Clubs Bannis + Le Roi Mortstyle: pre-3.1.0 the rank-zero recompute silently overwrote theban_clubszeroing).Shop.buy_itemno longer charges money when consumable slots are full — the "Slots full — sell first" banner now fires before any spend. - TierceForge wired up — the voucher shipped in 3.0.0 with a working backend but no UI caller; the feature was unreachable. The shop now shows a "Forge ×N/3" tile when the voucher is owned, opens a numbered planet picker on Enter, and confirms the level-up via a banner.
- Performance —
score_roundandapply_round_scoreno longer re-walk the trick list (~16 fewertrick_winner_seatcalls per round). The per-eventcopy.deepcopyinScoreAccumulator.update_stateis gone (~20 deepcopies/round saved); replaced with a shallowdict(...)plus a scalar-only invariant test that locks the contract. Hard-AI's_score_card_playprecomputes hand suit counts and trump tallies once per turn instead of per candidate. - Cleanup — the
modifier_patchunderscore-prefix shim is gone (23 bossapply()methods rewritten to use unprefixed field names; thegetattr(state, "_X", False)anti-pattern is now locked against by a regression test).slots=Trueadded toStatistics,SessionStats,ScoreAccumulator. Bareexcept Exception:in key-press parsing narrowed;print → loggingin stats. - Test coverage — 525 tests (up from 510). Strict gates still clean: pytest 525/525, mypy 0 errors, ruff 0 violations.
What's new in 3.0.3
- Full-codebase audit — three-agent pass over the classic engine, BelAtro content wiring, and perf / code-quality hotspots (~7,100 LOC). Headline: engine is rule-correct against canonical French Belote; BelAtro content matrix is 93/93 wired (21 bosses, 8 planets, 36 jokers, 4 editions, 12 vouchers, 12 tarots). Prioritized findings list (1 P0 functional, 2 P0 perf, 5 P1, 7 P2) tracked for follow-up cuts; implementation landed in 3.1.0.
- Doc accuracy — README boss-count corrected (18 → 21; 3.0.0 added Le Sauvage / L'Iconoclaste / Le Mime), and two stale
(435 tests)references bumped to 510 to match the figure already present elsewhere in the file.
What's new in 3.0.2
- Replay analyzer + Ghost run wired up — both shipped in 3.0.0 as code modules but were never called from the running game. Now opt-in behind
BELOTE_REPLAY=1(post-round Hard-AI comparison) andBELOTE_GHOST=1(per-run JSON dump to~/.local/share/belote/ghosts/). See DEVELOPMENT.md › Optional Runtime Flags. - Performance —
score_round()now caches per-trick winners once instead of recomputing them in each boss-modifier helper (2-3× walks → 1× walk per round).register_all_items()is now idempotent so test setup no longer re-walks every items module perBelAtroRun. Bidding's special-bid path (TA / SA) hoists_suit_lengthsout of the per-difficulty branches. - Defensive pin — every entry in
ALL_BOSS_MODIFIERSis now asserted to actually toggle aBossModifiersfield via.flags(). Catches typo'dstate.patch("_misspelled", True)keys at test time rather than letting the boss silently no-op. - Test coverage — 525 tests (up from 509).
What's new in 3.0.1
- Bug fixes —
play_card()running total now honoursaces_zero/jacks_zero(Le Sauvage / L'Iconoclaste); the screen-reader trick-winner pts are now boss-aware; the HUD synergy registry no longer references nonexistent joker IDs; the AI void-cache key is now reset across rounds. - Test coverage — 509 tests (up from 489): HOLO/POLYCHROME editions, multi-boss composition (
separate_scoring × zero-flag), a11y boss-aware pts, synergy registry self-check.
What's new in 3.0.0
- Endless mode — beat Ante 8 in BelAtro and the run offers a continuation: targets scale ×2.2 per ante and a furthest-ante leaderboard tracks how deep you go.
- Joker editions — Foil (+50 chips), Holo (+10 mult), Polychrome (×1.5 mult), Negative (extra slot) randomly stamp shop jokers.
- Three new boss blinds — Le Sauvage (Aces = 0), L'Iconoclaste (Jacks = 0, even trump-J), Le Mime (Declarations = 0).
- Achievements — six classic-mode milestones tracked across sessions.
- Colorblind palette + screen-reader hints (
BELOTE_A11Y=1) for accessibility. - Replay analyzer — module added (post-round Hard-AI comparison). User-facing wiring landed in 3.0.2 behind
BELOTE_REPLAY=1. - Ghost run recording + run summary log — modules added (serialize a run / append per-run JSON). Run-summary fires automatically; ghost-run user-facing wiring landed in 3.0.2 behind
BELOTE_GHOST=1. - Bug fixes — Capot under Sans Atout / Tout Atout now uses the correct base (220 / 348, not 252); The Sun and Libra planets actually do something now; AI void inference no longer mis-flags voids under Le Républicain wild 7/8.
BelAtro Expansion
BelAtro is a major roguelite expansion inspired by Balatro. Play through 8 Antes of escalating difficulty, build a deck of powerful Jokers, and use Tarot cards and Planets to break the game!
BelAtro is now fully integrated into the main menu! Just launch belote and select it from the top of the list.
BelAtro Quick Start
# Play using the integrated launcher (recommended)
belote
# Or play the new Roguelite mode directly
belatro
Starting Decks (All Fully Implemented)
| Deck | Special Rule |
|---|---|
| Le Classique | Standard 32-card baseline |
| Le Républicain | 7s & 8s are wild — play them on any trick. +5 chips per 7/8 your team captures |
| L'Aristocrate | All four Aces start Gold Sealed (+cash) |
| Le Joueur | Start $14 — Boss Blind every 2 antes |
| L'Ermite | Starts with La Sentinelle Joker (×3 Mult if Trump Jack never leaves hand) |
| Le Vétéran | Start with a random Planet card pre-applied to level up a contract |
| Le Flambeur | Starts with L'Aventurier Partner Joker (×2 Mult if both win ≥3 tricks) |
| L'Anarchiste | Start $19 — Corrupted pool visible |
Notable Vouchers
| Voucher | Effect |
|---|---|
| Le Carnet | See partner's full hand every round. +1 Mult each time South wins a trick |
| La Voûte | Earn $1 interest per $5 held, up to $5/round |
| La Double Donne | +1 Joker slot |
| La Télescope | +$1 flat bonus after every round |
| Le Grimoire | Shop always stocks at least one Tarot card |
| Les Cartes Dorées | +1 interest rate and +5 interest cap permanently |
| La Balance | Your team wins automatically on a card-point tie |
| La Surcoinche | Unlocks the Surcoinche contract (unlockable) |
Showcase
Main Menu
⢠⣴⣶⣶⣶⣄
⣿⣿⣿⣿⣿⣿⣦
⢰⣿⣿⣿⣿⡿⠟⠁⣠⣴⣶⣦⠄
⢸⣿⣿⠟⠉⣠⣴⣿⣿⣿⠟⠁⣠⣾⣿⣦⡀
⠉⣀⣴⣾⣿⣿⣿⠟⢁⣤⣾⣿⣿⣿⣿⣿⡆
⢀⣤⣾⣿⣿⣿⡿⠛⢁⣴⣿⣿⣿⣿⣿⣿⣿⠟⠁⡀
⢼⣿⣿⣿⡿⠋⣀⣴⣿⣿⣿⣿⣿⣿⣿⡿⠉⣠⣾⣿⡆
⠘⢿⡿⠋⣠⣾⣿⣿⣿⣿⣿⣿⣿⡿⠋⢀⣾⣿⣿⠟⢁⣀
⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⠏⢀⣴⣿⣿⣿⠋⢠⣾⣿⣷⣦⡀
⢻⣿⣿⣿⣿⣿⣿⣿⠟⢁⣴⣿⣿⣿⡿⠁⣰⣿⣿⣿⣿⣿⣿
⠹⢿⣿⣿⣿⡿⠋⣠⣾⣿⣿⣿⠟⢀⣼⣿⣿⣿⣿⣿⣿⡟
⠉⠉⠉ ⢾⣿⣿⣿⣿⠋ ⠚⠛⠛⠛⠛⠛⠛⠁
⠉⠉⠉
(
) (
___...(-------)-....___
.-'' ) ( ''-.
.-'``'|-._ ) _.-|
/ .--.| `''---...........---''` |
/ / | BelAtro |
| | | > Start Game < |
| | | AI: < Hard > |
| | | Target: < 1000 > |
| | | Speed: < Normal > |
| | | Theme: < Classic Green > |
| | | Rules & History |
\ \ | Statistics |
`\ `\ | Quit |
`\ `| |
_/ /\ /
(__/ \ /
_..---''` \ /`''---.._
.-' \ / '-.
: `-.__ __.-' :
: ) ''---...---'' ( :
'._ `''...___...--''` _.'
jgs \''--..__ __..--''/
'._ '''----.....______.....----''' _.'
`''--..,,_____ _____,,..--''`
`'''----'''`
Card Graphics
┌────┐ ┌────┐ ┌────┐ ┌────┐
│J ♠ │ │Q ♦ │ │K ♥ │ │A ♣ │
│ ⚔ │ │ ♕ │ │ ♔ │ │ ★ │
│ J ♠│ │ Q ♦│ │ K ♥│ │ A ♣│
└────┘ └────┘ └────┘ └────┘
Requirements
- Python >= 3.10
- No third-party dependencies (stdlib only)
- Terminal with >= 80 columns × 32 rows (compact preset). Recommended: 96×38 (standard) or 120×48 (spacious) for the full Art Nouveau card art and verbose HUD. The game auto-selects the best fit and adapts on resize.
- UTF-8 support (for card symbols: ♠♥♦♣)
Quick Start
# Install in editable mode (recommended for development)
pip install -e .
# Or install from PyPI (once uploaded)
pip install belote-cli
# Play using the belote command
belote
# Play the new Roguelite expansion
belatro
# Custom settings
belote --difficulty hard --target 500 --seed 123 --speed fast
Controls
General:
?: Show keyboard shortcut helpIorV: Toggle BelAtro score overlay (per-trick breakdown popup)Q: Quit to main menu or exitH: View Game History (round-by-round, with contract / taker / tricks / declarations)T: Cycle UI Theme
Classic Belote:
↑↓: Navigate options←→: Quick-change settings (Difficulty, Target, Speed)Enter: Select option / Enter submenu
BelAtro (Roguelite):
1-5: Inspect specific Jokers in the ShopU: Use a consumable (Tarot/Planet) during gameplay
Gameplay:
←→or↑↓: Move selectionEnter: Confirm card/bid1-8: Direct card selection (or1-4for bids)O: Sort hand by suit and rankZ: Undo last moveSpaceorEsc: Skip animations- During bidding round 2:
P= Pass,A= Tout Atout,S= Sans Atout
Features
- BelAtro Roguelite Mode: A massive expansion featuring 36 Jokers, 12 Tarot cards, 8 Planets, 12 Vouchers, and permanent upgrades.
- Collection (Almanac): Persistent tracker to browse every Joker, Planet, and Voucher you've discovered across your runs.
- Full Boss Blind Suite: All 21 unique bosses implemented, including complex mechanics like L'Anarchie (dynamic trump) and La Rupture (no consecutive wins).
- Multiplier Scoring: Use items to stack Multipliers and reach scores in the millions.
- Partner Trust: Build a relationship with your AI partner to unlock synergies.
- Rich Terminal UI: Full-screen green felt table with detailed card graphics and "You" vs "Partner" terminology.
- Enhanced Hard AI: Advanced void inference and 2-ply lookahead for critical tricks (Dix de Der).
- Customizable Themes: Switch between six color palettes (Classic Green, Dark Mode, Blue Velvet, Red Casino, Sepia Vintage, High Contrast) using the
Tkey during gameplay. - Incremental Rendering: High-performance cursor-based updates for zero-flicker gameplay even at high speeds.
- Hand Sorting: Strategic "play value" organization (honors grouped together) for better tactical awareness.
- Main Menu: Simple single-player entry point with configurable AI difficulty, Target Score, and Speed.
- Undo/Redo: Press
Zto undo your last move during bidding or play. - Statistics: unified global tracking of games played, win rates, best rounds, and BelAtro expansion milestones.
- Responsive Layout (3 tiers): Three preset layouts — compact (80×32, fits 1366×768), standard (96×38), spacious (120×48+). The game picks the largest preset that fits your terminal on every render, so resizing mid-game adapts automatically; cards, side columns, and HUD verbosity all scale with the preset. Vertical centering pads tall terminals so the game never clings to the top.
- Alternate Screen Buffer: Both classic Belote and BelAtro run in a dedicated terminal buffer for a clean, non-overlapping interface — your shell scrollback stays untouched after you quit.
- Declarations: Automatic detection and announcement of sequences (Tierce, Quarte, etc.) and Carrés after the first trick.
- Live HUD: Real-time round scoring displays points won during the current round, with a smooth "rolling" numerical animation for total scores.
- High Fidelity: Implementation of French Belote rules according to the official rules of the Fédération Française de Belote, including a two-round bidding system, "Dix de Der", "Capot" (252 pts), and "Litige" (tie-break). All six contracts are bidable in round 2: the four card suits, Tout Atout (every suit acts as trump within its own led-suit group; press
a), and Sans Atout (no trump, lead-suit highest wins; presss). - Rules & History Viewer: A scrollable, bilingual (English/French) in-game reference for the game's heritage and mechanics.
AI
Three difficulty levels:
- Easy: Random legal moves, bids on 2+ honors.
- Medium: Heuristic suit scoring, void tracking to force trumps, and smart covering/ducking.
- Hard: Advanced void inference, 2-ply lookahead for critical tricks, and randomized "personality" bidding thresholds.
Project Structure
belote/
├── src/belote/
│ ├── main.py # Classic entry point
│ ├── belatro/ # Roguelite Expansion package
│ │ ├── main.py # BelAtro entry point
│ │ ├── core/ # Run state, scoring, economy
│ │ ├── engine/ # Event bus, round driver
│ │ ├── items/ # Jokers, Tarots, Planets, Vouchers
│ │ ├── partner/ # Trust system and partner AI
│ │ └── ui/ # Shop, HUD, and item visualization
│ ├── gameflow.py # Main game loop and phase transitions
│ ├── deck.py # Card, Suit, Rank, deck operations, points
│ ├── game.py # GameState, phases, pure transitions, legal moves, bidding
│ ├── scoring.py # Declarations, round scoring, capot
│ ├── ai.py # Three-tier AI (easy/medium/hard)
│ ├── config.py # Global configuration and timings
│ ├── context.py # Global managers (Terminal)
│ ├── themes.py # Color theme management
│ ├── ui/ # Modular UI package
│ ├── ansi.py # ANSI escape helpers (colors, cursor)
│ ├── input.py # Platform-dispatched key reader and interruptible sleep
│ ├── stats.py # Global and session statistics tracking
│ └── rules.py # Game rules content
├── tests/ # Comprehensive test suite (528 tests)
├── scripts/ # Performance benchmarks
├── pyproject.toml # Build system and dev dependencies (ruff/mypy)
├── LICENSE # MIT License
├── CHANGELOG.md # History of changes
├── DEVELOPMENT.md # Detailed setup and dev guide
└── GRIMAUD Standard Playing-Cards-1898.png # Reference art for card faces
Running Tests
# Run all tests (Classic + BelAtro)
PYTHONPATH=src pytest
Currently 528 tests passing with 100% coverage on game-logic modules.
Technical Integrity
The codebase is strictly validated with the following tools:
- mypy: 0 errors (strict type safety)
- ruff: 0 violations (linting & formatting)
- pytest: 528/528 passed
- Functional Architecture: Purely immutable state transitions using
dataclasses.replace - Performance: High-efficiency rendering and sub-millisecond AI decision times (see
scripts/benchmark.py)
Statistics & Progression
Belote-CLI tracks your long-term performance across both game modes.
- Global Statistics: View your win rates, best round scores, and trump usage from the "Statistics" menu.
- BelAtro Unlocks: Progression in the roguelite mode is saved automatically. You can track your Ante 8 wins and total items found in the expansion.
Resetting Progress
If you want to start fresh and clear your history/collection, manually delete the data files:
- Linux:
rm ~/.local/share/belote/*.json - Windows:
del %APPDATA%\belote\*.json
This will wipe all global statistics and reset your discovered item Almanac in BelAtro.
Terminal Hygiene
Signal handlers (SIGINT, SIGTERM) and atexit hooks ensure the terminal is always restored — cursor visible, colors reset, alt-screen off — even after Ctrl+C or crashes.
Every rendered row ends with \x1b[K (clear-to-end-of-line) and every interactive prompt (bid selector, card selector, full-screen overlays) repaints in a single in-frame pass — no \r\n-bracketed writes outside the render. This keeps the game free of stale-cell artifacts on strict ANSI emulators like Konsole (KDE), in addition to the more lenient VTE-based terminals (GNOME Terminal, LXTerminal, xterm).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file belote_cli-3.4.0.tar.gz.
File metadata
- Download URL: belote_cli-3.4.0.tar.gz
- Upload date:
- Size: 5.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54c48c2cbe25caed253c5b201425e6514f13e48a3d39cdf19268c72f33b579cb
|
|
| MD5 |
5d91d0b9742d42fcc27899301be2d0ba
|
|
| BLAKE2b-256 |
162a57f24807b5d6d07743aac4cacef1e351d58e88b42340468941b997a014ee
|
File details
Details for the file belote_cli-3.4.0-py3-none-any.whl.
File metadata
- Download URL: belote_cli-3.4.0-py3-none-any.whl
- Upload date:
- Size: 177.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e535a18a96f24e7aee48b399faaa07825c7b27d58d642537dc275f3c714e9b02
|
|
| MD5 |
867c87aa84a8f7bc4a41c9ff3f3e199f
|
|
| BLAKE2b-256 |
33632e2054bd8ba10ef67e103797cb4e808d1086eb652e441e5ccd8648903b37
|