Files
pixelfoo-apps/src/bin/bitart/main.rs
2026-03-17 21:55:16 +01:00

183 lines
5.1 KiB
Rust

use std::collections::HashMap;
use std::env::args;
use std::io::stdout;
use std::io::Write;
use std::thread::sleep;
use std::time::Duration;
use rand::rng;
use rand::Rng;
use lowdim::bb2d;
use lowdim::p2d;
use lowdim::Array2d;
use lowdim::BBox2d;
use lowdim::Point2d;
use pixelfoo_apps::color::Color;
mod expression;
use expression::Env;
use expression::RandomExpressionBuilder;
use expression::Variable;
fn random_color<R: Rng>(rng: &mut R) -> Color {
let a = 255;
let b = rng.random::<u8>();
let c = 0;
let (r, g, b) = match rng.random_range(0..6) {
0 => (a, b, c),
1 => (a, c, b),
2 => (b, a, c),
3 => (b, c, a),
4 => (c, a, b),
5 => (c, b, a),
_ => unreachable!(),
};
Color::new(r, g, b)
}
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
enum Square {
Common,
Uncommon,
}
#[derive(Clone, Debug)]
struct Board {
color: Color,
map: Array2d<i64, Square>,
}
impl Board {
pub fn with(color: Color, bbox: BBox2d, f: impl FnMut(Point2d) -> Square) -> Board {
let map = Array2d::with(bbox, f);
Board { color, map }
}
pub fn bbox(&self) -> BBox2d {
self.map.bbox()
}
}
fn send<T: Write>(
w: &mut T,
old_board: &Board,
new_board: &Board,
alpha: f64,
) -> std::io::Result<()> {
for y in old_board.bbox().y_range() {
for x in old_board.bbox().x_range() {
let old_color = match old_board.map[p2d(x, y)] {
Square::Uncommon => Color::black(),
Square::Common => old_board.color,
};
let new_color = match new_board.map[p2d(x, y)] {
Square::Uncommon => Color::black(),
Square::Common => new_board.color,
};
let color = old_color.interpolate(new_color, alpha);
w.write_all(&color.rgb())?;
}
}
w.flush()
}
const DEFAULT_ARG: u64 = 60;
fn main() -> std::io::Result<()> {
let args = args().collect::<Vec<_>>();
eprintln!("executing {}", args[0]);
let x_size = args[1].parse::<i64>().unwrap();
let y_size = args[2].parse::<i64>().unwrap();
let arg = if let Some(s) = args.get(3) {
s.parse::<u64>().unwrap_or(DEFAULT_ARG)
} else {
DEFAULT_ARG
};
eprintln!("screen size {}x{}, arg {}", x_size, y_size, arg);
let mut rng = rng();
let bbox = bb2d(0..x_size, 0..y_size);
let min_percent = 30;
let max_percent = 70;
let frames_per_second = 25;
let delay = Duration::from_millis(1000 / frames_per_second);
let frame_seconds = if arg > 0 { arg } else { DEFAULT_ARG };
let frame_time_count = frame_seconds * frames_per_second;
let fade_time_count = (2 * frames_per_second).min(frame_time_count / 3);
let fade_alpha_step = 1.0 / (fade_time_count as f64);
let mut old_board = Board::with(Color::black(), bbox, |_p| Square::Uncommon);
let mut new_board = Board::with(Color::black(), bbox, |_p| Square::Uncommon);
let mut time_count = frame_time_count;
loop {
if time_count >= frame_time_count {
time_count = 0;
// Pick a random expression.
loop {
let expression = RandomExpressionBuilder::build(&mut rng);
let values = Array2d::with(bbox, |p| {
let x = p.x();
let y = p.y();
let env = Env { x, y };
expression.eval(&env)
});
let mut histogram = HashMap::new();
for p in bbox {
let entry = histogram.entry(values[p]).or_insert(0);
*entry += 1;
}
// Find the most common value and its count.
let mut max_count = 0;
let mut max_count_value = 0;
for (value, count) in histogram {
if count > max_count {
max_count = count;
max_count_value = value;
}
}
let percent = 100 * max_count / bbox.area();
if expression.contains_var(Variable::X)
&& expression.contains_var(Variable::Y)
&& (min_percent..=max_percent).contains(&percent)
{
eprintln!("chose expression {expression}");
old_board = new_board;
let color = random_color(&mut rng);
new_board = Board::with(color, bbox, |p| {
// Use the `onebit` scheme for now.
if values[p] == max_count_value {
Square::Common
} else {
Square::Uncommon
}
});
break;
}
}
}
let alpha = ((time_count as f64) * fade_alpha_step).min(1.0);
let mut buf = Vec::with_capacity((x_size * y_size * 3) as usize);
send(&mut buf, &old_board, &new_board, alpha)?;
stdout().write_all(&buf)?;
stdout().flush()?;
sleep(delay);
time_count += 1;
}
}