Moved widget rendering back into display system
This commit is contained in:
parent
8fe2406277
commit
2c44bf5efa
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bevy_terminal_display"
|
name = "bevy_terminal_display"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -2,16 +2,16 @@ use bevy::{
|
|||||||
prelude::*,
|
prelude::*,
|
||||||
render::render_resource::{Extent3d, TextureFormat},
|
render::render_resource::{Extent3d, TextureFormat},
|
||||||
};
|
};
|
||||||
use crossterm::event::Event;
|
|
||||||
use bevy_framebuffer_extract::{
|
use bevy_framebuffer_extract::{
|
||||||
components::FramebufferExtractDestination, render_assets::FramebufferExtractSource,
|
components::FramebufferExtractDestination, render_assets::FramebufferExtractSource,
|
||||||
};
|
};
|
||||||
|
use crossterm::event::Event;
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
style::Stylize,
|
style::Stylize,
|
||||||
widgets::{Paragraph, Wrap},
|
widgets::{Paragraph, Wrap},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::input::events::TerminalInputEvent;
|
use crate::{input::events::TerminalInputEvent, widgets::components::Widget};
|
||||||
|
|
||||||
use super::resources::Terminal;
|
use super::resources::Terminal;
|
||||||
|
|
||||||
@ -28,6 +28,7 @@ const BRAILLE_DOT_BIT_POSITIONS: [u8; 8] = [0, 1, 2, 6, 3, 4, 5, 7];
|
|||||||
pub fn print_to_terminal(
|
pub fn print_to_terminal(
|
||||||
mut terminal: ResMut<Terminal>,
|
mut terminal: ResMut<Terminal>,
|
||||||
image_exports: Query<&FramebufferExtractDestination>,
|
image_exports: Query<&FramebufferExtractDestination>,
|
||||||
|
mut widgets: Query<&mut Widget>,
|
||||||
) {
|
) {
|
||||||
for image_export in image_exports.iter() {
|
for image_export in image_exports.iter() {
|
||||||
let mut image = image_export
|
let mut image = image_export
|
||||||
@ -77,6 +78,15 @@ pub fn print_to_terminal(
|
|||||||
.wrap(Wrap { trim: true }),
|
.wrap(Wrap { trim: true }),
|
||||||
frame.size(),
|
frame.size(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let mut active_widgets = widgets
|
||||||
|
.iter_mut()
|
||||||
|
.filter(|widget| widget.enabled)
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
active_widgets.sort_by(|a, b| a.depth.cmp(&b.depth));
|
||||||
|
for mut widget in active_widgets {
|
||||||
|
widget.widget.render(frame, frame.size());
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.expect("Failed to draw terminal frame");
|
.expect("Failed to draw terminal frame");
|
||||||
}
|
}
|
||||||
|
@ -83,11 +83,7 @@ impl Plugin for TerminalDisplayPlugin {
|
|||||||
(
|
(
|
||||||
input::systems::input_handling,
|
input::systems::input_handling,
|
||||||
display::systems::resize_handling,
|
display::systems::resize_handling,
|
||||||
(
|
display::systems::print_to_terminal,
|
||||||
display::systems::print_to_terminal,
|
|
||||||
widgets::systems::draw_widgets,
|
|
||||||
)
|
|
||||||
.chain(),
|
|
||||||
widgets::systems::widget_input_handling,
|
widgets::systems::widget_input_handling,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@ -1,26 +1,9 @@
|
|||||||
use bevy::prelude::*;
|
use bevy::prelude::*;
|
||||||
|
|
||||||
use crate::{display::resources::Terminal, input::events::TerminalInputEvent};
|
use crate::input::events::TerminalInputEvent;
|
||||||
|
|
||||||
use super::components::Widget;
|
use super::components::Widget;
|
||||||
|
|
||||||
/// Invokes every enabled widget's `render` method
|
|
||||||
pub fn draw_widgets(mut terminal: ResMut<Terminal>, mut widgets: Query<&mut Widget>) {
|
|
||||||
terminal
|
|
||||||
.0
|
|
||||||
.draw(|frame| {
|
|
||||||
let mut active_widgets = widgets
|
|
||||||
.iter_mut()
|
|
||||||
.filter(|widget| widget.enabled)
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
active_widgets.sort_by(|a, b| a.depth.cmp(&b.depth));
|
|
||||||
for mut widget in active_widgets {
|
|
||||||
widget.widget.render(frame, frame.size());
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Invokes every enabled widget's `handle_events` methods for each incoming input event
|
/// Invokes every enabled widget's `handle_events` methods for each incoming input event
|
||||||
pub fn widget_input_handling(
|
pub fn widget_input_handling(
|
||||||
mut widgets: Query<&mut Widget>,
|
mut widgets: Query<&mut Widget>,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user