mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
* Add input manager * WIP lifetime hell * Hell yeah, dark lifetime magic * Replace events with actions in tools * Fix borrow in GlobalEventHandler * Fix typo in response-handler * Distribute dispatch structure * Add translation from events to actions * Port default key actions to input_mapper * Split actions macro * Add handling for Ambiguous Mouse events * Fix warnings and clippy lints * Add actions macro * WIP rework * Add AsMessage macro * Add implementation for derived enums * Add macro implementation for top level message * Add #[child] attribute to indicate derivation * Replace some mentions of Actions and Responses with Message * It compiles !!! * Add functionality to some message handlers * Add document rendering * ICE * Rework the previous code while keeping basic functionality * Reduce parent-top-level macro args to only two * Add workaround for ICE * Fix cyclic reference in document.rs * Make derive_transitive_child a bit more powerful This addresses the todo that was left, enabling arbitrary expressions to be passed as the last parameter of a #[parent] attribute * Adapt frontend message format * Make responses use VecDeque Our responses are a queue so we should use a queue type for them * Move traits to sensible location * Are we rectangle yet? * Simplify, improve & document `derive_discriminant` * Change `child` to `sub_discriminant` This only applies to `ToDiscriminant`. Code using `#[impl_message]` continues to work. * Add docs for `derive_transitive_child` * Finish docs and improve macros The improvements are that impl_message now uses trait resolution to obtain the parent's discriminant and that derive_as_message now allows for non-unit variants (which we don't use but it's nice to have, just in case) * Remove logging call * Move files around and cleanup structure * Fix proc macro doc tests * Improve actions_fn!() macro * Add ellipse tool * Pass populated actions list to the input mapper * Add KeyState bitvector * Merge mouse buttons into "keyboard" * Add macro for initialization of key mapper table * Add syntactic sugar for the macro * Implement mapping function * Translate the remaining tools * Fix shape tool * Add keybindings for line and pen tool * Fix modifiers * Cleanup * Add doc comments for the actions macro * Fix formatting * Rename MouseMove to PointerMove * Add keybinds for tools * Apply review suggestions * Rename KeyMappings -> KeyMappingEntries * Apply review changes Co-authored-by: T0mstone <realt0mstone@gmail.com> Co-authored-by: Paul Kupper <kupper.pa@gmail.com>
86 lines
2.8 KiB
Rust
86 lines
2.8 KiB
Rust
use crate::helper_structs::AttrInnerKeyStringMap;
|
|
use crate::helpers::{fold_error_iter, two_segment_path};
|
|
use proc_macro2::{Span, TokenStream as TokenStream2};
|
|
use syn::{Attribute, Data, DeriveInput, LitStr, Variant};
|
|
|
|
fn parse_hint_helper_attrs(attrs: &[Attribute]) -> syn::Result<(Vec<LitStr>, Vec<LitStr>)> {
|
|
fold_error_iter(
|
|
attrs
|
|
.iter()
|
|
.filter(|a| a.path.get_ident().map_or(false, |i| i == "hint"))
|
|
.map(|attr| syn::parse2::<AttrInnerKeyStringMap>(attr.tokens.clone())),
|
|
)
|
|
.and_then(|v: Vec<AttrInnerKeyStringMap>| {
|
|
fold_error_iter(AttrInnerKeyStringMap::multi_into_iter(v).map(|(k, mut v)| match v.len() {
|
|
0 => panic!("internal error: a key without values was somehow inserted into the hashmap"),
|
|
1 => {
|
|
let single_val = v.pop().unwrap();
|
|
Ok((LitStr::new(&k.to_string(), Span::call_site()), single_val))
|
|
}
|
|
_ => {
|
|
// the first value is ok, the other ones should error
|
|
let after_first = v.into_iter().skip(1);
|
|
// this call to fold_error_iter will always return Err with a combined error
|
|
fold_error_iter(after_first.map(|lit| Err(syn::Error::new(lit.span(), format!("value for key {} was already given", k))))).map(|_: Vec<()>| unreachable!())
|
|
}
|
|
}))
|
|
})
|
|
.map(|v| v.into_iter().unzip())
|
|
}
|
|
|
|
pub fn derive_hint_impl(input_item: TokenStream2) -> syn::Result<TokenStream2> {
|
|
let input = syn::parse2::<DeriveInput>(input_item)?;
|
|
|
|
let ident = input.ident;
|
|
|
|
match input.data {
|
|
Data::Enum(data) => {
|
|
let variants = data.variants.iter().map(|var: &Variant| two_segment_path(ident.clone(), var.ident.clone())).collect::<Vec<_>>();
|
|
|
|
let hint_result = fold_error_iter(data.variants.into_iter().map(|var: Variant| parse_hint_helper_attrs(&var.attrs)));
|
|
|
|
hint_result.map(|hints: Vec<(Vec<LitStr>, Vec<LitStr>)>| {
|
|
let (keys, values): (Vec<Vec<LitStr>>, Vec<Vec<LitStr>>) = hints.into_iter().unzip();
|
|
let cap: Vec<usize> = keys.iter().map(|v| v.len()).collect();
|
|
|
|
quote::quote! {
|
|
impl Hint for #ident {
|
|
fn hints(&self) -> ::std::collections::HashMap<String, String> {
|
|
match self {
|
|
#(
|
|
#variants { .. } => {
|
|
let mut hm = ::std::collections::HashMap::with_capacity(#cap);
|
|
#(
|
|
hm.insert(#keys.to_string(), #values.to_string());
|
|
)*
|
|
hm
|
|
}
|
|
)*
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
Data::Struct(_) | Data::Union(_) => {
|
|
let hint_result = parse_hint_helper_attrs(&input.attrs);
|
|
|
|
hint_result.map(|(keys, values)| {
|
|
let cap = keys.len();
|
|
|
|
quote::quote! {
|
|
impl Hint for #ident {
|
|
fn hints(&self) -> ::std::collections::HashMap<String, String> {
|
|
let mut hm = ::std::collections::HashMap::with_capacity(#cap);
|
|
#(
|
|
hm.insert(#keys.to_string(), #values.to_string());
|
|
)*
|
|
hm
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|