You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trac3r-rust/src/main.rs

152 lines
3.9 KiB

6 years ago
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(unused_mut)]
6 years ago
6 years ago
extern crate quick_xml;
extern crate sfml;
6 years ago
extern crate cgmath;
extern crate image;
6 years ago
mod slider;
6 years ago
mod timer;
mod input;
mod util;
6 years ago
6 years ago
use crate::timer::Timer;
use crate::input::Input;
use crate::slider::Slider;
6 years ago
extern crate nalgebra as na;
use image::{GenericImageView, GenericImage, DynamicImage, Pixel, SubImage};
6 years ago
use sfml::graphics::{
Color, RenderTarget, RenderWindow,
};
use sfml::window::{ Event, Key, Style};
use sfml::system::Vector2 as sfVec2;
fn surrounding_pixels(x: u32, y: u32, img: &DynamicImage) -> Vec<image::Rgba<u8>> {
let mut pixels: Vec<image::Rgba<u8>> = Vec::new();
if img.in_bounds(x+1, y+1) {pixels.push(img.get_pixel(x+1, y+1))}
if img.in_bounds(x+1, y) {pixels.push(img.get_pixel(x+1, y))}
if img.in_bounds(x, y+1) {pixels.push(img.get_pixel(x, y+1))}
6 years ago
if x > 0 {
if img.in_bounds(x-1, y+1) {pixels.push(img.get_pixel(x-1, y+1))}
if img.in_bounds(x-1, y) {pixels.push(img.get_pixel(x-1, y))}
}
6 years ago
if y > 0 {
if img.in_bounds(x+1, y-1) {pixels.push(img.get_pixel(x+1, y-1))}
if img.in_bounds(x, y-1) {pixels.push(img.get_pixel(x, y-1))}
if x > 0 {
if img.in_bounds(x - 1, y - 1) { pixels.push(img.get_pixel(x - 1, y - 1)) }
}
}
6 years ago
pixels
}
6 years ago
fn main() {
6 years ago
let mut img = image::open("test.jpg").unwrap();
let xy = img.dimensions();
6 years ago
println!("Starting");
for x in 0..xy.0 {
for y in 0..xy.1 {
let mut pixel = img.get_pixel(x, y);
let v = surrounding_pixels(x, y, &img);
let mut avg = v.first().unwrap().clone();
for p in v {
let r: u16 = (avg.data[0] as u16 + p.data[0] as u16);
let g: u16 = (avg.data[1] as u16 + p.data[1] as u16);
let b: u16 = (avg.data[2] as u16 + p.data[2] as u16);
let a: u16 = (avg.data[3] as u16 + p.data[3] as u16);
avg.data[0] = (r/2) as u8;
avg.data[1] = (g/2) as u8;
avg.data[2] = (b/2) as u8;
avg.data[3] = (a/2) as u8;
}
pixel.data[0] = avg.data[0];
pixel.data[1] = avg.data[1];
pixel.data[2] = avg.data[2];
pixel.data[3] = avg.data[3];
img.put_pixel(x, y, pixel);
}
}
println!("Ending");
img.save("fractal.png").unwrap();
6 years ago
let mut window = RenderWindow::new(
7 years ago
(512, 512),
6 years ago
"Custom drawable",
Style::CLOSE,
&Default::default(),
);
6 years ago
let mut timer = Timer::new();
let mut input = Input::new();
6 years ago
let mut slider = Slider::new(40.0, None);
6 years ago
let step_size: f32 = 0.005;
6 years ago
let mut elapsed_time: f32;
let mut delta_time: f32;
6 years ago
let mut accumulator_time: f32 = 0.0;
6 years ago
let mut current_time: f32 = timer.elap_time();
6 years ago
while window.is_open() {
6 years ago
while let Some(event) = window.poll_event() {
match event {
6 years ago
Event::Closed => return,
Event::KeyPressed { code, .. } => {
if code == Key::Escape {
return;
}
}
6 years ago
_ => {}
}
6 years ago
input.ingest(&event)
}
if input.is_held(Key::W) {
}
if input.is_held(Key::A) {
}
if input.is_held(Key::S) {
}
if input.is_held(Key::D) {
}
6 years ago
elapsed_time = timer.elap_time();
6 years ago
delta_time = elapsed_time - current_time;
current_time = elapsed_time;
if delta_time > 0.02 {
delta_time = 0.02;
6 years ago
}
6 years ago
accumulator_time += delta_time;
6 years ago
6 years ago
while (accumulator_time - step_size) >= step_size {
accumulator_time -= step_size;
}
6 years ago
6 years ago
window.clear(&Color::BLACK);
7 years ago
window.draw(&slider);
6 years ago
window.display();
6 years ago
}
6 years ago
}