slint/sixtyfps_runtime/corelib/item_rendering.rs
2021-01-14 08:52:22 +01:00

125 lines
4.6 KiB
Rust

/* LICENSE BEGIN
This file is part of the SixtyFPS Project -- https://sixtyfps.io
Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
SPDX-License-Identifier: GPL-3.0-only
This file is also available under commercial licensing terms.
Please contact info@sixtyfps.io for more information.
LICENSE END */
#![warn(missing_docs)]
//! module for rendering the tree of items
use super::graphics::{GraphicsBackend, RenderingCache};
use super::items::*;
use crate::component::ComponentRc;
use crate::graphics::{Point, Rect};
use crate::item_tree::ItemVisitorResult;
use crate::slice::Slice;
use core::pin::Pin;
use std::cell::{Cell, RefCell};
/// This structure must be present in items that are Rendered and contains information.
/// Used by the backend.
#[derive(Default, Debug)]
#[repr(C)]
pub struct CachedRenderingData {
/// Used and modified by the backend, should be initialized to 0 by the user code
pub(crate) cache_index: Cell<usize>,
/// Set to false initially and when changes happen that require updating the cache
pub(crate) cache_ok: Cell<bool>,
}
impl CachedRenderingData {
pub fn ensure_up_to_date<T: Clone>(
&self,
cache: &mut RenderingCache<T>,
update_fn: impl FnOnce() -> T,
) -> T {
if self.cache_ok.get() {
let index = self.cache_index.get();
let existing_entry = cache.get_mut(index).unwrap();
if existing_entry.dependency_tracker.is_dirty() {
existing_entry.data = existing_entry.dependency_tracker.as_ref().evaluate(update_fn)
}
existing_entry.data.clone()
} else {
self.cache_index.set(cache.insert(crate::graphics::CachedGraphicsData::new(update_fn)));
self.cache_ok.set(true);
cache.get(self.cache_index.get()).unwrap().data.clone()
}
}
pub fn release<T>(&self, cache: &mut RenderingCache<T>) {
if self.cache_ok.get() {
let index = self.cache_index.get();
cache.remove(index);
}
}
}
pub(crate) fn render_component_items<Backend: GraphicsBackend>(
component: &ComponentRc,
renderer: &mut Backend::ItemRenderer,
origin: crate::graphics::Point,
) {
let renderer = RefCell::new(renderer);
crate::item_tree::visit_items_with_post_visit(
component,
crate::item_tree::TraversalOrder::BackToFront,
|_, item, _, translation| {
let saved_clip = renderer.borrow_mut().clip_rects();
item.as_ref()
.render(*translation, &mut (*renderer.borrow_mut() as &mut dyn ItemRenderer));
let origin = item.as_ref().geometry().origin;
let translation = *translation + euclid::Vector2D::new(origin.x, origin.y);
(ItemVisitorResult::Continue(translation), saved_clip)
},
|_, _, saved_clip| {
renderer.borrow_mut().reset_clip(saved_clip);
},
origin,
);
}
pub(crate) fn free_item_rendering_data<'a, Backend: GraphicsBackend>(
items: &Slice<'a, core::pin::Pin<ItemRef<'a>>>,
renderer: &RefCell<Backend>,
) {
for item in items.iter() {
let cached_rendering_data = item.cached_rendering_data_offset();
renderer.borrow().release_item_graphics_cache(cached_rendering_data)
}
}
pub trait ItemRenderer {
/// will draw a rectangle in (pos.x + rect.x)
fn draw_rectangle(&mut self, pos: Point, rect: Pin<&Rectangle>);
fn draw_border_rectangle(&mut self, pos: Point, rect: Pin<&BorderRectangle>);
fn draw_image(&mut self, pos: Point, image: Pin<&Image>);
fn draw_clipped_image(&mut self, pos: Point, image: Pin<&ClippedImage>);
fn draw_text(&mut self, pos: Point, text: Pin<&Text>);
fn draw_text_input(&mut self, pos: Point, text_input: Pin<&TextInput>);
fn draw_path(&mut self, pos: Point, path: Pin<&Path>);
fn combine_clip(&mut self, pos: Point, clip: &Pin<&Clip>);
fn clip_rects(&self) -> SharedVector<Rect>;
fn reset_clip(&mut self, rects: SharedVector<Rect>);
/// Returns the scale factor
fn scale_factor(&self) -> f32;
/// Draw a pixmap in position indicated by the `pos`.
/// The pixmap will be taken from cache if the cache is valid, otherwise, update_fn will be called
/// with a callback that need to be called once with `fn (width, height, data)` where data are the
/// argb premultiplied pixel values
fn draw_cached_pixmap(
&mut self,
item_cache: &CachedRenderingData,
pos: Point,
update_fn: &dyn Fn(&mut dyn FnMut(u32, u32, &[u8])),
);
}