WorldTier enum fixed to Epicenter/Regional/Backwater/Passage/Waypoint (D-218). Full enum implementations for ComplexityTier, SettingType, SettlementClass, DistrictType, PoliticalArchetype, FoundingOrientation, TerritorialStatus, GeographicAttractor, AttractorType, and CompatibilityMatrix. SystemNameIndex with Aho-Corasick text scanning for background pre-generation queue integration (D-206). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
21 lines
584 B
Rust
21 lines
584 B
Rust
// The Settled Reach - Simulation Server
|
|
// Rust/bevy_ecs simulation server for D-010 client-server architecture
|
|
|
|
pub mod atlas;
|
|
pub mod bookmark;
|
|
pub mod bridge;
|
|
pub mod cause_chain;
|
|
pub mod knowledge;
|
|
pub mod npc;
|
|
pub mod perception;
|
|
pub mod settings;
|
|
pub mod simulation;
|
|
pub mod storyteller;
|
|
pub mod tick_phases;
|
|
pub mod voice;
|
|
pub mod workers;
|
|
// test_world::reset is always compiled (used by simulation::input).
|
|
// Room definitions, constants, and setup_gauntlet are gated behind
|
|
// the "gauntlet" feature (default-on) to allow stripping from release builds.
|
|
pub mod test_world;
|