From 646db8328611f21a5850cc9834b6c72bfdf0c829 Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Fri, 26 Apr 2024 01:27:13 -0400 Subject: [PATCH] Initial Commit --- .gitignore | 1 + Cargo.toml | 19 +++++ LICENSE-APACHE | 202 +++++++++++++++++++++++++++++++++++++++++++++ LICENSE-MIT | 19 +++++ README.md | 71 ++++++++++++++++ doc/screenshot.png | Bin 0 -> 20289 bytes src/components.rs | 72 ++++++++++++++++ src/events.rs | 5 ++ src/lib.rs | 43 ++++++++++ src/resources.rs | 38 +++++++++ src/systems.rs | 154 ++++++++++++++++++++++++++++++++++ 11 files changed, 624 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 LICENSE-APACHE create mode 100644 LICENSE-MIT create mode 100644 README.md create mode 100644 doc/screenshot.png create mode 100644 src/components.rs create mode 100644 src/events.rs create mode 100644 src/lib.rs create mode 100644 src/resources.rs create mode 100644 src/systems.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..a271dde --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "grex_terminal_display" +version = "0.1.0" +edition = "2021" + +[dependencies] +crossterm = "0.27.0" + +[dependencies.bevy] +version = "0.13" +features = ["dynamic_linking"] + +[dependencies.grex_framebuffer_extract] +git = "https://github.com/exvacuum/grex_framebuffer_extract" +tag = "v0.1.0" + +[dependencies.grex_dither_post_process] +git = "https://github.com/exvacuum/grex_dither_post_process" +tag = "v0.1.2" diff --git a/LICENSE-APACHE b/LICENSE-APACHE new file mode 100644 index 0000000..4b73f05 --- /dev/null +++ b/LICENSE-APACHE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2024 Silas Bartha + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/LICENSE-MIT b/LICENSE-MIT new file mode 100644 index 0000000..372ea6c --- /dev/null +++ b/LICENSE-MIT @@ -0,0 +1,19 @@ +Copyright (c) 2024 Silas Bartha + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..a8e1687 --- /dev/null +++ b/README.md @@ -0,0 +1,71 @@ +# grex_terminal_display + + +A (very experimental) plugin for the [Bevy](https://bevyengine.org) engine which allows for rendering to a terminal window. + +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: +- `TerminalDisplayBundle` 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 +- Responsiveness to terminal window resizing +- `TerminalInput` resource which keeps track of pressed & released keys +- Keyboard input enhancements using kitty protocol + +Future Goals: +- Find a way to integrate into a TUI library like ratatui for more interaction options. +- Move kitty enhancements to a feature maybe + +## Screenshots +![](./doc/screenshot.png) +## Compatibility + +| Crate Version | Bevy Version | +|--- |--- | +| 0.1 | 0.13 | + +## Installation + +### Using git URL in Cargo.toml +```toml +[dependencies.grex_terminal_display] +git = "https://github.com/exvacuum/grex_terminal_display.git" +``` + +## Example Usage + +In `main.rs`: +```rs +use bevy::prelude::*; +use grex_terminal_display; + +fn main() { + App::new() + .add_plugins(( + DefaultPlugins.build().disable::(), + ScheduleRunnerPlugin::run_loop(Duration::from_secs_f32(1.0 / 60.0)), + grex_terminal_display::TerminalDisplayPlugin, + )) + .insert_resource(Msaa::Off) // For post-process + .run(); +} +``` + +When spawning a camera: +```rs +let terminal_display_bundle = grex_terminal_display::components::TerminalDisplayBundle::new(3, &asset_server); + +commands.spawn(( + Camera3dBundle { + camera: Camera { + target: terminal_display_bundle.image_handle().into(), + ..Default::default() + }, + ..Default::default() + }, + terminal_display_bundle, +)); +``` + + + diff --git a/doc/screenshot.png b/doc/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..d5c9de3cb6dcc6440db04d1e723a8e18e0e953aa GIT binary patch literal 20289 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 F{{;h?Af5mK literal 0 HcmV?d00001 diff --git a/src/components.rs b/src/components.rs new file mode 100644 index 0000000..560ad89 --- /dev/null +++ b/src/components.rs @@ -0,0 +1,72 @@ +use bevy::{ + prelude::*, + render::render_resource::{ + Extent3d, TextureDescriptor, TextureDimension, TextureFormat, TextureUsages, + }, +}; +use grex_dither_post_process::components::DitherPostProcessSettings; +use grex_framebuffer_extract::{ + components::{ExtractFramebufferBundle, FramebufferExtractDestination}, + render_assets::FramebufferExtractSource, +}; + +#[derive(Component)] +pub struct TerminalDisplay; + +#[derive(Bundle)] +pub struct TerminalDisplayBundle { + _terminal_display: TerminalDisplay, + extract_framebuffer_bundle: ExtractFramebufferBundle, + dither_post_process_settings: DitherPostProcessSettings, + image_handle: Handle, +} + +impl TerminalDisplayBundle { + pub fn new(dither_level: u32, asset_server: &AssetServer) -> Self { + let terminal_size = crossterm::terminal::size().unwrap(); + let size = Extent3d { + width: (terminal_size.0 as u32) * 2, + height: (terminal_size.1 as u32) * 4, + depth_or_array_layers: 1, + }; + + let mut image = Image { + texture_descriptor: TextureDescriptor { + label: None, + size, + dimension: TextureDimension::D2, + format: TextureFormat::R8Unorm, + mip_level_count: 1, + sample_count: 1, + usage: TextureUsages::TEXTURE_BINDING + | TextureUsages::COPY_SRC + | TextureUsages::RENDER_ATTACHMENT, + view_formats: &[], + }, + ..default() + }; + + image.resize(size); + let image_handle = asset_server.add(image); + + let framebuffer_extract_source = + asset_server.add(FramebufferExtractSource(image_handle.clone())); + + Self { + _terminal_display: TerminalDisplay, + extract_framebuffer_bundle: ExtractFramebufferBundle { + source: framebuffer_extract_source, + dest: FramebufferExtractDestination::default(), + }, + image_handle, + dither_post_process_settings: DitherPostProcessSettings::new( + dither_level, + asset_server, + ), + } + } + + pub fn image_handle(&self) -> Handle { + self.image_handle.clone() + } +} diff --git a/src/events.rs b/src/events.rs new file mode 100644 index 0000000..3f7057b --- /dev/null +++ b/src/events.rs @@ -0,0 +1,5 @@ +use bevy::prelude::*; +use crossterm::event::Event; + +#[derive(Event)] +pub struct TerminalInputEvent(pub Event); diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..3ad98f4 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,43 @@ +use std::io::stdout; + +use bevy::prelude::*; +use crossterm::{ + event::PopKeyboardEnhancementFlags, terminal::disable_raw_mode, ExecutableCommand, +}; +use grex_dither_post_process::DitherPostProcessPlugin; +use grex_framebuffer_extract::FramebufferExtractPlugin; + +pub use crossterm::event::KeyCode; + +pub mod components; +pub mod events; +pub mod resources; +mod systems; + +pub struct TerminalDisplayPlugin; + +impl Plugin for TerminalDisplayPlugin { + fn build(&self, app: &mut App) { + app.add_plugins((DitherPostProcessPlugin, FramebufferExtractPlugin)) + .add_systems(Startup, systems::setup) + .add_systems( + Update, + ( + systems::input_handling, + systems::resize_handling, + systems::print_to_terminal, + ), + ) + .insert_resource(resources::EventQueue::default()) + .insert_resource(resources::TerminalInput::default()) + .add_event::(); + } +} + +impl Drop for TerminalDisplayPlugin { + fn drop(&mut self) { + let mut stdout = stdout(); + stdout.execute(PopKeyboardEnhancementFlags).unwrap(); + disable_raw_mode().unwrap(); + } +} diff --git a/src/resources.rs b/src/resources.rs new file mode 100644 index 0000000..343967d --- /dev/null +++ b/src/resources.rs @@ -0,0 +1,38 @@ +use std::sync::{Arc, Mutex}; + +use bevy::{prelude::*, utils::HashSet}; +use crossterm::event::{Event, KeyCode}; + +#[derive(Resource, Default)] +pub struct TerminalInput { + pressed_keys: HashSet, + released_keys: HashSet, +} + +impl TerminalInput { + pub fn is_pressed(&self, code: KeyCode) -> bool { + self.pressed_keys.contains(&code) + } + + pub fn is_released(&self, code: KeyCode) -> bool { + self.released_keys.contains(&code) + } + + pub(super) fn press(&mut self, code: KeyCode) { + if !self.is_pressed(code) { + self.pressed_keys.insert(code); + } + } + + pub(super) fn release(&mut self, code: KeyCode) { + if self.is_pressed(code) { + self.pressed_keys.remove(&code); + } + if !self.is_released(code) { + self.released_keys.insert(code); + } + } +} + +#[derive(Resource, Default)] +pub(super) struct EventQueue(pub(super) Arc>>); diff --git a/src/systems.rs b/src/systems.rs new file mode 100644 index 0000000..77b8d11 --- /dev/null +++ b/src/systems.rs @@ -0,0 +1,154 @@ +use std::{ + io::{stdout, Write}, + usize, +}; + +use bevy::{ + prelude::*, + render::render_resource::{Extent3d, TextureFormat}, +}; +use crossterm::{ + cursor::{self, MoveTo}, + event::{read, Event, KeyEventKind, KeyboardEnhancementFlags, PushKeyboardEnhancementFlags}, + terminal::enable_raw_mode, + ExecutableCommand, QueueableCommand, +}; +use grex_framebuffer_extract::{ + components::FramebufferExtractDestination, render_assets::FramebufferExtractSource, +}; + +use crate::{ + events::TerminalInputEvent, + resources::{EventQueue, TerminalInput}, +}; + +const BRAILLE_CODE_MIN: u16 = 0x2800; +const BRAILLE_CODE_MAX: u16 = 0x28FF; +const BRAILLE_DOT_BIT_POSITIONS: [u8; 8] = [0, 1, 2, 6, 3, 4, 5, 7]; + +pub fn setup(event_queue: Res) { + let event_queue = event_queue.0.clone(); + std::thread::spawn(move || { + loop { + // `read()` blocks until an `Event` is available + match read() { + Ok(event) => { + event_queue.lock().unwrap().push(event); + } + Err(err) => { + panic!("Error reading input events: {:?}", err); + } + } + } + }); + + let mut stdout = stdout(); + enable_raw_mode().expect("Failed to put terminal into raw mode"); + let _ = stdout.execute(PushKeyboardEnhancementFlags( + KeyboardEnhancementFlags::REPORT_EVENT_TYPES, + )); + let _ = stdout.execute(cursor::Hide); +} + +pub fn print_to_terminal(image_exports: Query<&FramebufferExtractDestination>) { + for image_export in image_exports.iter() { + let mut image = image_export + .0 + .lock() + .expect("Failed to get lock on output texture"); + //TODO: Find a better way of preventing first frame + if image.size() == UVec2::ONE { + continue; + } + if image.texture_descriptor.format != TextureFormat::R8Unorm { + warn_once!("Extracted framebuffer texture is not R8Unorm format. Will attempt conversion, but consider changing your render texture's format."); + info_once!("{:?}", image); + match image.convert(TextureFormat::R8Unorm) { + Some(img) => *image = img, + None => error_once!( + "Could not convert to R8Unorm texture format. Unexpected output may occur." + ), + }; + } + + let mut output_buffer = Vec::::new(); + let width = image.width(); + let height = image.height(); + let data = &image.data; + for character_y in (0..height).step_by(4) { + for character_x in (0..width).step_by(2) { + let mut mask: u8 = 0; + for offset_x in 0..2 { + for offset_y in 0..4 { + let x = character_x + offset_x; + let y = character_y + offset_y; + if x < width && y < height && data[(y * width + x) as usize] == 0xFF { + mask |= 1 + << (BRAILLE_DOT_BIT_POSITIONS[(offset_x * 4 + offset_y) as usize]); + } + } + } + output_buffer.push(braille_char(mask)); + } + } + + let string = output_buffer.into_iter().collect::(); + let mut stdout = stdout(); + stdout.queue(MoveTo(0, 0)).unwrap(); + stdout.write_all(string.as_bytes()).unwrap(); + stdout.flush().unwrap(); + } +} + +fn braille_char(mask: u8) -> char { + match char::from_u32((BRAILLE_CODE_MIN + mask as u16) as u32) { + Some(character) => { + if character as u16 > BRAILLE_CODE_MAX { + panic!("Number too big!") + } + character + } + None => panic!("Error converting character!"), + } +} + +pub fn input_handling( + event_queue: Res, + mut input: ResMut, + mut event_writer: EventWriter, +) { + let mut event_queue = event_queue.0.lock().unwrap(); + while let Some(event) = event_queue.pop() { + if let Event::Key(event) = event { + match event.kind { + KeyEventKind::Press => { + input.press(event.code); + } + KeyEventKind::Release => { + input.release(event.code); + } + _ => (), + } + } + event_writer.send(TerminalInputEvent(event)); + } +} + +pub fn resize_handling( + mut images: ResMut>, + mut sources: ResMut>, + mut event_reader: EventReader, +) { + for event in event_reader.read() { + if let Event::Resize(w, h) = event.0 { + for source in sources.iter_mut() { + let image = images.get_mut(&source.1 .0).unwrap(); + image.resize(Extent3d { + width: w as u32 * 2, + height: h as u32 * 4, + depth_or_array_layers: 1, + }); + } + } + } +}