mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-14 11:28:42 -06:00
wip
This commit is contained in:
parent
b893193753
commit
c986e36f88
3
Cargo.lock
generated
3
Cargo.lock
generated
|
@ -548,6 +548,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "0793f5137567643cf65ea42043a538804ff0fbf288649e2141442b602d81f9bc"
|
checksum = "0793f5137567643cf65ea42043a538804ff0fbf288649e2141442b602d81f9bc"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hashbrown 0.13.2",
|
"hashbrown 0.13.2",
|
||||||
|
"rayon",
|
||||||
"ttf-parser 0.15.2",
|
"ttf-parser 0.15.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -773,6 +774,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
|
"rayon",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
@ -1046,6 +1048,7 @@ dependencies = [
|
||||||
"kubi-logging",
|
"kubi-logging",
|
||||||
"log",
|
"log",
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
|
"rayon",
|
||||||
"rect_packer",
|
"rect_packer",
|
||||||
"winit",
|
"winit",
|
||||||
]
|
]
|
||||||
|
|
|
@ -9,9 +9,10 @@ hashbrown = "0.14"
|
||||||
nohash-hasher = "0.2"
|
nohash-hasher = "0.2"
|
||||||
glam = "0.24"
|
glam = "0.24"
|
||||||
glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf", optional = true }
|
glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf", optional = true }
|
||||||
fontdue = { version = "0.7", optional = true }
|
fontdue = "0.7"
|
||||||
rect_packer = { version = "0.2.1", optional = true }
|
rect_packer = { version = "0.2.1", optional = true }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
rayon = { version = "1.8", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
kubi-logging = { path = "../kubi-logging" }
|
kubi-logging = { path = "../kubi-logging" }
|
||||||
|
@ -19,9 +20,8 @@ glium = { git = "https://github.com/glium/glium", rev = "968fc92378caf" }
|
||||||
winit = "0.29"
|
winit = "0.29"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["builtin_elements", "texture_manager", "text_rendering", "builtin_font", "backend_glium"]
|
default = ["builtin_elements", "builtin_font", "backend_glium", "parallel"]
|
||||||
backend_glium = ["dep:glium"]
|
backend_glium = ["dep:glium"]
|
||||||
texture_manager = ["dep:rect_packer"]
|
builtin_font = []
|
||||||
text_rendering = ["dep:fontdue", "texture_manager"]
|
|
||||||
builtin_font = ["text_rendering"]
|
|
||||||
builtin_elements = []
|
builtin_elements = []
|
||||||
|
parallel = ["dep:rayon", "fontdue/parallel"]
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
use fontdue::Font;
|
|
||||||
|
|
||||||
#[cfg(feature = "builtin_font")]
|
|
||||||
const BIN_FONT: &[u8] = include_bytes!("../assets/font/ProggyTiny.ttf");
|
|
||||||
|
|
||||||
pub struct FontRenderer {
|
|
||||||
pub font_stack: Vec<Font>,
|
|
||||||
pub cache: ()
|
|
||||||
}
|
|
|
@ -7,15 +7,19 @@ pub mod draw;
|
||||||
pub mod backend;
|
pub mod backend;
|
||||||
pub mod measure;
|
pub mod measure;
|
||||||
pub mod state;
|
pub mod state;
|
||||||
#[cfg(feature = "text_rendering")]
|
pub mod text;
|
||||||
pub mod font;
|
|
||||||
#[cfg(feature = "texture_manager")]
|
|
||||||
pub mod texman;
|
|
||||||
|
|
||||||
use element::UiElement;
|
use element::UiElement;
|
||||||
use state::StateRepo;
|
use state::StateRepo;
|
||||||
use event::UiEvent;
|
use event::UiEvent;
|
||||||
use draw::{UiDrawCommands, UiDrawPlan};
|
use draw::{UiDrawCommands, UiDrawPlan};
|
||||||
|
use text::TextRenderer;
|
||||||
|
|
||||||
|
pub struct ElementContext<'a> {
|
||||||
|
pub state: &'a mut StateRepo,
|
||||||
|
pub draw: &'a mut UiDrawCommands,
|
||||||
|
pub text: &'a mut TextRenderer,
|
||||||
|
}
|
||||||
|
|
||||||
pub struct KubiUi {
|
pub struct KubiUi {
|
||||||
mouse_position: Vec2,
|
mouse_position: Vec2,
|
||||||
|
@ -25,6 +29,7 @@ pub struct KubiUi {
|
||||||
draw_commands: UiDrawCommands,
|
draw_commands: UiDrawCommands,
|
||||||
draw_plan: UiDrawPlan,
|
draw_plan: UiDrawPlan,
|
||||||
draw_plan_modified: bool,
|
draw_plan_modified: bool,
|
||||||
|
font_renderer: TextRenderer,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl KubiUi {
|
impl KubiUi {
|
||||||
|
@ -38,6 +43,7 @@ impl KubiUi {
|
||||||
draw_commands: UiDrawCommands::default(),
|
draw_commands: UiDrawCommands::default(),
|
||||||
draw_plan: UiDrawPlan::default(),
|
draw_plan: UiDrawPlan::default(),
|
||||||
draw_plan_modified: false,
|
draw_plan_modified: false,
|
||||||
|
font_renderer: TextRenderer::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
use rect_packer::{Packer, Config as PackerConfig};
|
|
||||||
use glam::{IVec2, ivec2};
|
|
||||||
|
|
||||||
#[derive(Clone, Copy)]
|
|
||||||
pub struct TextureAllocation {
|
|
||||||
// pub index: usize,
|
|
||||||
pub position: IVec2,
|
|
||||||
pub size: IVec2,
|
|
||||||
in_texture_size: IVec2,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TextureAllocation {
|
|
||||||
pub fn uv(&self) -> (f32, f32, f32, f32) {
|
|
||||||
let p0 = self.position.as_vec2() / self.in_texture_size.as_vec2();
|
|
||||||
let p1 = (self.position + self.size).as_vec2() / self.in_texture_size.as_vec2();
|
|
||||||
(p0.x, p0.y, p1.x, p1.y)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct TextureSpace {
|
|
||||||
size: IVec2,
|
|
||||||
packer: Packer,
|
|
||||||
// allocations: Vec<TextureAllocation>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl TextureSpace {
|
|
||||||
pub fn new(size: IVec2) -> Self {
|
|
||||||
Self {
|
|
||||||
size,
|
|
||||||
packer: Packer::new(PackerConfig {
|
|
||||||
width: size.x,
|
|
||||||
height: size.y,
|
|
||||||
border_padding: 1,
|
|
||||||
rectangle_padding: 1,
|
|
||||||
}),
|
|
||||||
// allocations: Vec::new(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn size(&self) -> IVec2 {
|
|
||||||
self.size
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn allocate(&mut self, size: IVec2) -> Option<TextureAllocation> {
|
|
||||||
let position = self.packer.pack(size.x, size.y, false)
|
|
||||||
.map(|rect| ivec2(rect.x, rect.y))?;
|
|
||||||
Some(TextureAllocation {
|
|
||||||
position,
|
|
||||||
size,
|
|
||||||
in_texture_size: self.size
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// pub fn lookup(&self, index: usize) -> Option<TextureAllocation> {
|
|
||||||
// self.allocations.get(index).copied()
|
|
||||||
// }
|
|
||||||
}
|
|
59
kubi-ui/src/text.rs
Normal file
59
kubi-ui/src/text.rs
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
use fontdue::{Font, Metrics};
|
||||||
|
use hashbrown::HashMap;
|
||||||
|
use nohash_hasher::BuildNoHashHasher;
|
||||||
|
|
||||||
|
#[cfg(feature = "parallel")]
|
||||||
|
use rayon::prelude::*;
|
||||||
|
|
||||||
|
#[cfg(feature = "builtin_font")]
|
||||||
|
const BIN_FONT: &[u8] = include_bytes!("../assets/font/ProggyTiny.ttf");
|
||||||
|
|
||||||
|
// pub struct Glyph {
|
||||||
|
// pub metrics: Metrics,
|
||||||
|
// pub data: Box<[u8]>
|
||||||
|
// }
|
||||||
|
|
||||||
|
// pub struct FontData {
|
||||||
|
// font: Font,
|
||||||
|
// cache: HashMap<(u8, char), Glyph, BuildNoHashHasher<u8>>
|
||||||
|
// }
|
||||||
|
|
||||||
|
// impl FontData {
|
||||||
|
// pub fn new() -> Self {
|
||||||
|
// FontData {
|
||||||
|
// font: Font::from_bytes(BIN_FONT, fontdue::FontSettings::default()).unwrap(),
|
||||||
|
// cache: HashMap::default()
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// fn prebake(&mut self, size: u8) {
|
||||||
|
// self.cache = (33..=126).par_bridge().map(|c| {
|
||||||
|
// let (metrics, data) = self.font.rasterize(
|
||||||
|
// char::from(c),
|
||||||
|
// c as f32,
|
||||||
|
// );
|
||||||
|
// Glyph { metrics, data: data.into_boxed_slice() }
|
||||||
|
// }).collect();
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
pub struct TextRenderer {
|
||||||
|
font_stack: Vec<Font>,
|
||||||
|
cache: ()
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TextRenderer {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
let font = Font::from_bytes(BIN_FONT, fontdue::FontSettings::default()).unwrap();
|
||||||
|
TextRenderer {
|
||||||
|
font_stack: vec![font],
|
||||||
|
cache: ()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for TextRenderer {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue