| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2024 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use async_recursion::async_recursion;
- use async_trait::async_trait;
- use atomic_float::AtomicF32;
- use miniquad::{KeyCode, KeyMods, MouseButton, TouchPhase};
- use rand::{rngs::OsRng, Rng};
- use std::sync::{atomic::Ordering, Arc, Mutex as SyncMutex, OnceLock, Weak};
- use crate::{
- gfx::{GfxDrawCall, GfxDrawInstruction, Point, Rectangle, RenderApi},
- prop::{PropertyBool, PropertyFloat32, PropertyPtr, PropertyRect, PropertyUint32, Role},
- scene::{Pimpl, SceneNodePtr, SceneNodeWeak},
- ExecutorPtr,
- };
- use super::{
- get_children_ordered, get_ui_object3, get_ui_object_ptr, DrawUpdate, OnModify, UIObject,
- };
- pub type LayerPtr = Arc<Layer>;
- pub struct Layer {
- node: SceneNodeWeak,
- render_api: RenderApi,
- tasks: OnceLock<Vec<smol::Task<()>>>,
- dc_key: u64,
- is_visible: PropertyBool,
- rect: PropertyRect,
- z_index: PropertyUint32,
- parent_rect: SyncMutex<Option<Rectangle>>,
- }
- impl Layer {
- pub async fn new(node: SceneNodeWeak, render_api: RenderApi, ex: ExecutorPtr) -> Pimpl {
- debug!(target: "ui::layer", "Layer::new()");
- let node_ref = &node.upgrade().unwrap();
- let is_visible = PropertyBool::wrap(node_ref, Role::Internal, "is_visible", 0).unwrap();
- let rect = PropertyRect::wrap(node_ref, Role::Internal, "rect").unwrap();
- let z_index = PropertyUint32::wrap(node_ref, Role::Internal, "z_index", 0).unwrap();
- let node_name = node_ref.name.clone();
- let node_id = node_ref.id;
- let self_ = Arc::new(Self {
- node,
- render_api,
- tasks: OnceLock::new(),
- dc_key: OsRng.gen(),
- is_visible,
- rect,
- z_index,
- parent_rect: SyncMutex::new(None),
- });
- Pimpl::Layer(self_)
- }
- fn get_children(&self) -> Vec<SceneNodePtr> {
- let node = self.node.upgrade().unwrap();
- get_children_ordered(&node)
- }
- async fn redraw(self: Arc<Self>) {
- let Some(parent_rect) = self.parent_rect.lock().unwrap().clone() else { return };
- let Some(draw_update) = self.get_draw_calls(parent_rect).await else {
- error!(target: "ui::layer", "Layer failed to draw");
- return;
- };
- self.render_api.replace_draw_calls(draw_update.draw_calls);
- debug!(target: "ui::layer", "replace draw calls done");
- }
- async fn get_draw_calls(&self, parent_rect: Rectangle) -> Option<DrawUpdate> {
- debug!(target: "ui::layer", "Layer::get_draw_calls()");
- self.rect.eval(&parent_rect).ok()?;
- let rect = self.rect.get();
- // Apply viewport
- let mut draw_calls = vec![];
- let mut child_calls = vec![];
- let mut freed_buffers = vec![];
- // We should return a draw call so that if the layer is made visible, we can just
- // recalculate it and update in place.
- if self.is_visible.get() {
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- let Some(mut draw_update) = obj.draw(rect).await else {
- debug!(target: "ui::layer", "Skipped draw() of {child:?}");
- continue
- };
- draw_calls.append(&mut draw_update.draw_calls);
- child_calls.push(draw_update.key);
- freed_buffers.append(&mut draw_update.freed_buffers);
- }
- }
- let dc = GfxDrawCall {
- instrs: vec![GfxDrawInstruction::ApplyView(rect)],
- dcs: child_calls,
- z_index: self.z_index(),
- };
- draw_calls.push((self.dc_key, dc));
- Some(DrawUpdate { key: self.dc_key, draw_calls, freed_buffers })
- }
- }
- #[async_trait]
- impl UIObject for Layer {
- fn z_index(&self) -> u32 {
- self.z_index.get()
- }
- async fn start(self: Arc<Self>, ex: ExecutorPtr) {
- let me = Arc::downgrade(&self);
- let node_ref = &self.node.upgrade().unwrap();
- let node_name = node_ref.name.clone();
- let node_id = node_ref.id;
- let mut on_modify = OnModify::new(ex.clone(), node_name, node_id, me.clone());
- on_modify.when_change(self.is_visible.prop(), Self::redraw);
- on_modify.when_change(self.rect.prop(), Self::redraw);
- on_modify.when_change(self.z_index.prop(), Self::redraw);
- self.tasks.set(on_modify.tasks);
- for child in self.get_children() {
- let obj = get_ui_object_ptr(&child);
- obj.start(ex.clone()).await;
- }
- }
- async fn draw(&self, parent_rect: Rectangle) -> Option<DrawUpdate> {
- debug!(target: "ui::layer", "Layer::draw()");
- *self.parent_rect.lock().unwrap() = Some(parent_rect);
- /*
- if !parent_rect.dim().contains(&offset_rect) {
- error!(
- target: "ui::layer",
- "layer rect {:?} is not inside parent {:?}",
- offset_rect, parent_rect
- );
- return None
- }
- */
- self.get_draw_calls(parent_rect).await
- }
- async fn handle_char(&self, key: char, mods: KeyMods, repeat: bool) -> bool {
- if !self.is_visible.get() {
- return false
- }
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_char(key, mods, repeat).await {
- return true
- }
- }
- false
- }
- async fn handle_key_down(&self, key: KeyCode, mods: KeyMods, repeat: bool) -> bool {
- if !self.is_visible.get() {
- return false
- }
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_key_down(key, mods, repeat).await {
- //debug!(target: "layer", "handle_key_down({key:?}, {mods:?}, {repeat}) swallowed by {child:?}");
- return true
- }
- }
- false
- }
- async fn handle_key_up(&self, key: KeyCode, mods: KeyMods) -> bool {
- if !self.is_visible.get() {
- return false
- }
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_key_up(key, mods).await {
- return true
- }
- }
- false
- }
- async fn handle_mouse_btn_down(&self, btn: MouseButton, mut mouse_pos: Point) -> bool {
- if !self.is_visible.get() {
- return false
- }
- mouse_pos -= self.rect.get().pos();
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_mouse_btn_down(btn, mouse_pos).await {
- return true
- }
- }
- false
- }
- async fn handle_mouse_btn_up(&self, btn: MouseButton, mut mouse_pos: Point) -> bool {
- if !self.is_visible.get() {
- return false
- }
- mouse_pos -= self.rect.get().pos();
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_mouse_btn_up(btn, mouse_pos).await {
- return true
- }
- }
- false
- }
- async fn handle_mouse_move(&self, mut mouse_pos: Point) -> bool {
- if !self.is_visible.get() {
- return false
- }
- mouse_pos -= self.rect.get().pos();
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_mouse_move(mouse_pos).await {
- return true
- }
- }
- false
- }
- async fn handle_mouse_wheel(&self, mut wheel_pos: Point) -> bool {
- if !self.is_visible.get() {
- return false
- }
- wheel_pos -= self.rect.get().pos();
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_mouse_wheel(wheel_pos).await {
- return true
- }
- }
- false
- }
- async fn handle_touch(&self, phase: TouchPhase, id: u64, mut touch_pos: Point) -> bool {
- if !self.is_visible.get() {
- return false
- }
- touch_pos -= self.rect.get().pos();
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_touch(phase, id, touch_pos).await {
- return true
- }
- }
- false
- }
- async fn handle_compose_text(&self, suggest_text: &str, is_commit: bool) -> bool {
- if !self.is_visible.get() {
- return false
- }
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_compose_text(suggest_text, is_commit).await {
- return true
- }
- }
- false
- }
- async fn handle_set_compose_region(&self, start: usize, end: usize) -> bool {
- if !self.is_visible.get() {
- return false
- }
- for child in self.get_children() {
- let obj = get_ui_object3(&child);
- if obj.handle_set_compose_region(start, end).await {
- return true
- }
- }
- false
- }
- }
|