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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
use std::{
collections::BTreeMap,
fs::File,
path::PathBuf,
sync::mpsc::{Receiver, SyncSender},
};
use bevy::{
prelude::{default, info, CoreSet, Deref, DerefMut, IntoSystemConfig, NonSendMut, Plugin},
render::render_resource::ShaderDefVal,
tasks::IoTaskPool,
utils::HashMap,
};
use serde::{Deserialize, Serialize};
#[cfg(feature = "hot-rebuild")]
pub(crate) static EXPORT_HANDLES: once_cell::sync::Lazy<
std::sync::RwLock<HashMap<PathBuf, ExportHandle>>,
> = once_cell::sync::Lazy::new(default);
#[cfg(feature = "hot-rebuild")]
pub(crate) static MATERIAL_EXPORTS: once_cell::sync::Lazy<
std::sync::RwLock<HashMap<std::any::TypeId, PathBuf>>,
> = once_cell::sync::Lazy::new(default);
pub fn file_writer(path: PathBuf, entry_points: EntryPoints) {
let writer = File::create(path).unwrap();
serde_json::to_writer_pretty(writer, &entry_points).unwrap();
}
pub struct EntryPointExportPlugin<F> {
pub writer: F,
}
impl Default for EntryPointExportPlugin<fn(PathBuf, EntryPoints)> {
fn default() -> Self {
EntryPointExportPlugin {
writer: file_writer,
}
}
}
impl<F> Plugin for EntryPointExportPlugin<F>
where
F: Fn(PathBuf, EntryPoints) + Clone + Send + Sync + 'static,
{
fn build(&self, app: &mut bevy::prelude::App) {
app.world.init_non_send_resource::<EntryPointExport>();
app.add_systems((
EntryPointExport::create_export_containers_system.in_base_set(CoreSet::Update),
EntryPointExport::receive_entry_points_system.in_base_set(CoreSet::Last),
EntryPointExport::export_entry_points_system(self.writer.clone())
.in_base_set(CoreSet::Last)
.after(EntryPointExport::receive_entry_points_system),
));
}
}
pub type ExportHandle = SyncSender<Export>;
type EntryPointReceiver = Receiver<Export>;
#[derive(Debug, Default, Clone)]
pub struct Export {
pub shader: &'static str,
pub permutation: Vec<String>,
pub constants: Vec<ShaderDefVal>,
pub types: BTreeMap<String, String>,
}
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
#[serde(untagged)]
enum PermutationConstant {
Bool(bool),
Uint(u32),
Int(i32),
}
#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize, Deref, DerefMut)]
struct PermutationConstants {
#[serde(flatten)]
constants: HashMap<String, PermutationConstant>,
}
impl From<Vec<ShaderDefVal>> for PermutationConstants {
fn from(value: Vec<ShaderDefVal>) -> Self {
PermutationConstants {
constants: value
.into_iter()
.map(|def| match def {
ShaderDefVal::Bool(key, value) => (key, PermutationConstant::Bool(value)),
ShaderDefVal::Int(key, value) => (key, PermutationConstant::Int(value)),
ShaderDefVal::UInt(key, value) => (key, PermutationConstant::Uint(value)),
})
.collect(),
}
}
}
#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Permutation {
parameters: Vec<String>,
constants: PermutationConstants,
types: BTreeMap<String, String>,
}
#[derive(Debug, Default, Clone, Deref, DerefMut, Serialize, Deserialize)]
pub struct EntryPoints {
#[serde(flatten)]
pub entry_points: HashMap<String, Vec<Permutation>>,
}
#[derive(Debug)]
struct EntryPointExportContainer {
rx: EntryPointReceiver,
entry_points: EntryPoints,
changed: bool,
}
#[derive(Debug, Default, Deref, DerefMut)]
struct EntryPointExport {
exports: HashMap<PathBuf, EntryPointExportContainer>,
}
impl EntryPointExport {
pub fn create_export_containers_system(mut exports: NonSendMut<Self>) {
let material_exports = MATERIAL_EXPORTS.read().unwrap();
for (_, path) in material_exports.iter() {
if !exports.contains_key(path) {
let (tx, rx) = std::sync::mpsc::sync_channel::<Export>(32);
EXPORT_HANDLES.write().unwrap().insert(path.clone(), tx);
let container = EntryPointExportContainer {
rx,
entry_points: default(),
changed: default(),
};
exports.insert(path.clone(), container);
}
}
}
pub fn receive_entry_points_system(mut exports: NonSendMut<Self>) {
for (_, export) in exports.exports.iter_mut() {
while let Ok(entry_point) = export.rx.try_recv() {
if !export.entry_points.contains_key(entry_point.shader) {
info!("New entry point: {}", entry_point.shader);
export
.entry_points
.insert(entry_point.shader.to_string(), default());
export.changed = true;
}
let entry = &export.entry_points[entry_point.shader];
let permutation = Permutation {
parameters: entry_point.permutation,
constants: entry_point.constants.into(),
types: entry_point.types,
};
if !entry.contains(&permutation) {
info!("New permutation: {:?}", permutation);
export
.entry_points
.get_mut(entry_point.shader)
.unwrap()
.push(permutation);
export.changed = true;
}
}
}
}
pub fn export_entry_points_system<F>(f: F) -> impl Fn(NonSendMut<Self>) + Send + Sync + 'static
where
F: Fn(PathBuf, EntryPoints) + Clone + Send + Sync + 'static,
{
move |mut exports: NonSendMut<Self>| {
for (path, export) in exports.exports.iter_mut() {
if export.changed {
let entry_points = export.entry_points.clone();
let path = path.clone();
let f = f.clone();
info!("Exporting entry points to {:}", path.to_str().unwrap());
IoTaskPool::get()
.spawn(async move { f(path, entry_points) })
.detach();
export.changed = false;
}
}
}
}
}