aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <silas@exvacuum.dev>2024-08-25 02:22:37 -0400
committerLibravatar Silas Bartha <silas@exvacuum.dev>2024-08-25 02:22:37 -0400
commitaddcfff12a76f861e07d844eabfa349e2f4014c1 (patch)
treedf591c562fc39909bd5c13c8fa1b1ae8004bf08a /src/util.rs
Initial Commitv0.1.0
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs
new file mode 100644
index 0000000..bac2a4e
--- /dev/null
+++ b/src/util.rs
@@ -0,0 +1,88 @@
+//! Utilities related to the dialog widget display
+
+use bevy_terminal_display::ratatui::style::{Color, Style, Stylize};
+use yarnspinner::runtime::MarkupValue;
+use zalgo::{Generator, GeneratorArgs, ZalgoSize};
+
+/// Splits a marked-up yarnspinner line into sections of text and their corresponding ratatui styles
+pub fn style_line(line: &yarnspinner::runtime::Line) -> Vec<(String, Style)> {
+ if line.attributes.is_empty() {
+ return vec![(line.text_without_character_name(), Style::new())];
+ }
+
+ let mut line_segments = Vec::<(String, Style)>::new();
+ let mut attributes = line.attributes.clone();
+ attributes.sort_by_key(|attribute| attribute.position);
+ line_segments.push((
+ line.text[..attributes[0].position].to_string(),
+ Style::new(),
+ ));
+ for (i, attribute) in attributes.iter().enumerate() {
+ let mut attrib_text = line.text_for_attribute(&attribute).to_string();
+ let mut style = Style::new();
+ match attribute.name.as_str() {
+ "style" => {
+ for (property_name, property_value) in attribute.properties.iter() {
+ match property_name.as_str() {
+ "bold" => {
+ if let MarkupValue::Bool(value) = property_value {
+ if *value {
+ style = style.bold();
+ }
+ }
+ }
+ "italic" => {
+ if let MarkupValue::Bool(value) = property_value {
+ if *value {
+ style = style.italic();
+ }
+ }
+ }
+ "color" => {
+ if let MarkupValue::Integer(value) = property_value {
+ style = style.fg(Color::Indexed(*value as u8))
+ }
+ }
+ "zalgo" => {
+ if let MarkupValue::Bool(value) = property_value {
+ if *value {
+ let mut generator = Generator::new();
+ let mut out = String::new();
+ let args =
+ GeneratorArgs::new(true, true, true, ZalgoSize::Mini);
+ generator.gen(&attrib_text, &mut out, &args);
+ attrib_text = out;
+ }
+ }
+ }
+ "bg" => {
+ if let MarkupValue::Integer(value) = property_value {
+ style = style.bg(Color::Indexed(*value as u8))
+ }
+ }
+ _ => (),
+ }
+ }
+ }
+ _ => (),
+ }
+ if attribute.name != "character" {
+ line_segments.push((attrib_text, style))
+ }
+
+ if let Some(next_attribute) = attributes.get(i + 1) {
+ line_segments.push((
+ line.text[attribute.position + attribute.length..next_attribute.position]
+ .to_string(),
+ Style::new(),
+ ));
+ }
+ }
+ let last_attribute = attributes.last().unwrap();
+ line_segments.push((
+ line.text[last_attribute.position + last_attribute.length..].to_string(),
+ Style::new(),
+ ));
+
+ line_segments
+}