alacritty/src/main.rs

109 lines
3.1 KiB
Rust
Raw Normal View History

extern crate fontconfig;
extern crate freetype;
extern crate libc;
extern crate glutin;
extern crate gl;
extern crate cgmath;
2016-02-25 03:08:57 +00:00
extern crate euclid;
use std::collections::HashMap;
mod list_fonts;
mod text;
2016-02-26 04:59:21 +00:00
mod renderer;
mod grid;
2016-02-26 04:59:21 +00:00
use renderer::{Glyph, QuadRenderer};
2016-02-27 22:45:38 +00:00
use text::FontDesc;
use grid::Grid;
static INIT_LIST: &'static str = "abcdefghijklmnopqrstuvwxyz\
ABCDEFGHIJKLMNOPQRSTUVWXYZ\
01234567890\
~`!@#$%^&*()[]{}-_=+\\|\"/?.,<>";
2016-02-21 16:15:41 +00:00
fn main() {
let window = glutin::Window::new().unwrap();
let (width, height) = window.get_inner_size_pixels().unwrap();
unsafe {
2016-02-26 05:02:18 +00:00
window.make_current().unwrap();
}
unsafe {
gl::load_with(|symbol| window.get_proc_address(symbol) as *const _);
gl::Viewport(0, 0, width as i32, height as i32);
}
2016-02-28 04:26:31 +00:00
let (dpi_x, dpi_y) = window.get_dpi().unwrap();
let dpr = window.hidpi_factor();
let font_size = 12.0;
let sep_x = 2;
let sep_y = 2;
2016-02-27 22:45:38 +00:00
let desc = FontDesc::new("Ubuntu Mono", "Regular");
2016-02-28 04:26:31 +00:00
let mut rasterizer = text::Rasterizer::new(dpi_x, dpi_y, dpr);
2016-02-26 04:59:21 +00:00
let (cell_width, cell_height) = rasterizer.box_size_for_font(&desc, font_size);
let num_cols = grid::num_cells_axis(cell_width, sep_x, width);
let num_rows = grid::num_cells_axis(cell_height, sep_y, height);
println!("num_cols, num_rows = {}, {}", num_cols, num_rows);
let mut grid = Grid::new(num_rows as usize, num_cols as usize);
grid[0][0] = grid::Cell::new(Some(String::from("R")));
grid[0][1] = grid::Cell::new(Some(String::from("u")));
grid[0][2] = grid::Cell::new(Some(String::from("s")));
grid[0][3] = grid::Cell::new(Some(String::from("t")));
let mut glyph_cache = HashMap::new();
for c in INIT_LIST.chars() {
let glyph = Glyph::new(&rasterizer.get_glyph(&desc, font_size, c));
let string: String = c.escape_default().collect();
glyph_cache.insert(string, glyph);
}
unsafe {
gl::Enable(gl::BLEND);
gl::BlendFunc(gl::SRC_ALPHA, gl::ONE_MINUS_SRC_ALPHA);
gl::Enable(gl::MULTISAMPLE);
}
let renderer = QuadRenderer::new(width, height);
for event in window.wait_events() {
unsafe {
gl::ClearColor(0.08, 0.08, 0.08, 1.0);
gl::Clear(gl::COLOR_BUFFER_BIT);
}
for i in 0..grid.rows() {
let row = &grid[i];
for j in 0..row.cols() {
let cell = &row[j];
if let Some(ref c) = cell.character {
if let Some(glyph) = glyph_cache.get(&c[..]) {
let y = (cell_height as f32 + sep_y as f32) * (i as f32);
let x = (cell_width as f32 + sep_x as f32) * (j as f32);
let y_inverted = (height as f32) - y - (cell_height as f32);
renderer.render(glyph, x, y_inverted);
}
}
}
}
2016-02-26 05:02:18 +00:00
window.swap_buffers().unwrap();
match event {
glutin::Event::Closed => break,
_ => ()
}
}
}