mirror of
https://github.com/CrispyPin/julia-fractal-renderer.git
synced 2024-11-22 01:50:27 +01:00
allow adding colour presets
This commit is contained in:
parent
b4b82a3cc5
commit
12664a5817
2 changed files with 39 additions and 22 deletions
|
@ -8,6 +8,7 @@ pub struct RenderOptions {
|
||||||
pub width: usize,
|
pub width: usize,
|
||||||
pub height: usize,
|
pub height: usize,
|
||||||
pub unit_width: f64,
|
pub unit_width: f64,
|
||||||
|
#[serde(alias = "iterations")]
|
||||||
pub max_iter: u16,
|
pub max_iter: u16,
|
||||||
pub cx: f64,
|
pub cx: f64,
|
||||||
pub cy: f64,
|
pub cy: f64,
|
||||||
|
|
60
src/main.rs
60
src/main.rs
|
@ -41,8 +41,11 @@ struct JuliaGUI {
|
||||||
color: (u8, u8, u8),
|
color: (u8, u8, u8),
|
||||||
settings: RenderOptions,
|
settings: RenderOptions,
|
||||||
export_res_power: u8,
|
export_res_power: u8,
|
||||||
|
#[serde(alias = "export_iterations")]
|
||||||
export_max_iter: u16,
|
export_max_iter: u16,
|
||||||
preview_point: bool,
|
preview_point: bool,
|
||||||
|
#[serde(default = "default_color_presets")]
|
||||||
|
color_presets: Vec<(String, (u8, u8, u8))>,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
preview: Option<TextureHandle>,
|
preview: Option<TextureHandle>,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
|
@ -54,6 +57,8 @@ struct JuliaGUI {
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
settings_changed: bool,
|
settings_changed: bool,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
|
new_color_preset_name: String,
|
||||||
|
#[serde(skip)]
|
||||||
render_thread_handle: Option<JoinHandle<()>>,
|
render_thread_handle: Option<JoinHandle<()>>,
|
||||||
#[serde(skip)]
|
#[serde(skip)]
|
||||||
render_thread: Option<Sender<RenderJob>>,
|
render_thread: Option<Sender<RenderJob>>,
|
||||||
|
@ -63,6 +68,17 @@ struct JuliaGUI {
|
||||||
waiting: bool,
|
waiting: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn default_color_presets() -> Vec<(String, (u8, u8, u8))> {
|
||||||
|
vec![
|
||||||
|
("pink".into(), (8, 2, 6)),
|
||||||
|
("blue".into(), (2, 4, 8)),
|
||||||
|
("green".into(), (2, 8, 4)),
|
||||||
|
("salmon".into(), (8, 4, 4)),
|
||||||
|
("purple".into(), (5, 2, 11)),
|
||||||
|
("yellow".into(), (9, 6, 1)),
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
enum RenderJob {
|
enum RenderJob {
|
||||||
Render(PathBuf, RenderOptions, (u8, u8, u8)),
|
Render(PathBuf, RenderOptions, (u8, u8, u8)),
|
||||||
Exit,
|
Exit,
|
||||||
|
@ -72,6 +88,8 @@ impl Default for JuliaGUI {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
color: (12, 5, 10),
|
color: (12, 5, 10),
|
||||||
|
color_presets: default_color_presets(),
|
||||||
|
new_color_preset_name: "".into(),
|
||||||
preview: None,
|
preview: None,
|
||||||
settings: RenderOptions::default(),
|
settings: RenderOptions::default(),
|
||||||
preview_render_ms: 0.0,
|
preview_render_ms: 0.0,
|
||||||
|
@ -237,29 +255,20 @@ impl eframe::App for JuliaGUI {
|
||||||
ui.horizontal(|ui| {
|
ui.horizontal(|ui| {
|
||||||
ui.label("Colour (RGB)");
|
ui.label("Colour (RGB)");
|
||||||
ui.menu_button("presets", |ui| {
|
ui.menu_button("presets", |ui| {
|
||||||
if ui.button("pink").clicked() {
|
let mut to_remove = None;
|
||||||
self.color = (8, 2, 6);
|
for (i, (name, col)) in self.color_presets.iter().enumerate() {
|
||||||
self.settings_changed = true;
|
ui.horizontal(|ui| {
|
||||||
|
if ui.button(name).clicked() {
|
||||||
|
self.color = *col;
|
||||||
|
self.settings_changed = true;
|
||||||
|
}
|
||||||
|
if ui.button("x").clicked() {
|
||||||
|
to_remove = Some(i);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
if ui.button("blue").clicked() {
|
if let Some(i) = to_remove {
|
||||||
self.color = (2, 4, 8);
|
self.color_presets.remove(i);
|
||||||
self.settings_changed = true;
|
|
||||||
}
|
|
||||||
if ui.button("green").clicked() {
|
|
||||||
self.color = (2, 8, 4);
|
|
||||||
self.settings_changed = true;
|
|
||||||
}
|
|
||||||
if ui.button("salmon").clicked() {
|
|
||||||
self.color = (8, 4, 4);
|
|
||||||
self.settings_changed = true;
|
|
||||||
}
|
|
||||||
if ui.button("purple").clicked() {
|
|
||||||
self.color = (5, 2, 11);
|
|
||||||
self.settings_changed = true;
|
|
||||||
}
|
|
||||||
if ui.button("yellow").clicked() {
|
|
||||||
self.color = (9, 6, 1);
|
|
||||||
self.settings_changed = true;
|
|
||||||
}
|
}
|
||||||
if ui.button("randomise").clicked() {
|
if ui.button("randomise").clicked() {
|
||||||
self.color = (
|
self.color = (
|
||||||
|
@ -269,6 +278,13 @@ impl eframe::App for JuliaGUI {
|
||||||
);
|
);
|
||||||
self.settings_changed = true;
|
self.settings_changed = true;
|
||||||
}
|
}
|
||||||
|
ui.horizontal(|ui| {
|
||||||
|
ui.text_edit_singleline(&mut self.new_color_preset_name);
|
||||||
|
if ui.button("add").clicked() {
|
||||||
|
self.color_presets
|
||||||
|
.push((self.new_color_preset_name.clone(), self.color));
|
||||||
|
}
|
||||||
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
let set_red = ui.add(Slider::new(&mut self.color.0, 0..=16));
|
let set_red = ui.add(Slider::new(&mut self.color.0, 0..=16));
|
||||||
|
|
Loading…
Reference in a new issue