File size: 1,123 Bytes
414dc55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""Engine - deterministic game state, interrogation loop, adjudication, and scoring."""

from __future__ import annotations

from .accusation import finalize_accusation
from .director import Adjudication, adjudicate
from .evidence_board import available_evidence, clues_at, search_location
from .game_state import (
    Exchange,
    GameState,
    NotebookEntry,
    NotebookKind,
    SuspectState,
    new_game_state,
)
from .interrogation_loop import FinalTurn, InterrogationEvent, interrogate
from .relevance import RelevanceResult, assess_relevance
from .scoring import score_accusation
from .session import Session
from .state_update import apply_turn, discover_clues

__all__ = [
    "Adjudication",
    "Exchange",
    "FinalTurn",
    "GameState",
    "InterrogationEvent",
    "NotebookEntry",
    "NotebookKind",
    "RelevanceResult",
    "Session",
    "SuspectState",
    "adjudicate",
    "apply_turn",
    "assess_relevance",
    "available_evidence",
    "clues_at",
    "discover_clues",
    "finalize_accusation",
    "interrogate",
    "new_game_state",
    "score_accusation",
    "search_location",
]