Upgraded to Bevy 0.15

This commit is contained in:
Silas Bartha 2024-12-11 18:40:02 -05:00
parent e1eb0d99f1
commit 87172fd904
6 changed files with 3625 additions and 158 deletions

View File

@ -1,50 +0,0 @@
name: Docs
on:
push:
branches: [master]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: deploy
cancel-in-progress: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
- name: Configure cache
uses: Swatinem/rust-cache@v2
- name: Setup pages
id: pages
uses: actions/configure-pages@v4
- name: Clean docs folder
run: cargo clean --doc
- name: Build docs
run: cargo doc --no-deps
- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=bevy_terminal_display/index.html">' > target/doc/index.html
- name: Remove lock file
run: rm target/doc/.lock
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: target/doc
deploy:
name: Deploy
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

View File

@ -1,24 +0,0 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

3559
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,22 +1,22 @@
[package] [package]
name = "bevy_terminal_display" name = "bevy_terminal_display"
version = "0.4.3" version = "0.5.0"
edition = "2021" edition = "2021"
license = "0BSD OR MIT OR Apache-2.0" license = "0BSD OR MIT OR Apache-2.0"
description = "A plugin for the Bevy game engine which enables rendering to a terminal using unicode braille characters." description = "A plugin for the Bevy game engine which enables rendering to a terminal using unicode braille characters."
repository = "https://github.com/exvacuum/bevy_terminal_display" repository = "https://git.exvacuum.dev/bevy_terminal_display"
[dependencies] [dependencies]
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
crossterm = "0.28" crossterm = "0.28"
downcast-rs = "1.2" downcast-rs = "1.2"
once_cell = "1.19" once_cell = "1.19"
bevy_headless_render = "0.1" bevy_headless_render = "0.2"
bevy_dither_post_process = "0.2" bevy_dither_post_process = "0.3"
ratatui = "0.28" ratatui = "0.29"
color-eyre = "0.6" color-eyre = "0.6"
[dependencies.bevy] [dependencies.bevy]
version = "0.14" version = "0.15"
default-features = false default-features = false
features = ["bevy_render"] features = ["bevy_render"]

View File

@ -3,7 +3,6 @@
[![Crates](https://img.shields.io/crates/v/bevy_terminal_display)](https://crates.io/crates/bevy_terminal_display) [![Crates](https://img.shields.io/crates/v/bevy_terminal_display)](https://crates.io/crates/bevy_terminal_display)
![License](https://img.shields.io/badge/license-0BSD%2FMIT%2FApache-blue.svg) ![License](https://img.shields.io/badge/license-0BSD%2FMIT%2FApache-blue.svg)
![Tag](https://img.shields.io/github/v/tag/exvacuum/bevy_terminal_display) ![Tag](https://img.shields.io/github/v/tag/exvacuum/bevy_terminal_display)
![Build](https://img.shields.io/github/actions/workflow/status/exvacuum/bevy_terminal_display/rust.yml)
[![Docs](https://img.shields.io/website?url=https%3A%2F%2Fexvacuum.github.io%2Fbevy_terminal_display%2F&label=docs)](https://exvacuum.github.io/bevy_terminal_display) [![Docs](https://img.shields.io/website?url=https%3A%2F%2Fexvacuum.github.io%2Fbevy_terminal_display%2F&label=docs)](https://exvacuum.github.io/bevy_terminal_display)
A (very experimental) plugin for the [Bevy](https://bevyengine.org) engine which allows for rendering to a terminal window. A (very experimental) plugin for the [Bevy](https://bevyengine.org) engine which allows for rendering to a terminal window.
@ -11,7 +10,7 @@ A (very experimental) plugin for the [Bevy](https://bevyengine.org) engine which
WARNING: I highly recommend using the kitty terminal emulator with this, not only due to the gpu-accelerated rendering, but also the implementation of the kitty protocol which enables the advanced input detection. WARNING: I highly recommend using the kitty terminal emulator with this, not only due to the gpu-accelerated rendering, but also the implementation of the kitty protocol which enables the advanced input detection.
Features Include: Features Include:
- `TerminalDisplayBundle` automatically sets up a correctly-formatted render texture - `TerminalDisplay` automatically sets up a correctly-formatted render texture
- Post-process dithers colors to pure black and white, which are then printed as braille characters to the terminal - Post-process dithers colors to pure black and white, which are then printed as braille characters to the terminal
- Responsiveness to terminal window resizing - Responsiveness to terminal window resizing
- `TerminalInput` resource which keeps track of pressed & released keys - `TerminalInput` resource which keeps track of pressed & released keys
@ -20,11 +19,12 @@ Features Include:
- Log redirection - Log redirection
## Screenshots ## Screenshots
![](./doc/screenshot.png) ![](https://git.exvacuum.dev/bevy_terminal_display/plain/doc/screenshot.png)
## Compatibility ## Compatibility
| Crate Version | Bevy Version | | Crate Version | Bevy Version |
|--- |--- | |--- |--- |
| 0.5 | 0.15 |
| 0.3-0.4 | 0.14 | | 0.3-0.4 | 0.14 |
| 0.2 | 0.13 | | 0.2 | 0.13 |
@ -33,13 +33,13 @@ Features Include:
### crates.io ### crates.io
```toml ```toml
[dependencies] [dependencies]
bevy_terminal_display = "0.3" bevy_terminal_display = "0.5"
``` ```
### Using git URL in Cargo.toml ### Using git URL in Cargo.toml
```toml ```toml
[dependencies.bevy_terminal_display] [dependencies.bevy_terminal_display]
git = "https://github.com/exvacuum/bevy_terminal_display.git" git = "https://git.exvacuum.dev/bevy_terminal_display"
``` ```
## Example Usage ## Example Usage
@ -56,24 +56,15 @@ fn main() {
ScheduleRunnerPlugin::run_loop(Duration::from_secs_f32(1.0 / 60.0)), ScheduleRunnerPlugin::run_loop(Duration::from_secs_f32(1.0 / 60.0)),
bevy_terminal_display::TerminalDisplayPlugin::default(), bevy_terminal_display::TerminalDisplayPlugin::default(),
)) ))
.insert_resource(Msaa::Off) // For post-process
.run(); .run();
} }
``` ```
When spawning a camera: When spawning a camera:
```rs ```rs
let terminal_display_bundle = bevy_terminal_display::display::components::TerminalDisplayBundle::new(3, &asset_server);
commands.spawn(( commands.spawn((
Camera3dBundle { // Camera3d...
camera: Camera { TerminalDisplay(3), // Field is level of dithering
target: terminal_display_bundle.image_handle().into(),
..Default::default()
},
..Default::default()
},
terminal_display_bundle,
)); ));
``` ```

View File

@ -1,26 +1,25 @@
use bevy::{prelude::*, render::render_resource::{Extent3d, TextureDescriptor, TextureDimension, TextureFormat, TextureUsages}}; use bevy::{
ecs::{
component::ComponentId,
world::DeferredWorld,
},
prelude::*,
render::render_resource::{
Extent3d, TextureDescriptor, TextureDimension, TextureFormat, TextureUsages,
},
};
use bevy_dither_post_process::components::DitherPostProcessSettings; use bevy_dither_post_process::components::DitherPostProcessSettings;
use bevy_headless_render::{components::{HeadlessRenderBundle, HeadlessRenderDestination}, render_assets::HeadlessRenderSource}; use bevy_headless_render::components::HeadlessRenderSource;
/// Marker component for terminal display /// Marker component for terminal display
#[derive(Component)] #[derive(Component, Debug)]
pub struct TerminalDisplay; #[component(on_add = on_add_terminal_display)]
pub struct TerminalDisplay(pub u32);
/// Bundle for terminal display, contains a handle to an image to be used as a render target to fn on_add_terminal_display(mut world: DeferredWorld, entity: Entity, _id: ComponentId) {
/// render to the terminal let asset_server = world.get_resource::<AssetServer>().unwrap();
#[derive(Bundle)] let dither_level = world.entity(entity).get::<TerminalDisplay>().unwrap().0;
pub struct TerminalDisplayBundle {
_terminal_display: TerminalDisplay,
_headless_render_bundle: HeadlessRenderBundle,
_dither_post_process_settings: DitherPostProcessSettings,
image_handle: Handle<Image>,
}
impl TerminalDisplayBundle {
/// Create a new terminal display with the given dither level. A higher level exponentially
/// increases the size of the bayer matrix used in the ordered dithering calculations. If in
/// doubt, 3 is a good starting value to test with.
pub fn new(dither_level: u32, asset_server: &AssetServer) -> Self {
let terminal_size = crossterm::terminal::size().unwrap(); let terminal_size = crossterm::terminal::size().unwrap();
let size = Extent3d { let size = Extent3d {
width: (terminal_size.0 as u32) * 2, width: (terminal_size.0 as u32) * 2,
@ -47,26 +46,18 @@ impl TerminalDisplayBundle {
image.resize(size); image.resize(size);
let image_handle = asset_server.add(image); let image_handle = asset_server.add(image);
let framebuffer_extract_source = let headless_render_source = HeadlessRenderSource::new(&asset_server, image_handle.clone());
asset_server.add(HeadlessRenderSource(image_handle.clone())); let post_process_settings = DitherPostProcessSettings::new(dither_level, &asset_server);
world
Self { .commands()
_terminal_display: TerminalDisplay, .entity(entity)
_headless_render_bundle: HeadlessRenderBundle { .insert((headless_render_source, post_process_settings));
source: framebuffer_extract_source, if let Some(mut camera) = world.entity_mut(entity).get_mut::<Camera>() {
dest: HeadlessRenderDestination::default(), camera.target = image_handle.into();
}, } else {
image_handle, world.commands().entity(entity).insert(Camera {
_dither_post_process_settings: DitherPostProcessSettings::new( target: image_handle.into(),
dither_level, ..Default::default()
asset_server, });
),
}
}
/// Retrieves the handle to this display's target image. Anything written here will be
/// displayed.
pub fn image_handle(&self) -> Handle<Image> {
self.image_handle.clone()
} }
} }