hUI/hui-examples/examples/text_weird.rs

120 lines
4.2 KiB
Rust
Raw Normal View History

2024-02-29 15:02:05 +00:00
//WARNING: THIS EXAMPLE IS EXTREMELY OUTDATED AND USES DEPRECATED API
2024-02-17 20:43:46 +00:00
use std::time::Instant;
use glam::{UVec2, vec4};
use glium::{backend::glutin::SimpleWindowBuilder, Surface};
use winit::{
event::{Event, WindowEvent},
event_loop::{EventLoopBuilder, ControlFlow}
};
use hui::{
element::{
2024-02-29 15:02:05 +00:00
container::Container, fill_rect::FillRect, spacer::Spacer, text::Text, ElementList
}, frame::FrameRect, layout::Size, UiInstance
2024-02-17 20:43:46 +00:00
};
use hui_glium::GliumUiRenderer;
2024-02-26 00:15:55 +00:00
fn elements(mut f: impl FnMut(&mut Vec<Box<dyn hui::element::UiElement>>)) -> ElementList {
2024-02-25 03:02:10 +00:00
let mut e = vec![];
f(&mut e);
2024-02-26 00:15:55 +00:00
ElementList(e)
2024-02-25 03:02:10 +00:00
}
2024-02-17 20:43:46 +00:00
fn main() {
kubi_logging::init();
let event_loop = EventLoopBuilder::new().build().unwrap();
let (window, display) = SimpleWindowBuilder::new().build(&event_loop);
window.set_title("Text rendering test");
2024-02-17 20:47:21 +00:00
let mut hui = UiInstance::new();
2024-02-17 20:43:46 +00:00
let mut backend = GliumUiRenderer::new(&display);
2024-02-25 03:02:10 +00:00
let font_handle = hui.add_font(include_bytes!("../assets/roboto/Roboto-Regular.ttf"));
2024-02-17 20:43:46 +00:00
let instant = Instant::now();
event_loop.run(|event, window_target| {
window_target.set_control_flow(ControlFlow::Poll);
match event {
Event::WindowEvent { event: WindowEvent::CloseRequested, .. } => {
window_target.exit();
},
Event::AboutToWait => {
let mut frame = display.draw();
frame.clear_color_srgb(0., 0., 0., 1.);
let resolution = UVec2::from(display.get_framebuffer_dimensions()).as_vec2();
2024-02-17 20:47:21 +00:00
hui.begin();
2024-02-17 20:43:46 +00:00
2024-02-17 20:47:21 +00:00
hui.add(Container {
size: (Size::Relative(1.), Size::Relative(1.)).into(),
background_frame: Box::new(FrameRect::color((0.1, 0.1, 0.1, 1.))),
2024-02-26 00:15:55 +00:00
children: elements(|elem| {
2024-02-25 03:02:10 +00:00
elem.push(Box::new(Text {
2024-02-17 20:43:46 +00:00
text: "THIS LINE SHOULD BE SHARP!".into(),
..Default::default()
2024-02-25 03:02:10 +00:00
}));
elem.push(Box::new(Text {
2024-02-17 20:43:46 +00:00
text: "THIS LINE SHOULD BE SHARP!".into(),
text_size: 32,
..Default::default()
2024-02-25 03:02:10 +00:00
}));
elem.push(Box::new(Text {
2024-02-17 20:43:46 +00:00
text: "All lines except 3 and 6 below will be blurry:".into(),
..Default::default()
2024-02-25 03:02:10 +00:00
}));
2024-02-17 20:43:46 +00:00
for size in [9, 12, 16, 18, 24, 32] {
2024-02-25 03:02:10 +00:00
elem.push(Box::new(Text {
2024-02-17 20:43:46 +00:00
text: "Testing default font, Proggy Tiny".into(),
text_size: size,
..Default::default()
2024-02-25 03:02:10 +00:00
}));
2024-02-17 20:43:46 +00:00
}
2024-02-29 15:02:05 +00:00
elem.push(Box::new(FillRect {
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
2024-03-24 21:18:15 +00:00
frame: Box::new(vec4(0., 0., 1., 1.)),
2024-02-25 03:02:10 +00:00
}));
2024-02-29 15:02:05 +00:00
elem.push(Box::new(FillRect {
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
2024-03-24 21:18:15 +00:00
frame: Box::new(vec4(1., 1., 0., 1.)),
2024-02-25 03:02:10 +00:00
}));
elem.push(Box::new(Text {
2024-02-17 20:43:46 +00:00
text: "Hello, world!\nżółty liść. życie nie ma sensu i wszyscy zginemy;\nтест кирилиці їїїїїїїїїїї\njapanese text: テスト".into(),
font: Some(font_handle),
2024-02-17 20:43:46 +00:00
text_size: 32,
..Default::default()
2024-02-25 03:02:10 +00:00
}));
2024-02-17 20:43:46 +00:00
if instant.elapsed().as_secs() & 1 != 0 {
2024-02-29 15:02:05 +00:00
elem.push(Box::new(FillRect {
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
2024-03-24 21:18:15 +00:00
frame: Box::new(vec4(1., 0., 0., 1.)),
2024-02-25 03:02:10 +00:00
}));
2024-02-29 15:02:05 +00:00
elem.push(Box::new(FillRect {
size: (Size::Relative(1.), Size::Absolute(10.)).into(),
2024-03-24 21:18:15 +00:00
frame: Box::new(vec4(0., 0., 0., 1.)),
2024-02-25 03:02:10 +00:00
}));
elem.push(Box::new(Spacer(100.)));
elem.push(Box::new(Text {
2024-02-17 20:43:46 +00:00
text: "FLAG SHOULD NOT OVERLAP WITH TEXT".into(),
text_size: 64,
color: vec4(1., 0., 1., 1.),
..Default::default()
2024-02-25 03:02:10 +00:00
}));
2024-02-17 20:43:46 +00:00
}
}),
..Default::default()
}, resolution);
2024-02-17 20:47:21 +00:00
hui.end();
2024-02-17 20:43:46 +00:00
2024-02-17 20:47:21 +00:00
backend.update(&hui);
2024-02-17 20:43:46 +00:00
backend.draw(&mut frame, resolution);
frame.finish().unwrap();
}
_ => (),
}
}).unwrap();
}