reorganized code to allow the four sacred aliases
This commit is contained in:
parent
77d3175cd3
commit
0ee1ea007b
|
@ -4,6 +4,7 @@ name = "kijetesantakaluotokieni"
|
|||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
about = "kijetesantakalu toki tawa ilo sona sina"
|
||||
default-run = "kijetesantakaluotokieni"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
|
5
src/bin/kijesay.rs
Normal file
5
src/bin/kijesay.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use kijetesantakaluotokieni::Modes;
|
||||
fn main() {
|
||||
println!("this worked!");
|
||||
kijetesantakaluotokieni::run(Modes::Say);
|
||||
}
|
5
src/bin/kijetesantakaluopilineni.rs
Normal file
5
src/bin/kijetesantakaluopilineni.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use kijetesantakaluotokieni::Modes;
|
||||
fn main() {
|
||||
println!("this worked!");
|
||||
kijetesantakaluotokieni::run(Modes::Think);
|
||||
}
|
5
src/bin/kijethink.rs
Normal file
5
src/bin/kijethink.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use kijetesantakaluotokieni::Modes;
|
||||
fn main() {
|
||||
println!("this worked!");
|
||||
kijetesantakaluotokieni::run(Modes::Think);
|
||||
}
|
290
src/lib.rs
Normal file
290
src/lib.rs
Normal file
|
@ -0,0 +1,290 @@
|
|||
mod bubbles;
|
||||
mod critters;
|
||||
mod kule;
|
||||
|
||||
use bubbles::*;
|
||||
use clap::Parser;
|
||||
use critters::*;
|
||||
use kule::Formats;
|
||||
use kule::FourBit;
|
||||
use std::io;
|
||||
use std::io::Read;
|
||||
use voca_rs::*;
|
||||
|
||||
#[derive(PartialEq, Eq)]
|
||||
pub enum Modes {
|
||||
Say,
|
||||
Think,
|
||||
}
|
||||
|
||||
pub fn run(mode: Modes) {
|
||||
let mut cli = Args::parse();
|
||||
if mode == Modes::Think {
|
||||
cli.pilin = true;
|
||||
}
|
||||
let mut text = String::new();
|
||||
let (critter_config, bubble_config);
|
||||
match cli.configs_from_arguments() {
|
||||
Err((s, e)) => {
|
||||
if cli.inli {
|
||||
println!("error:\n{}", e);
|
||||
} else {
|
||||
println!("pakala a!\n{}", s);
|
||||
}
|
||||
return;
|
||||
}
|
||||
Ok((c, b)) => {
|
||||
(critter_config, bubble_config) = (c, b);
|
||||
}
|
||||
}
|
||||
if cli.seme {
|
||||
match critters::list_files() {
|
||||
Err((s, e)) => {
|
||||
if cli.inli {
|
||||
println!("error: {}", e)
|
||||
} else {
|
||||
println!("pakala a!\n{}", s)
|
||||
}
|
||||
}
|
||||
Ok(files) => {
|
||||
print!("{}", files.join(" "))
|
||||
}
|
||||
}
|
||||
return;
|
||||
} else if !cli.text.is_empty() {
|
||||
text = cli.text.join(" ")
|
||||
} else {
|
||||
io::stdin()
|
||||
.read_to_string(&mut text)
|
||||
.expect("failed to read input");
|
||||
}
|
||||
output(&text, critter_config, bubble_config);
|
||||
}
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
#[clap(author, version, about, long_about = None)]
|
||||
struct Args {
|
||||
#[clap(short = 'e', long, help = "o ante e sitelen lukin")]
|
||||
lukin: Option<String>,
|
||||
|
||||
#[clap(short = 'T', long, help = "o pana e uta tawa kijetesantakalu")]
|
||||
uta: Option<String>,
|
||||
|
||||
#[clap(short = 'o', long, help = "o pana e ijo tawa kijetesantakalu")]
|
||||
ijo: Option<String>,
|
||||
|
||||
#[clap(short = 'i', long, help = "o ante e palisa pi poki toki")]
|
||||
linja: Option<String>,
|
||||
|
||||
#[clap(short = 'u', long, help = "o ante e poki toki")]
|
||||
poki: Option<String>,
|
||||
|
||||
#[clap(short = 'f', long, help = "o kepeken sijelo ante")]
|
||||
nimi: Option<String>,
|
||||
|
||||
#[clap(
|
||||
short = 'W',
|
||||
long,
|
||||
default_value = "40",
|
||||
help = "o pakala e toki lon sitelen nanpa ni"
|
||||
)]
|
||||
pakala: usize,
|
||||
|
||||
#[clap(short = 'n', long, help = "o pakala ala e toki")]
|
||||
pakala_ala: bool,
|
||||
|
||||
#[clap(short = 'k', long, help = "o ante e kule kijetesantakalu")]
|
||||
kule: Vec<String>,
|
||||
|
||||
#[clap(short = 'l', long, help = "sijelo seme li lon?")]
|
||||
seme: bool,
|
||||
|
||||
// implementation of classic cowsay flags
|
||||
#[clap(short = 'b', long = "o-sama")]
|
||||
ilo: bool,
|
||||
|
||||
#[clap(short = 'd', long)]
|
||||
moli: bool,
|
||||
|
||||
#[clap(short = 'g', long)]
|
||||
wile_mani: bool,
|
||||
|
||||
#[clap(short = 'p', long)]
|
||||
monsuta: bool,
|
||||
|
||||
#[clap(short = 's', long)]
|
||||
kasi_nasa: bool,
|
||||
|
||||
#[clap(short = 't', long)]
|
||||
lape: bool,
|
||||
|
||||
#[clap(short = 'w', long)]
|
||||
wawa: bool,
|
||||
|
||||
#[clap(short = 'y', long)]
|
||||
lili: bool,
|
||||
|
||||
#[clap(short = 'z', long)]
|
||||
suwi: bool,
|
||||
|
||||
#[clap(short = 'P', long)]
|
||||
pilin: bool,
|
||||
|
||||
#[clap(short = 'I', long)]
|
||||
inli: bool,
|
||||
|
||||
// optional text input
|
||||
text: Vec<String>,
|
||||
}
|
||||
|
||||
impl Args {
|
||||
fn configs_from_arguments(&self) -> Result<(CritterConfig, BubbleConfig), (String, String)> {
|
||||
let mut eyes = self.lukin.clone();
|
||||
let mut tongue = self.uta.clone();
|
||||
let mut line = self.linja.clone();
|
||||
let object = self.ijo.clone();
|
||||
let mut format = if self.kule.is_empty() {
|
||||
kule::reset()
|
||||
} else {
|
||||
String::new()
|
||||
};
|
||||
let name = self.nimi.clone();
|
||||
|
||||
let mut border = self.poki.clone();
|
||||
|
||||
if self.moli {
|
||||
eyes = Some("xx".to_string());
|
||||
tongue = Some("U".to_string());
|
||||
} else if self.wile_mani {
|
||||
eyes = Some("$$".to_string());
|
||||
} else if self.monsuta {
|
||||
eyes = Some("@@".to_string());
|
||||
} else if self.kasi_nasa {
|
||||
eyes = Some("**".to_string());
|
||||
tongue = Some("U".to_string());
|
||||
} else if self.lape {
|
||||
eyes = Some("--".to_string());
|
||||
line = Some("zZz".to_string());
|
||||
border = Some("_()-".to_string());
|
||||
} else if self.wawa {
|
||||
eyes = Some("OO".to_string());
|
||||
} else if self.lili {
|
||||
eyes = Some("..".to_string());
|
||||
} else if self.suwi {
|
||||
eyes = Some("^^".to_string());
|
||||
}
|
||||
if self.pilin {
|
||||
line = Some("oOo".to_string());
|
||||
border = Some("_()-".to_string());
|
||||
}
|
||||
|
||||
for i in &self.kule {
|
||||
let lower = query::is_lowercase(&i);
|
||||
let lower_i = case::lower_case(&i);
|
||||
format.push_str(&match lower_i.as_str() {
|
||||
"walo" => {
|
||||
if lower {
|
||||
FourBit::White.escape(false)
|
||||
} else {
|
||||
FourBit::BrightWhite.escape(false)
|
||||
}
|
||||
}
|
||||
"pimeja" => {
|
||||
if lower {
|
||||
FourBit::Black.escape(false)
|
||||
} else {
|
||||
FourBit::BrightBlack.escape(false)
|
||||
}
|
||||
}
|
||||
"laso" => {
|
||||
if lower {
|
||||
FourBit::Cyan.escape(false)
|
||||
} else {
|
||||
FourBit::BrightCyan.escape(false)
|
||||
}
|
||||
}
|
||||
"jelo" => {
|
||||
if lower {
|
||||
FourBit::Yellow.escape(false)
|
||||
} else {
|
||||
FourBit::BrightYellow.escape(false)
|
||||
}
|
||||
}
|
||||
"loje" => {
|
||||
if lower {
|
||||
FourBit::Red.escape(false)
|
||||
} else {
|
||||
FourBit::BrightRed.escape(false)
|
||||
}
|
||||
}
|
||||
"kasi" => {
|
||||
if lower {
|
||||
FourBit::Green.escape(false)
|
||||
} else {
|
||||
FourBit::BrightGreen.escape(false)
|
||||
}
|
||||
}
|
||||
"sewi" => {
|
||||
if lower {
|
||||
FourBit::Blue.escape(false)
|
||||
} else {
|
||||
FourBit::BrightBlue.escape(false)
|
||||
}
|
||||
}
|
||||
"unu" => {
|
||||
if lower {
|
||||
FourBit::Magenta.escape(false)
|
||||
} else {
|
||||
FourBit::BrightMagenta.escape(false)
|
||||
}
|
||||
}
|
||||
"suli" => Formats::Bright.escape(false),
|
||||
"wawa" => Formats::Bright.escape(false),
|
||||
"len" => Formats::Dim.escape(false),
|
||||
"mamamije" => Formats::Italic.escape(false),
|
||||
"sike" => Formats::Blink.escape(false),
|
||||
_ => String::new(),
|
||||
})
|
||||
}
|
||||
let mut critter_config = CritterConfig::config_from_string(
|
||||
&eyes,
|
||||
&tongue,
|
||||
&line,
|
||||
&object,
|
||||
&Some(format),
|
||||
&name,
|
||||
)?;
|
||||
// borg mode uses special formatting so it needs to happen after the critters been made
|
||||
if self.ilo {
|
||||
critter_config.left_eye = format!(
|
||||
"{}o{}{}",
|
||||
Formats::Dim.escape(false),
|
||||
kule::reset(),
|
||||
critter_config.format
|
||||
)
|
||||
.to_string();
|
||||
critter_config.right_eye = format!(
|
||||
"{}{}{}o{}{}",
|
||||
Formats::Blink.escape(false),
|
||||
Formats::Bright.escape(false),
|
||||
FourBit::BrightRed.escape(false),
|
||||
kule::reset(),
|
||||
critter_config.format
|
||||
)
|
||||
.to_string();
|
||||
}
|
||||
let bubble_config = BubbleConfig::config_from_string(
|
||||
critter_config.template.anchor,
|
||||
self.pakala,
|
||||
self.pakala_ala,
|
||||
&border,
|
||||
);
|
||||
|
||||
Ok((critter_config, bubble_config))
|
||||
}
|
||||
}
|
||||
|
||||
fn output(text: &str, critter_config: CritterConfig, bubble_config: BubbleConfig) -> () {
|
||||
print!("{}", bubble_config.bubble_from_text(text));
|
||||
println!("{}{}", critter_config.format_critter(), kule::reset());
|
||||
}
|
289
src/main.rs
289
src/main.rs
|
@ -1,288 +1,5 @@
|
|||
/*
|
||||
TO DO
|
||||
- kijefiles
|
||||
- kijepath
|
||||
- other aminals
|
||||
*/
|
||||
|
||||
mod bubbles;
|
||||
mod critters;
|
||||
mod kule;
|
||||
|
||||
use bubbles::*;
|
||||
use clap::Parser;
|
||||
use critters::*;
|
||||
use kule::Formats;
|
||||
use kule::FourBit;
|
||||
use std::io;
|
||||
use std::io::Read;
|
||||
use voca_rs::*;
|
||||
|
||||
use kijetesantakaluotokieni::Modes;
|
||||
fn main() {
|
||||
let cli = Args::parse();
|
||||
let mut text = String::new();
|
||||
let (critter_config, bubble_config);
|
||||
match cli.configs_from_arguments() {
|
||||
Err((s, e)) => {
|
||||
if cli.inli {
|
||||
println!("error:\n{}", e);
|
||||
} else {
|
||||
println!("pakala a!\n{}", s);
|
||||
}
|
||||
return;
|
||||
}
|
||||
Ok((c, b)) => {
|
||||
(critter_config, bubble_config) = (c, b);
|
||||
}
|
||||
}
|
||||
if cli.seme {
|
||||
match critters::list_files() {
|
||||
Err((s, e)) => {
|
||||
if cli.inli {
|
||||
println!("error: {}", e)
|
||||
} else {
|
||||
println!("pakala a!\n{}", s)
|
||||
}
|
||||
}
|
||||
Ok(files) => {
|
||||
print!("{}", files.join(" "))
|
||||
}
|
||||
}
|
||||
return;
|
||||
} else if !cli.text.is_empty() {
|
||||
text = cli.text.join(" ")
|
||||
} else {
|
||||
io::stdin()
|
||||
.read_to_string(&mut text)
|
||||
.expect("failed to read input");
|
||||
}
|
||||
output(&text, critter_config, bubble_config);
|
||||
}
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
#[clap(author, version, about, long_about = None)]
|
||||
struct Args {
|
||||
#[clap(short = 'e', long, help = "o ante e sitelen lukin")]
|
||||
lukin: Option<String>,
|
||||
|
||||
#[clap(short = 'T', long, help = "o pana e uta tawa kijetesantakalu")]
|
||||
uta: Option<String>,
|
||||
|
||||
#[clap(short = 'o', long, help = "o pana e ijo tawa kijetesantakalu")]
|
||||
ijo: Option<String>,
|
||||
|
||||
#[clap(short = 'i', long, help = "o ante e palisa pi poki toki")]
|
||||
linja: Option<String>,
|
||||
|
||||
#[clap(short = 'u', long, help = "o ante e poki toki")]
|
||||
poki: Option<String>,
|
||||
|
||||
#[clap(short = 'f', long, help = "o kepeken sijelo ante")]
|
||||
nimi: Option<String>,
|
||||
|
||||
#[clap(
|
||||
short = 'W',
|
||||
long,
|
||||
default_value = "40",
|
||||
help = "o pakala e toki lon sitelen nanpa ni"
|
||||
)]
|
||||
pakala: usize,
|
||||
|
||||
#[clap(short = 'n', long, help = "o pakala ala e toki")]
|
||||
pakala_ala: bool,
|
||||
|
||||
#[clap(short = 'k', long, help = "o ante e kule kijetesantakalu")]
|
||||
kule: Vec<String>,
|
||||
|
||||
#[clap(short = 'l', long, help = "sijelo seme li lon?")]
|
||||
seme: bool,
|
||||
|
||||
// implementation of classic cowsay flags
|
||||
#[clap(short = 'b', long = "o-sama")]
|
||||
ilo: bool,
|
||||
|
||||
#[clap(short = 'd', long)]
|
||||
moli: bool,
|
||||
|
||||
#[clap(short = 'g', long)]
|
||||
wile_mani: bool,
|
||||
|
||||
#[clap(short = 'p', long)]
|
||||
monsuta: bool,
|
||||
|
||||
#[clap(short = 's', long)]
|
||||
kasi_nasa: bool,
|
||||
|
||||
#[clap(short = 't', long)]
|
||||
lape: bool,
|
||||
|
||||
#[clap(short = 'w', long)]
|
||||
wawa: bool,
|
||||
|
||||
#[clap(short = 'y', long)]
|
||||
lili: bool,
|
||||
|
||||
#[clap(short = 'z', long)]
|
||||
suwi: bool,
|
||||
|
||||
#[clap(short = 'P', long)]
|
||||
pilin: bool,
|
||||
|
||||
#[clap(short = 'I', long)]
|
||||
inli: bool,
|
||||
|
||||
// optional text input
|
||||
text: Vec<String>,
|
||||
}
|
||||
|
||||
impl Args {
|
||||
fn configs_from_arguments(&self) -> Result<(CritterConfig, BubbleConfig), (String, String)> {
|
||||
let mut eyes = self.lukin.clone();
|
||||
let mut tongue = self.uta.clone();
|
||||
let mut line = self.linja.clone();
|
||||
let object = self.ijo.clone();
|
||||
let mut format = if self.kule.is_empty() {
|
||||
kule::reset()
|
||||
} else {
|
||||
String::new()
|
||||
};
|
||||
let name = self.nimi.clone();
|
||||
|
||||
let mut border = self.poki.clone();
|
||||
|
||||
if self.moli {
|
||||
eyes = Some("xx".to_string());
|
||||
tongue = Some("U".to_string());
|
||||
} else if self.wile_mani {
|
||||
eyes = Some("$$".to_string());
|
||||
} else if self.monsuta {
|
||||
eyes = Some("@@".to_string());
|
||||
} else if self.kasi_nasa {
|
||||
eyes = Some("**".to_string());
|
||||
tongue = Some("U".to_string());
|
||||
} else if self.lape {
|
||||
eyes = Some("--".to_string());
|
||||
line = Some("zZz".to_string());
|
||||
border = Some("_()-".to_string());
|
||||
} else if self.wawa {
|
||||
eyes = Some("OO".to_string());
|
||||
} else if self.lili {
|
||||
eyes = Some("..".to_string());
|
||||
} else if self.suwi {
|
||||
eyes = Some("^^".to_string());
|
||||
}
|
||||
if self.pilin {
|
||||
line = Some("oOo".to_string());
|
||||
border = Some("_()-".to_string());
|
||||
}
|
||||
|
||||
for i in &self.kule {
|
||||
let lower = query::is_lowercase(&i);
|
||||
let lower_i = case::lower_case(&i);
|
||||
format.push_str(&match lower_i.as_str() {
|
||||
"walo" => {
|
||||
if lower {
|
||||
FourBit::White.escape(false)
|
||||
} else {
|
||||
FourBit::BrightWhite.escape(false)
|
||||
}
|
||||
}
|
||||
"pimeja" => {
|
||||
if lower {
|
||||
FourBit::Black.escape(false)
|
||||
} else {
|
||||
FourBit::BrightBlack.escape(false)
|
||||
}
|
||||
}
|
||||
"laso" => {
|
||||
if lower {
|
||||
FourBit::Cyan.escape(false)
|
||||
} else {
|
||||
FourBit::BrightCyan.escape(false)
|
||||
}
|
||||
}
|
||||
"jelo" => {
|
||||
if lower {
|
||||
FourBit::Yellow.escape(false)
|
||||
} else {
|
||||
FourBit::BrightYellow.escape(false)
|
||||
}
|
||||
}
|
||||
"loje" => {
|
||||
if lower {
|
||||
FourBit::Red.escape(false)
|
||||
} else {
|
||||
FourBit::BrightRed.escape(false)
|
||||
}
|
||||
}
|
||||
"kasi" => {
|
||||
if lower {
|
||||
FourBit::Green.escape(false)
|
||||
} else {
|
||||
FourBit::BrightGreen.escape(false)
|
||||
}
|
||||
}
|
||||
"sewi" => {
|
||||
if lower {
|
||||
FourBit::Blue.escape(false)
|
||||
} else {
|
||||
FourBit::BrightBlue.escape(false)
|
||||
}
|
||||
}
|
||||
"unu" => {
|
||||
if lower {
|
||||
FourBit::Magenta.escape(false)
|
||||
} else {
|
||||
FourBit::BrightMagenta.escape(false)
|
||||
}
|
||||
}
|
||||
"suli" => Formats::Bright.escape(false),
|
||||
"wawa" => Formats::Bright.escape(false),
|
||||
"len" => Formats::Dim.escape(false),
|
||||
"mamamije" => Formats::Italic.escape(false),
|
||||
"sike" => Formats::Blink.escape(false),
|
||||
_ => String::new(),
|
||||
})
|
||||
}
|
||||
let mut critter_config = CritterConfig::config_from_string(
|
||||
&eyes,
|
||||
&tongue,
|
||||
&line,
|
||||
&object,
|
||||
&Some(format),
|
||||
&name,
|
||||
)?;
|
||||
// borg mode uses special formatting so it needs to happen after the critters been made
|
||||
if self.ilo {
|
||||
critter_config.left_eye = format!(
|
||||
"{}o{}{}",
|
||||
Formats::Dim.escape(false),
|
||||
kule::reset(),
|
||||
critter_config.format
|
||||
)
|
||||
.to_string();
|
||||
critter_config.right_eye = format!(
|
||||
"{}{}{}o{}{}",
|
||||
Formats::Blink.escape(false),
|
||||
Formats::Bright.escape(false),
|
||||
FourBit::BrightRed.escape(false),
|
||||
kule::reset(),
|
||||
critter_config.format
|
||||
)
|
||||
.to_string();
|
||||
}
|
||||
let bubble_config = BubbleConfig::config_from_string(
|
||||
critter_config.template.anchor,
|
||||
self.pakala,
|
||||
self.pakala_ala,
|
||||
&border,
|
||||
);
|
||||
|
||||
Ok((critter_config, bubble_config))
|
||||
}
|
||||
}
|
||||
|
||||
fn output(text: &str, critter_config: CritterConfig, bubble_config: BubbleConfig) -> () {
|
||||
print!("{}", bubble_config.bubble_from_text(text));
|
||||
println!("{}{}", critter_config.format_critter(), kule::reset());
|
||||
println!("this worked!");
|
||||
kijetesantakaluotokieni::run(Modes::Say);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue