217 lines
6.3 KiB
Rust
217 lines
6.3 KiB
Rust
/*
|
|
This program is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the Free
|
|
Software Foundation; either version 3 of the License, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program. If not, see https://www.gnu.org/licenses/.
|
|
*/
|
|
use rand::Rng;
|
|
use std::{f64::consts::PI, vec};
|
|
|
|
use clap::Parser;
|
|
|
|
pub struct Image {
|
|
pub height: u16,
|
|
pub width: u16,
|
|
pub frames: u16,
|
|
pub pixels: Vec<u8>,
|
|
point_data: Vec<PointData>,
|
|
cross_distance: f64,
|
|
ellipses: Vec<Ellipse>,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct Ellipse {
|
|
centre: Point,
|
|
height: f64,
|
|
width: f64,
|
|
angle: f64,
|
|
curr_point: Point,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct Point {
|
|
x: i64,
|
|
y: i64,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct PointData {
|
|
min_dist: f64,
|
|
closest_point: Point,
|
|
}
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
pub struct Args {
|
|
/// width of the image
|
|
#[clap(short, long, value_parser)]
|
|
pub width: u16,
|
|
|
|
/// height of the image
|
|
#[clap(short, long, value_parser)]
|
|
pub height: u16,
|
|
|
|
/// number of gif frames
|
|
#[clap(short, long, value_parser)]
|
|
pub frames: u16,
|
|
|
|
/// number of cells to generate
|
|
#[clap(short, long, value_parser)]
|
|
pub num_cells: usize,
|
|
|
|
/// output file
|
|
#[clap(short, long, value_parser)]
|
|
pub out: String,
|
|
}
|
|
|
|
impl Args {
|
|
pub fn read() -> Self {
|
|
Args::parse()
|
|
}
|
|
}
|
|
|
|
impl Image {
|
|
pub fn create_from_args(args: &Args) -> Self {
|
|
Image {
|
|
height: args.height,
|
|
width: args.width,
|
|
frames: args.frames,
|
|
pixels: vec![0; args.height as usize * args.width as usize * 3],
|
|
point_data: vec![
|
|
PointData {
|
|
min_dist: 0.0,
|
|
closest_point: Point { x: 0, y: 0 }
|
|
};
|
|
args.height as usize * args.width as usize
|
|
],
|
|
cross_distance: Point { x: 0, y: 0 }.distance(&Point {
|
|
x: args.width as i64 - 1,
|
|
y: args.height as i64 - 1,
|
|
}),
|
|
ellipses: generate_points(args.width, args.height, args.num_cells),
|
|
}
|
|
}
|
|
|
|
pub fn fill_canvas(&mut self, frame: u16) {
|
|
self.generate_noise(frame);
|
|
}
|
|
|
|
fn generate_noise(&mut self, frame: u16) {
|
|
let mut max_dist = 0.0;
|
|
|
|
let pos = 2.0 * PI * frame as f64 / self.frames as f64;
|
|
for ellipse in &mut self.ellipses {
|
|
let radius = (ellipse.height * ellipse.width)
|
|
/ (ellipse.width * ellipse.width * (ellipse.angle + pos).sin()
|
|
+ ellipse.height * ellipse.height * (ellipse.angle + pos).sin())
|
|
.sqrt();
|
|
ellipse.curr_point.x = (ellipse.centre.x as f64 + radius * pos.sin()) as i64;
|
|
ellipse.curr_point.y = (ellipse.centre.y as f64 + radius * pos.cos()) as i64;
|
|
}
|
|
|
|
// Get distance and nearest point for each point on the canvas
|
|
for y in 0..self.height {
|
|
for x in 0..self.width {
|
|
let index = y as usize * self.width as usize + x as usize;
|
|
self.point_data[index] = PointData::get_point_data(
|
|
self,
|
|
Point {
|
|
x: x as i64,
|
|
y: y as i64,
|
|
},
|
|
);
|
|
max_dist = f64::max(max_dist, self.point_data[index].min_dist);
|
|
}
|
|
}
|
|
|
|
// normalize distances to [0,1]
|
|
for y in 0..self.height {
|
|
for x in 0..self.width {
|
|
let index = y as usize * self.width as usize + x as usize;
|
|
self.point_data[index].min_dist /= max_dist;
|
|
}
|
|
}
|
|
|
|
// write pixels
|
|
for y in 0..self.height {
|
|
for x in 0..self.width {
|
|
let index = y as usize * self.width as usize + x as usize;
|
|
let val = 0xFF - (0xFF as f64 * self.point_data[index].min_dist) as u8;
|
|
self.set_pixel(
|
|
0xCC,
|
|
val,
|
|
val,
|
|
Point {
|
|
x: x as i64,
|
|
y: y as i64,
|
|
},
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
fn set_pixel(&mut self, r: u8, g: u8, b: u8, p: Point) {
|
|
self.pixels[3 * (self.width as usize * p.y as usize + p.x as usize)] = r;
|
|
self.pixels[3 * (self.width as usize * p.y as usize + p.x as usize) + 1] = g;
|
|
self.pixels[3 * (self.width as usize * p.y as usize + p.x as usize) + 2] = b;
|
|
}
|
|
}
|
|
|
|
impl PointData {
|
|
fn get_point_data(image: &Image, p: Point) -> Self {
|
|
let mut pd = PointData {
|
|
min_dist: image.cross_distance,
|
|
closest_point: Point { x: 0, y: 0 },
|
|
};
|
|
|
|
for ellipse in &image.ellipses {
|
|
let d = p.distance(&ellipse.curr_point);
|
|
if d < pd.min_dist {
|
|
pd.min_dist = d;
|
|
pd.closest_point = ellipse.curr_point.clone();
|
|
}
|
|
}
|
|
|
|
pd
|
|
}
|
|
}
|
|
|
|
impl Point {
|
|
fn distance(&self, other: &Point) -> f64 {
|
|
let x_dist: f64 = other.x as f64 - self.x as f64;
|
|
let y_dist: f64 = other.y as f64 - self.y as f64;
|
|
|
|
(x_dist * x_dist + y_dist * y_dist).sqrt()
|
|
}
|
|
}
|
|
|
|
fn generate_points(width: u16, height: u16, num_cells: usize) -> Vec<Ellipse> {
|
|
let mut ellipses = vec![
|
|
Ellipse {
|
|
centre: Point { x: 0, y: 0 },
|
|
height: 0.0,
|
|
width: 0.0,
|
|
angle: 0.0,
|
|
curr_point: Point { x: 0, y: 0 }
|
|
};
|
|
num_cells
|
|
];
|
|
|
|
for ellipse in &mut ellipses {
|
|
ellipse.centre.x = rand::thread_rng().gen_range(0..width) as i64;
|
|
ellipse.centre.y = rand::thread_rng().gen_range(0..height) as i64;
|
|
ellipse.height = rand::thread_rng().gen_range(1.0..height as f64 / 5.0);
|
|
ellipse.width = rand::thread_rng().gen_range(1.0..width as f64 / 5.0);
|
|
ellipse.angle = rand::thread_rng().gen_range(0.0..2.0 * PI);
|
|
}
|
|
|
|
ellipses
|
|
}
|