Skip to content

Commit

Permalink
Added font-based resizing to the splits component
Browse files Browse the repository at this point in the history
Fixed a compiler error and removed a useless line

fixed a compiler error

ran clippy

Added font-based resizing to the splits component
  • Loading branch information
Hurricane996 authored and CryZe committed Sep 12, 2022
1 parent ebde0dc commit 7842dcb
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 15 deletions.
1 change: 1 addition & 0 deletions src/component/timer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ pub struct Component {
/// Right now these are just gradients, and gradients with delta,
/// however in the future timers may support other types of backgrounds.]
#[derive(Copy, Clone, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum DeltaGradient {
/// A normal gradient of some kind
Gradient(Gradient),
Expand Down
3 changes: 2 additions & 1 deletion src/rendering/component/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ pub fn width(component: &ComponentState) -> f32 {
ComponentState::Separator(_) => SEPARATOR_THICKNESS,
ComponentState::Splits(state) => {
let column_count = 2.0; // FIXME: Not always 2.
let split_width = 2.0 + column_count * splits::COLUMN_WIDTH;
let column_width = 2.75; // FIXME: Not always 2.75; difficult to calculate without a renderer.
let split_width = 2.0 + column_count * column_width;
state.splits.len() as f32 * split_width
}
ComponentState::Text(_) => 6.0,
Expand Down
39 changes: 30 additions & 9 deletions src/rendering/component/splits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ use crate::{
settings::{Gradient, ListGradient},
};

pub const COLUMN_WIDTH: f32 = 2.75;

pub struct Cache<I, L> {
icons: Vec<Option<Icon<I>>>,
splits: Vec<SplitCache<L>>,
column_labels: Vec<CachedLabel<L>>,
column_width_label: CachedLabel<L>,
column_label_widths: Vec<f32>,
}

struct SplitCache<L> {
Expand All @@ -44,6 +44,8 @@ impl<I, L> Cache<I, L> {
icons: Vec::new(),
splits: Vec::new(),
column_labels: Vec::new(),
column_width_label: CachedLabel::new(),
column_label_widths: Vec::new(),
}
}
}
Expand All @@ -55,6 +57,10 @@ pub(in crate::rendering) fn render<A: ResourceAllocator>(
component: &State,
layout_state: &LayoutState,
) {
const COLUMN_PADDING: f32 = 0.2;
let max_column_width =
context.measure_numbers("88:88:88", &mut cache.column_width_label, DEFAULT_TEXT_SIZE);

let text_color = solid(&layout_state.text_color);

let split_background = match component.background {
Expand Down Expand Up @@ -107,24 +113,31 @@ pub(in crate::rendering) fn render<A: ResourceAllocator>(
cache.icons[icon_change.segment_index] = context.create_icon(&icon_change.icon);
}

cache.column_label_widths.clear();

if let Some(column_labels) = &component.column_labels {
if layout_state.direction == LayoutDirection::Vertical {
cache
.column_labels
.resize_with(column_labels.len(), CachedLabel::new);

let mut right_x = width - PADDING;
for (label, cache) in column_labels.iter().zip(&mut cache.column_labels) {
let left_x = right_x - COLUMN_WIDTH;
context.render_text_right_align(
for (label, column_cache) in column_labels.iter().zip(&mut cache.column_labels) {
// TODO In LiveSplit desktop, the column width varies based on whether or not the current column tracks
// delta, with delta column width being `measure_width("9:00:00")` and regular column width being
// `measure_width("24:00:00")`. Implementing this in livesplit-core requires tracking column types in
// `splits::State`, which I don't feel like doing right now.
let left_x = context.render_text_right_align(
label,
cache,
column_cache,
Layer::Bottom,
[right_x, TEXT_ALIGN_TOP],
DEFAULT_TEXT_SIZE,
text_color,
);
right_x = left_x;
let label_width = right_x - left_x;
cache.column_label_widths.push(right_x - left_x);
right_x -= label_width.max(max_column_width) + COLUMN_PADDING;
}

context.translate(0.0, DEFAULT_COMPONENT_HEIGHT);
Expand Down Expand Up @@ -178,7 +191,15 @@ pub(in crate::rendering) fn render<A: ResourceAllocator>(
.columns
.resize_with(split.columns.len(), CachedLabel::new);

for (column, column_cache) in split.columns.iter().zip(&mut split_cache.columns) {
for ((column, column_cache), column_label_width) in
split.columns.iter().zip(&mut split_cache.columns).zip(
cache
.column_label_widths
.iter()
.cloned()
.chain(std::iter::repeat(max_column_width)),
)
{
if !column.value.is_empty() {
left_x = context.render_numbers(
&column.value,
Expand All @@ -189,7 +210,7 @@ pub(in crate::rendering) fn render<A: ResourceAllocator>(
solid(&column.visual_color),
);
}
right_x -= COLUMN_WIDTH;
right_x -= max_column_width.max(column_label_width) + COLUMN_PADDING;
}

if display_two_rows {
Expand Down
10 changes: 5 additions & 5 deletions tests/rendering.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,11 @@ fn check_dims(
let mut expected_image = expected_image.to_rgba8();
for (x, y, Rgba([r, g, b, a])) in expected_image.enumerate_pixels_mut() {
if x < hash_image.width() && y < hash_image.height() {
let img_hash::image::Rgba([r2, g2, b2, a2]) = hash_image.get_pixel(x, y);
*r = (*r as i16).wrapping_sub(*r2 as i16).unsigned_abs() as u8;
*g = (*g as i16).wrapping_sub(*g2 as i16).unsigned_abs() as u8;
*b = (*b as i16).wrapping_sub(*b2 as i16).unsigned_abs() as u8;
*a = (*a).max(*a2);
let img_hash::image::Rgba([r2, g2, b2, a2]) = *hash_image.get_pixel(x, y);
*r = r.abs_diff(r2);
*g = g.abs_diff(g2);
*b = b.abs_diff(b2);
*a = (*a).max(a2);
}
}
let diff_path = format!("target/renders/diff/{name}.png");
Expand Down

0 comments on commit 7842dcb

Please sign in to comment.