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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
//! The client's render layer. The backend-agnostic render-prep helpers (record
//! builders, render graph, trait seam, CPU-side render math, plus the GPU-free
//! cursor / sprite / text / lights / streaming layout helpers) now live in
//! concinnity-render and are re-exported below under the historical
//! `crate::gfx::<module>` paths so the rest of the client and the device backends
//! keep resolving. What remains declared here are the game/runtime render systems
//! (the renderer driver, animation, camera controllers, draw list) and the
//! client-only settings/quality-preset resolution.
//!
//! The GPU data layouts and render math (camera, frustum, post-process settings)
//! and the CPU kernels over them (mesh payloads, pose blending, IK, line
//! expansion, the animation cursor) both live in concinnity-core, re-exported
//! here so the `crate::gfx::<module>` paths keep resolving. `pub` so the editor
//! crate can reach them through `concinnity_engine::gfx::*` (e.g. shader-layout
//! reflection); `chunk_coord` is named only by the chunk-streaming drive, so it
//! stays crate-private.
pub use chunk_coord;
pub use ;
// Render-prep from concinnity-render that the client's own systems consume (the
// device backends reach the rest through concinnity-device's own bridge, not
// this crate). `pub` for the pieces the editor / app crates name, `pub(crate)`
// for the rest.
pub use ;
pub use ;
// Seeded / driven by the client's GraphicsSystem.
pub use draw_slot;
pub use ;
// The bundled glyph atlas baked into the binary: the face the startup error
// screen draws with, and the fallback for a world whose labels name no Font.
pub
/// Skeletal animation playback. Internal system, constructed by `World::start`
/// when the world declares any `Animation`; produces per-frame skinning matrices.
/// `pub` so the editor crate can drive the clip hot-reload through the
/// `AnimationSystem` setter API.
/// First-person / fly-through camera controller. Internal system, constructed by
/// `World::start` from a `Camera3D`'s controller settings. `pub` so the editor
/// crate can zero the controller's velocity behind an externally driven pose.
pub
/// Live reassignment of a running world's draw slots (their material and cull
/// distance), for an editor previewing a Prop edit without a rebuild.
/// The renderer driver. An internal system (not a declarable asset), constructed
/// by `World::start` when the world declares a `GraphicsConfig`.
/// Live application of the world's lighting assets to a running world, for an
/// editor previewing sun / fog / shadow / post-process edits without a rebuild.
/// The renderer's reading of one compiled `Material`: GPU uniforms plus the
/// texture-pool slots its references resolve to.
pub
/// Live re-resolution of a `CharacterShape` against a running world's poses,
/// for an editor previewing slider edits without a rebuild.
// Per-frame input sampling + FrameInput publish. Internal system, constructed
// alongside GraphicsSystem (same gate) and scheduled immediately after it.
pub
// 2D overlay draw-list build + menu-state publish. Internal system,
// constructed alongside GraphicsSystem (same gate) and scheduled first.
pub
// Engine-side allocation authority for backend draw slots + pre-reserved
// skinned instances (the `RenderSlots` resource).
pub
// SettingCommand / SceneCommand application + settings snapshot ownership.
// Internal system, constructed alongside GraphicsSystem (same gate) and
// scheduled just before it.
pub
// Asset-streaming home: the re-exported `no_std` policy core (`StreamPlanner`)
// plus the `std` texture / mesh / chunk drivers it schedules.
pub
/// Asset-streaming drive (texture / mesh / voxel-world chunk pools) + the
/// camera-relative view publish. Internal system, constructed alongside
/// GraphicsSystem (same gate) and scheduled immediately before it. `pub` so the
/// editor's debug server can name `StreamingStats` (its state lives in the parked
/// `StreamingState` resource, read via `World::streaming_stats`).
// Recording mock RenderBackend + the GraphicsSystem test-injection hooks,
// compiled only into the unit-test binary. Implements concinnity-render's
// RenderBackend seam on a client-local type and carries a `config::Settings`,
// so it stays with the GraphicsSystem tests that consume it.
pub
pub
pub
// How the world's authored render settings resolve against the user's persisted
// settings-menu choices and the active quality preset's ceiling.
pub
pub
pub
// Handle -> asset id bridge for SkinnedMesh correlation references, published by
// GraphicsSystem and read by the animation / third-person systems.
pub
// Third-person character controller. Internal system, constructed instead of
// Camera3DSystem when the controlling camera's controller has a `follow` block.
pub