Files
addr2line
adler
adler32
ahash
aho_corasick
angle
approx
backtrace
bitflags
blender
bytemuck
byteorder
case
cast_trait
cfg_if
chrono
color
color_quant
const_fn
crc32fast
crossbeam
crossbeam_channel
crossbeam_deque
crossbeam_epoch
crossbeam_queue
crossbeam_skiplist
crossbeam_utils
darling
darling_core
darling_macro
dds
deflate
densevec
derive_builder
derive_builder_core
dot
downcast_rs
dual_quat
either
erased_serde
failure
failure_derive
fixedbitset
float_cmp
fnv
freeimage
freeimage_sys
freetype
freetype_gl_sys
freetype_sys
freetypegl
futures
futures_channel
futures_core
futures_executor
futures_io
futures_macro
futures_sink
futures_task
futures_util
async_await
future
io
lock
sink
stream
task
fxhash
generational_arena
generic_array
getrandom
gif
gimli
glfw
glfw_sys
glin
glin_derive
glsl
half
harfbuzz
harfbuzz_ft_sys
harfbuzz_sys
hashbrown
human_sort
ident_case
image
indexmap
instant
itertools
itoa
jpeg_decoder
lazy_static
libc
libm
lock_api
log
lut_parser
matrixmultiply
memchr
memoffset
meshopt
miniz_oxide
monotonic_clock
mopa
mutiny_derive
na
nalgebra
base
geometry
linalg
ncollide3d
bounding_volume
interpolation
partitioning
pipeline
procedural
query
algorithms
closest_points
contact
distance
nonlinear_time_of_impact
point
proximity
ray
time_of_impact
visitors
shape
transformation
utils
nom
num_complex
num_cpus
num_integer
num_iter
num_rational
num_traits
numext_constructor
numext_fixed_uint
numext_fixed_uint_core
numext_fixed_uint_hack
object
once_cell
parking_lot
parking_lot_core
pathfinding
pennereq
petgraph
pin_project_lite
pin_utils
png
polygon2
ppv_lite86
proc_macro2
proc_macro_crate
proc_macro_hack
proc_macro_nested
quote
rand
rand_chacha
rand_core
rand_distr
raw_window_handle
rawpointer
rayon
rayon_core
rect_packer
regex
regex_syntax
retain_mut
rin
rin_app
rin_blender
rin_core
rin_gl
rin_graphics
rin_gui
rin_material
rin_math
rin_postpo
rin_scene
rin_util
rin_window
rinblender
rinecs
rinecs_derive
rinecs_derive_utils
ringui_derive
rustc_demangle
rusty_pool
ryu
scopeguard
seitan
seitan_derive
semver
semver_parser
serde
serde_derive
serde_json
shaderdata_derive
simba
slab
slice_of_array
slotmap
smallvec
std140_data
streaming_iterator
strsim
syn
synstructure
thiserror
thiserror_impl
thread_local
tiff
time
toml
typenum
unchecked_unwrap
unicode_xid
vec2
vec3
weezl
x11
zlib_sys
  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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
extern crate proc_macro;
extern crate proc_macro2;
extern crate syn;
#[macro_use] extern crate quote;

use proc_macro::TokenStream;
use syn::punctuated::Punctuated;
use std::fmt;
use std::io::Write;
use syn::spanned::Spanned;

fn _rustfmt<C: fmt::Display>(code: C) -> String{
    // rustfmt_core::format_code_block(code, rustfmt_core::Config::default()).unwrap()
    let code = format!("{}", code);
    let mut child = ::std::process::Command::new("rustfmt")
        .stdin(::std::process::Stdio::piped())
        .stdout(::std::process::Stdio::piped())
        .spawn()
        .expect("Failed to format source snippet");
    {
        let stdin = child.stdin.as_mut().expect("Failed to open stdin");
        stdin.write_all(code.as_bytes()).expect("Failed to write to stdin");
    }
    let out = child.wait_with_output().expect("Failed to format source snippet").stdout;
    String::from_utf8_lossy(&out).to_string()
}

#[proc_macro_derive(ParamsDefault, attributes(param))]
pub fn parameter_group(input: TokenStream) -> TokenStream {
    let parameter_group = syn::parse_macro_input!(input as ParamsDefault);
    parameter_group.impl_default().into()
}


struct DefaultValue{
    value: syn::Expr,
}

impl syn::parse::Parse for DefaultValue{
    fn parse(input: syn::parse::ParseStream) -> syn::Result<DefaultValue>{
        Ok(DefaultValue{
            value: input.parse()?
        })
    }
}

struct Range{
    range: syn::Expr
}

impl syn::parse::Parse for Range {
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Range> {
        Ok(Range{
            range: input.parse()?,
        })
    }
}

struct With{
    with: syn::Expr,
}

impl syn::parse::Parse for With{
    fn parse(input: syn::parse::ParseStream) -> syn::Result<With> {
        let with = input.parse().map_err(|err| syn::Error::new(
                        err.span(),
                        "With value should be an expression or string literal"))?;
        let with = if let syn::Expr::Lit(with) = with{
            if let syn::Lit::Str(with) = with.lit {
                syn::parse_str(&with.value())?
            }else{
                return Err(syn::Error::new(
                    input.span(),
            "With value should be an expression or string literal"));
            }
        }else{
            with
        };
        Ok(With{
            with
        })
    }
}

enum ParameterAttributeTts{
    DefaultValue(DefaultValue),
    Range(Range),
    LogRange(Range),
    With(With),
}

impl syn::parse::Parse for ParameterAttributeTts{
    fn parse(input: syn::parse::ParseStream) -> syn::Result<ParameterAttributeTts>{
        let path: syn::Path = input.parse()?;
        if path.is_ident("default"){
            let _eq_token: syn::Token![=] = input.parse()?;
            let default_value: DefaultValue = input.parse()?;
            Ok(ParameterAttributeTts::DefaultValue(default_value))
        }else if path.is_ident("range"){
            let _eq_token: syn::Token![=] = input.parse()?;
            let expr: syn::Expr = input.parse()?;
            let range = if let syn::Expr::Lit(lit) = &expr{
                if let syn::Lit::Str(lit) = &lit.lit {
                    syn::parse_str(&lit.value())
                        .map_err(|err| syn::Error::new(err.span(), "Parsing field attribute range literal"))?
                }else{
                    return Err(syn::Error::new(input.span(), "Range has to be an expresion or string literal"))
                }
            }else{
                Range{ range: expr }
            };
            Ok(ParameterAttributeTts::Range(range))
        }else if path.is_ident("range_log"){
            let _eq_token: syn::Token![=] = input.parse()?;
            let expr: syn::Expr = input.parse()?;
            let range = if let syn::Expr::Lit(lit) = &expr{
                if let syn::Lit::Str(lit) = &lit.lit {
                    syn::parse_str(&lit.value())
                        .map_err(|err| syn::Error::new(err.span(), "Parsing field attribute range literal"))?
                }else{
                    return Err(syn::Error::new(input.span(), "Range has to be an expresion or string literal"))
                }
            }else{
                Range{ range: expr }
            };
            Ok(ParameterAttributeTts::LogRange(range))
        }else if path.is_ident("with"){
            let _eq_token: syn::Token![=] = input.parse()?;
            let with = input.parse()?;
            Ok(ParameterAttributeTts::With(with))
        }else{
            Err(syn::Error::new(
                path.span(),
                &format!(
                    "Error parsing param attribute {} which is not supported, supported attributes: \"default\", \"range\", \"range_log\" and \"with\"",
                    path.segments[0].ident,
                )
            ))
        }
    }
}

struct GuiAttribute{
    pub pound_token: syn::token::Pound,
    pub bracket_token: syn::token::Bracket,
    pub gui_path: syn::Path,
    pub paren: Option<syn::token::Paren>,
    pub attributes: Punctuated<ParameterAttributeTts, syn::Token![,]>,
}

// impl syn::parse::Parse for GuiAttribute{
//     fn parse(input: syn::parse::ParseStream) -> syn::Result<GuiAttribute>{
//         let content;
//         let pound_token = input.parse()?;
//         let bracket_token = syn::bracketed!(content in input);
//         let gui_path: syn::Path = content.parse()?;
//         let paren;
//         let attributes;
//         if gui_path.is_ident("param"){
//             let attr_content;
//             paren = Some(syn::parenthesized!(attr_content in content));
//             attributes = attr_content.parse_terminated(ParameterAttributeTts::parse)?;
//         }else{
//             content.cursor().token_stream();
//             paren = None;
//             attributes = Punctuated::new();
//         }
//         Ok(GuiAttribute{
//             pound_token,
//             bracket_token,
//             gui_path,
//             paren,
//             attributes,
//         })
//     }
// }

struct Parameter{
    attrs: Vec<GuiAttribute>,
    vis: syn::Visibility,
    ident: syn::Ident,
    colon_token: syn::Token![:],
    ty: syn::Type
}

impl Parameter{
    fn parameter_default(&self) -> syn::Result<proc_macro2::TokenStream> {
        let mut default_values = self.attrs.iter().flat_map(|attrs| attrs.attributes.iter())
            .filter_map(|attr| if let ParameterAttributeTts::DefaultValue(default) = attr{
                Some(default)
            }else{
                None
            });
        let default_value = default_values.next();
        if let Some(default_value) = default_values.next() {
            return Err(syn::Error::new(
                self.ident.span(),
                "Parameter has more than one default value attribute"))
        }

        let mut ranges = self.attrs.iter().flat_map(|attrs| attrs.attributes.iter())
            .filter_map(|attr| if let ParameterAttributeTts::Range(range) = attr{
                Some(range)
            }else{
                None
            });
        let range = ranges.next();
        if let Some(range) = ranges.next() {
            return Err(syn::Error::new(
                self.ident.span(),
                "Parameter has more than one range attribute"))
        }

        let mut ranges_log = self.attrs.iter().flat_map(|attrs| attrs.attributes.iter())
            .filter_map(|attr| if let ParameterAttributeTts::LogRange(range) = attr{
                Some(range)
            }else{
                None
            });
        let range_log = ranges_log.next();
        if ranges_log.next().is_some() {
            return Err(syn::Error::new(
                self.ident.span(),
                "Parameter has more than one range attribute"))
        }

        let mut withs = self.attrs.iter().flat_map(|attrs| attrs.attributes.iter())
            .filter_map(|attr| if let ParameterAttributeTts::With(with) = attr{
                Some(with)
            }else{
                None
            });
        let with = withs.next();
        if withs.next().is_some() {
            return Err(syn::Error::new(
                self.ident.span(),
                "Parameter has more than with attribute"))
        }

        if range_log.is_some() && range.is_some(){
            return Err(syn::Error::new(
                self.ident.span(),
                "Parameter can only have range or range_log but not both"));
        }

        if with.is_some() && (default_value.is_some() || range.is_some() || range_log.is_some()){
            return Err(syn::Error::new(
                self.ident.span(),
                "Parameter can only have a with attribute or a default / range / range_log but not both"))
        }

        if let Some(with) = with {
            let with = &with.with;
            Ok(quote!{
                #with
            })
        }else{
            match &self.ty {
                syn::Type::Path(type_path) => {
                    let ty: Punctuated<syn::Ident, syn::Token![::]> = type_path.path.segments.iter()
                        .map(|path_segment| path_segment.ident.clone())
                        .collect();
                    match (default_value, range, range_log) {
                        (Some(default), Some(range), None) => {
                            let default = &default.value;
                            let range = &range.range;
                            Ok(quote!{
                                #ty ::new(#default, #range)
                            })
                        }

                        (Some(default), None, Some(range)) => {
                            let default = &default.value;
                            let range = &range.range;
                            Ok(quote!{
                                #ty ::new_log_scale(#default, #range)
                            })
                        }

                        (Some(default), None, None) => {
                            let default = &default.value;
                            Ok(quote!{
                                #default.into()
                            })
                        }

                        (None, None, None) => {
                            Ok(quote!{
                                #ty::default()
                            })
                        }

                        _ => Err(syn::Error::new(
                                self.ident.span(),
                                "Parameter range without default value not supported yet"))
                    }
                },
                syn::Type::Tuple(tuple) => {
                    // Err(syn::Error::new(self.ident.span(), "Tuple type not supported yet in default ParameterGroup impl"))
                    if range.is_some() || range_log.is_some() {
                        return Err(syn::Error::new(
                            self.ident.span(),
                            "Ranges are only supported with RangedProperty or RangedPropertyMut, not with tuples",
                        ))
                    }
                    match default_value {
                        Some(default) => {
                            let default = &default.value;
                            Ok(quote!{
                                #default.into()
                            })
                        }

                        None => {
                            Ok(quote!{
                                Default::default()
                            })
                        }
                    }
                }
                _ => {
                    Err(syn::Error::new(self.ident.span(), "Only Path or types supported in default ParameterGroup impl"))
                }
            }
        }

    }
}


impl syn::parse::Parse for Parameter{
    fn parse(input: syn::parse::ParseStream) -> syn::Result<Parameter>{
        let attrs = syn::Attribute::parse_outer(input)?
            .into_iter()
            .filter(|attr| attr.path.is_ident("param"))
            .map(|attr| {
                let attributes = attr.parse_args_with(Punctuated::parse_terminated)?;
                Ok(GuiAttribute{
                    pound_token: attr.pound_token,
                    bracket_token: attr.bracket_token,
                    gui_path: attr.path,
                    paren: None,
                    attributes,
                })
            }).collect::<syn::Result<Vec<_>>>()?;

        Ok(Parameter{
            attrs,
            vis: input.parse()?,
            ident: input.parse()?,
            colon_token: input.parse()?,
            ty: input.parse()?,
        })
    }
}

struct ParamsDefault{
    attrs: Vec<syn::Attribute>,
    vis: syn::Visibility,
    struct_token: syn::Token![struct],
    ident: syn::Ident,
    generics: syn::Generics,
    brace_token: syn::token::Brace,
    fields: Punctuated<Parameter, syn::Token![,]>,
}

impl syn::parse::Parse for ParamsDefault{
    fn parse(input: syn::parse::ParseStream) -> syn::Result<ParamsDefault>{
        let attrs = syn::Attribute::parse_outer(input)?;
        let content;
        let vis = input.parse()?;
        let struct_token = input.parse()?;
        let ident = input.parse()?;
        let generics = input.parse()?;
        let brace_token = syn::braced!(content in input);
        let fields = content.parse_terminated(Parameter::parse)?;
        Ok(ParamsDefault{
            attrs,
            vis,
            struct_token,
            ident,
            generics,
            brace_token,
            fields,
        })
    }
}

impl ParamsDefault{
    fn impl_default(&self) -> proc_macro2::TokenStream{
        let name = &self.ident;
        let (impl_generics, ty_generics, where_clause) = self.generics.split_for_impl();
        let let_field = self.fields.iter().map(|f| &f.ident);
        let field = self.fields.iter().map(|f| &f.ident);
        let default = self.fields.iter().map(|f| match f.parameter_default(){
            Ok(default) => default,
            Err(err) => err.to_compile_error(),
        });
        quote!{
            impl #impl_generics Default for #name #ty_generics #where_clause{
                fn default() -> #name #ty_generics {
                    #( let #let_field = #default; )*
                    #name {
                        #( #field, )*
                    }
                }
            }
        }
    }
}