|
|
@ -2,6 +2,7 @@
|
|
|
|
use clap::Parser;
|
|
|
|
use clap::Parser;
|
|
|
|
use std::fmt::Write;
|
|
|
|
use std::fmt::Write;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use serde::{Serialize, Deserialize};
|
|
|
|
use serde::{Serialize, Deserialize};
|
|
|
|
use xmltree::{Element, XMLNode};
|
|
|
|
use xmltree::{Element, XMLNode};
|
|
|
|
|
|
|
|
|
|
|
@ -13,48 +14,82 @@ use blobfox_template::{
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
|
|
struct Desc {
|
|
|
|
struct Desc {
|
|
|
|
|
|
|
|
/// Name of the snuggle emote (eg. `snuggle`, `nom`)
|
|
|
|
|
|
|
|
name: String,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// How much to move the "left" emote by, horizontally
|
|
|
|
dx: f64,
|
|
|
|
dx: f64,
|
|
|
|
|
|
|
|
/// How much to move the "left" emote by, vertically
|
|
|
|
dy: f64,
|
|
|
|
dy: f64,
|
|
|
|
|
|
|
|
/// How much to scale the "left" emote by, unimplemented!
|
|
|
|
scale: Option<f64>,
|
|
|
|
scale: Option<f64>,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// How much of a margin to add to the "right" emote, in SVG units
|
|
|
|
|
|
|
|
bold: f64,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Optional transform to add to the "right" emote cutout
|
|
|
|
#[serde(default)]
|
|
|
|
#[serde(default)]
|
|
|
|
transform: String,
|
|
|
|
transform: String,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// name/filename list of emotes for the "left" emotes
|
|
|
|
|
|
|
|
left: HashMap<String, String>,
|
|
|
|
|
|
|
|
/// name/filename list of emotes for the "right" emotes
|
|
|
|
|
|
|
|
right: HashMap<String, String>,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
fn main() {
|
|
|
|
let args = Args::parse();
|
|
|
|
let args = Args::parse();
|
|
|
|
|
|
|
|
let input_dir = args.input_dir.clone().unwrap_or(PathBuf::from("output/vector/"));
|
|
|
|
|
|
|
|
let output_dir = args.output_dir.clone().unwrap_or(PathBuf::from("output/"));
|
|
|
|
|
|
|
|
|
|
|
|
let left = std::fs::read_to_string(&args.input_left).unwrap_or_else(|err| {
|
|
|
|
let files = std::fs::read_dir(&input_dir).unwrap_or_else(|err| {
|
|
|
|
panic!("Couldn't open {}: {}", args.input_right.display(), err);
|
|
|
|
panic!("Couldn't read directory {}: {}", input_dir.display(), err);
|
|
|
|
});
|
|
|
|
}).filter_map(|entry| {
|
|
|
|
let right = std::fs::read_to_string(&args.input_right).unwrap_or_else(|err| {
|
|
|
|
let entry = entry.ok()?;
|
|
|
|
panic!("Couldn't open {}: {}", args.input_right.display(), err);
|
|
|
|
Some((entry.path().file_stem()?.to_str()?.to_string(), entry.path()))
|
|
|
|
});
|
|
|
|
}).collect::<HashMap<_, _>>();
|
|
|
|
|
|
|
|
|
|
|
|
let desc = std::fs::read_to_string(&args.desc).unwrap_or_else(|err| {
|
|
|
|
let desc = std::fs::read_to_string(&args.desc).unwrap_or_else(|err| {
|
|
|
|
panic!("Couldn't open {}: {}", args.desc.display(), err);
|
|
|
|
panic!("Couldn't open {}: {}", args.desc.display(), err);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
let desc: Desc = toml::from_str(&desc).unwrap();
|
|
|
|
let desc: Desc = toml::from_str(&desc).unwrap();
|
|
|
|
|
|
|
|
|
|
|
|
let snuggle = generate_snuggle(left, right, desc);
|
|
|
|
let export_args: export::ExportArgs = args.clone().into();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (left_name, left_path) in desc.left.iter() {
|
|
|
|
|
|
|
|
if let Some(left_path) = files.get(left_path) {
|
|
|
|
|
|
|
|
let left = std::fs::read_to_string(left_path).unwrap_or_else(|err| {
|
|
|
|
|
|
|
|
panic!("Couldn't open {}: {}", left_path.display(), err);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (right_name, right_path) in desc.right.iter() {
|
|
|
|
|
|
|
|
if let Some(right_path) = files.get(right_path) {
|
|
|
|
|
|
|
|
let right = std::fs::read_to_string(&right_path).unwrap_or_else(|err| {
|
|
|
|
|
|
|
|
panic!("Couldn't open {}: {}", right_path.display(), err);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let snuggle = generate_snuggle(&left, &right, &desc);
|
|
|
|
let snuggle = export::xml_to_str(&snuggle).unwrap();
|
|
|
|
let snuggle = export::xml_to_str(&snuggle).unwrap();
|
|
|
|
|
|
|
|
|
|
|
|
let output_dir = args.output_dir.clone().unwrap_or(PathBuf::from("output/"));
|
|
|
|
let name = format!("{}_{}_{}", left_name, desc.name, right_name);
|
|
|
|
|
|
|
|
|
|
|
|
export::export(
|
|
|
|
export::export(
|
|
|
|
snuggle,
|
|
|
|
snuggle,
|
|
|
|
&output_dir,
|
|
|
|
&output_dir,
|
|
|
|
args.name.clone(),
|
|
|
|
name,
|
|
|
|
&args.clone().into()
|
|
|
|
&export_args
|
|
|
|
).unwrap();
|
|
|
|
).unwrap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn generate_snuggle(left: String, right: String, desc: Desc) -> Element {
|
|
|
|
fn generate_snuggle(left: &str, right: &str, desc: &Desc) -> Element {
|
|
|
|
let left_usvg = export::get_usvg(&left).unwrap();
|
|
|
|
let left_usvg = export::get_usvg(&left).unwrap();
|
|
|
|
let left_bbox = left_usvg.svg_node().view_box.rect;
|
|
|
|
let left_bbox = left_usvg.svg_node().view_box.rect;
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// == Generate mask ==
|
|
|
|
let mut mask = Element::new("mask");
|
|
|
|
let mut mask = Element::new("mask");
|
|
|
|
mask.attributes.insert("id".to_string(), "snuggle-mask".to_string());
|
|
|
|
mask.attributes.insert("id".to_string(), "snuggle-mask".to_string());
|
|
|
|
|
|
|
|
|
|
|
@ -69,9 +104,10 @@ fn generate_snuggle(left: String, right: String, desc: Desc) -> Element {
|
|
|
|
mask.children.push(XMLNode::Element(rect));
|
|
|
|
mask.children.push(XMLNode::Element(rect));
|
|
|
|
|
|
|
|
|
|
|
|
let mut right_mask = Element::new("g");
|
|
|
|
let mut right_mask = Element::new("g");
|
|
|
|
right_mask.attributes.insert("transform".to_string(), desc.transform);
|
|
|
|
right_mask.attributes.insert("transform".to_string(), desc.transform.clone());
|
|
|
|
|
|
|
|
|
|
|
|
let mut right_xml = Element::parse(right.as_bytes()).unwrap();
|
|
|
|
let mut right_xml = Element::parse(right.as_bytes()).unwrap();
|
|
|
|
|
|
|
|
bolden(desc.bold, &mut right_xml);
|
|
|
|
template::set_fill("#000000", &mut right_xml);
|
|
|
|
template::set_fill("#000000", &mut right_xml);
|
|
|
|
template::set_stroke("#000000", &mut right_xml);
|
|
|
|
template::set_stroke("#000000", &mut right_xml);
|
|
|
|
|
|
|
|
|
|
|
@ -83,6 +119,7 @@ fn generate_snuggle(left: String, right: String, desc: Desc) -> Element {
|
|
|
|
|
|
|
|
|
|
|
|
mask.children.push(XMLNode::Element(right_mask));
|
|
|
|
mask.children.push(XMLNode::Element(right_mask));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// == Insert both emotes ==
|
|
|
|
let mut right_xml = Element::parse(right.as_bytes()).unwrap();
|
|
|
|
let mut right_xml = Element::parse(right.as_bytes()).unwrap();
|
|
|
|
let left_xml = Element::parse(left.as_bytes()).unwrap();
|
|
|
|
let left_xml = Element::parse(left.as_bytes()).unwrap();
|
|
|
|
|
|
|
|
|
|
|
@ -98,6 +135,7 @@ fn generate_snuggle(left: String, right: String, desc: Desc) -> Element {
|
|
|
|
left_group2.attributes.insert("mask".to_string(), "url(#snuggle-mask)".to_string());
|
|
|
|
left_group2.attributes.insert("mask".to_string(), "url(#snuggle-mask)".to_string());
|
|
|
|
left_group2.children.push(XMLNode::Element(left_group));
|
|
|
|
left_group2.children.push(XMLNode::Element(left_group));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// == Fill in root element ==
|
|
|
|
let mut res = Element::new("svg");
|
|
|
|
let mut res = Element::new("svg");
|
|
|
|
res.attributes.insert("xmlns".to_string(), "http://www.w3.org/2000/svg".to_string());
|
|
|
|
res.attributes.insert("xmlns".to_string(), "http://www.w3.org/2000/svg".to_string());
|
|
|
|
res.attributes.insert("version".to_string(), "1.1".to_string());
|
|
|
|
res.attributes.insert("version".to_string(), "1.1".to_string());
|
|
|
@ -110,15 +148,51 @@ fn generate_snuggle(left: String, right: String, desc: Desc) -> Element {
|
|
|
|
res
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Increases the `stroke-width` of any drawn element by `amount`.
|
|
|
|
|
|
|
|
/// If the element has no stroke but has a filling, then it is considered to have a zero stroke width
|
|
|
|
|
|
|
|
fn bolden(amount: f64, xml: &mut Element) {
|
|
|
|
|
|
|
|
if let Some(stroke_width) = xml.attributes.get_mut("stroke-width") {
|
|
|
|
|
|
|
|
if let Ok(parsed) = stroke_width.parse::<f64>() {
|
|
|
|
|
|
|
|
*stroke_width = format!("{}", parsed + amount);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if xml.attributes.contains_key("fill") {
|
|
|
|
|
|
|
|
xml.attributes.insert("stroke-width", amount.to_string());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if let Some(style) = xml.attributes.get_mut("style") {
|
|
|
|
|
|
|
|
let mut new_style = String::new();
|
|
|
|
|
|
|
|
let mut stroke_width = None;
|
|
|
|
|
|
|
|
for (name, value) in parse::parse_css(style) {
|
|
|
|
|
|
|
|
if name == "stroke-width" {
|
|
|
|
|
|
|
|
stroke_width = value.parse::<f64>().ok();
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if name == "fill" && stroke_width.is_none() {
|
|
|
|
|
|
|
|
stroke_width = Some(0.0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
write!(&mut new_style, "{}:{};", name, value).unwrap();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if let Some(stroke_width) = stroke_width {
|
|
|
|
|
|
|
|
write!(&mut new_style, "stroke-width: {};", stroke_width + amount).unwrap();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*style = new_style;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for child in xml.children.iter_mut() {
|
|
|
|
|
|
|
|
if let XMLNode::Element(ref mut child) = child {
|
|
|
|
|
|
|
|
bolden(amount, child);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Parser, Clone)]
|
|
|
|
#[derive(Parser, Clone)]
|
|
|
|
#[clap(author, version, about, long_about = None)]
|
|
|
|
#[clap(author, version, about, long_about = None)]
|
|
|
|
struct Args {
|
|
|
|
struct Args {
|
|
|
|
#[clap(value_parser)]
|
|
|
|
/// Path to the description
|
|
|
|
input_left: PathBuf,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[clap(value_parser)]
|
|
|
|
|
|
|
|
input_right: PathBuf,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[clap(short, long, value_parser)]
|
|
|
|
#[clap(short, long, value_parser)]
|
|
|
|
desc: PathBuf,
|
|
|
|
desc: PathBuf,
|
|
|
|
|
|
|
|
|
|
|
@ -126,13 +200,14 @@ struct Args {
|
|
|
|
#[clap(short, long, value_parser, default_value = "false")]
|
|
|
|
#[clap(short, long, value_parser, default_value = "false")]
|
|
|
|
no_resize: bool,
|
|
|
|
no_resize: bool,
|
|
|
|
|
|
|
|
|
|
|
|
#[clap(long, value_parser)]
|
|
|
|
|
|
|
|
name: String,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Dimension to export the images as; can be specified multiple times
|
|
|
|
/// Dimension to export the images as; can be specified multiple times
|
|
|
|
#[clap(long, value_parser)]
|
|
|
|
#[clap(long, value_parser)]
|
|
|
|
dim: Vec<u32>,
|
|
|
|
dim: Vec<u32>,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Input directory, containing the svgs to combine
|
|
|
|
|
|
|
|
#[clap(short, long, value_parser)]
|
|
|
|
|
|
|
|
input_dir: Option<PathBuf>,
|
|
|
|
|
|
|
|
|
|
|
|
/// Output directory
|
|
|
|
/// Output directory
|
|
|
|
#[clap(short, long, value_parser)]
|
|
|
|
#[clap(short, long, value_parser)]
|
|
|
|
output_dir: Option<PathBuf>,
|
|
|
|
output_dir: Option<PathBuf>,
|
|
|
|