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
//! SubjectiveRealityPlugin
//!
//! Separates "God's View (Ground Truth)" from "Faction's View (Perception)".
//!
//! # Features
//!
//! - **Blackboard Pattern**: Per-faction knowledge boards
//! - **Perception System**: Accuracy-based noise generation
//! - **Confidence Decay**: Information becomes less reliable over time
//! - **Hook Pattern**: Game-specific customization via PerceptionHook
//!
//! # Example
//!
//! ```ignore
//! use issun::plugin::subjective_reality::*;
//!
//! let plugin = SubjectiveRealityPlugin::new()
//! .with_config(PerceptionConfig::default())
//! .register_faction("faction_a")
//! .register_faction("faction_b");
//!
//! let game = GameBuilder::new()
//! .with_plugin(plugin)
//! .build()
//! .await?;
//! ```
// Module declarations
// Public re-exports
pub use PerceptionConfig;
pub use ;
pub use SubjectiveRealityPlugin;
pub use PerceptionService;
pub use ;
pub use PerceptionSystem;
pub use ;