1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
use std::mem;
use std::slice;
use std::ffi::CString;
use std::rc::Rc;
use std::cmp;
use std::ptr;
use std::path::Path;
use libc::c_uint;
use gl;
use gl::types::*;
use freetype::ffi;
use na::Vector2;
use na;
use text::Glyph;
#[path = "../error.rs"]
mod error;
pub struct Font {
library: ffi::FT_Library,
face: ffi::FT_Face,
texture_atlas: GLuint,
atlas_dimensions: Vector2<usize>,
glyphs: Vec<Option<Glyph>>,
height: i32,
}
impl Font {
pub fn from_memory(font: &[u8], size: i32) -> Rc<Font> {
Font::do_new(None, font, size)
}
pub fn new(path: &Path, size: i32) -> Rc<Font> {
Font::do_new(Some(path), &[], size)
}
pub fn do_new(path: Option<&Path>, memory: &[u8], size: i32) -> Rc<Font> {
let mut font = Font {
library: ptr::null_mut(),
face: ptr::null_mut(),
texture_atlas: 0,
atlas_dimensions: na::zero(),
glyphs: (0 .. 128).map(|_:isize| None).collect(),
height: 0
};
unsafe {
let _ = ffi::FT_Init_FreeType(&mut font.library);
match path {
Some(path) => {
let path = path.to_str().expect("Invalid path.");
let c_str = CString::new(path.as_bytes()).unwrap();
if ffi::FT_New_Face(font.library, c_str.as_ptr(), 0, &mut font.face) != 0 {
panic!("Failed to create TTF face.");
}
},
None => {
if ffi::FT_New_Memory_Face(font.library, &memory[0], memory.len() as ffi::FT_Long, 0, &mut font.face) != 0 {
panic!("Failed to create TTF face.");
}
}
}
let _ = ffi::FT_Set_Pixel_Sizes(font.face, 0, size as c_uint);
verify!(gl::ActiveTexture(gl::TEXTURE0));
let ft_glyph = (*font.face).glyph;
let max_width = 1024;
let mut row_width = 0;
let mut row_height = 0;
for curr in 0usize .. 128 {
if ffi::FT_Load_Char(font.face, curr as ffi::FT_ULong, ffi::FT_LOAD_RENDER) != 0 {
continue;
}
if row_width + (*ft_glyph).bitmap.width + 1 >= max_width {
font.atlas_dimensions.x = cmp::max(font.atlas_dimensions.x, row_width as usize);
font.atlas_dimensions.y = font.atlas_dimensions.y + row_height;
row_width = 0; row_height = 0;
}
let advance = Vector2::new(((*ft_glyph).advance.x >> 6) as f32, ((*ft_glyph).advance.y >> 6) as f32);
let dimensions = Vector2::new((*ft_glyph).bitmap.width as f32, (*ft_glyph).bitmap.rows as f32);
let offset = Vector2::new((*ft_glyph).bitmap_left as f32, (*ft_glyph).bitmap_top as f32);
let buf_len = (dimensions.x * dimensions.y) as usize;
let buffer = slice::from_raw_parts(&*(*ft_glyph).bitmap.buffer, buf_len).to_vec();
let glyph = Glyph::new(na::zero(), advance, dimensions, offset, buffer);
row_width = row_width + (dimensions.x + 1.0) as i32;
row_height = cmp::max(row_height, (*ft_glyph).bitmap.rows as usize);
font.height = cmp::max(font.height, row_height as i32);
font.glyphs[curr] = Some(glyph);
}
font.atlas_dimensions.x = (cmp::max(font.atlas_dimensions.x, row_width as usize)).next_power_of_two();
font.atlas_dimensions.y = (font.atlas_dimensions.y + row_height).next_power_of_two();
verify!(gl::PixelStorei(gl::UNPACK_ALIGNMENT, 1));
verify!(gl::GenTextures(1, &mut font.texture_atlas));
verify!(gl::BindTexture(gl::TEXTURE_2D, font.texture_atlas));
verify!(gl::TexImage2D(gl::TEXTURE_2D, 0, gl::RGB as GLint,
font.atlas_dimensions.x as i32, font.atlas_dimensions.y as i32,
0, gl::RED, gl::UNSIGNED_BYTE, ptr::null()));
verify!(gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_S, gl::CLAMP_TO_EDGE as i32));
verify!(gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_WRAP_T, gl::CLAMP_TO_EDGE as i32));
verify!(gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_MIN_FILTER, gl::LINEAR as i32));
verify!(gl::TexParameteri(gl::TEXTURE_2D, gl::TEXTURE_MAG_FILTER, gl::LINEAR as i32));
let mut offset: Vector2<i32> = na::zero();
row_height = 0;
for curr in 0usize .. 128 {
let glyph = match *&mut font.glyphs[curr] {
Some(ref mut g) => g,
None => continue
};
if offset.x + (glyph.dimensions.x as i32) + 1 >= max_width {
offset.y = offset.y + row_height as i32;
row_height = 0;
offset.x = 0;
}
if !glyph.buffer.is_empty() {
verify!(gl::TexSubImage2D(
gl::TEXTURE_2D, 0, offset.x, offset.y,
glyph.dimensions.x as i32, glyph.dimensions.y as i32,
gl::RED, gl::UNSIGNED_BYTE, mem::transmute(&glyph.buffer[0])));
}
glyph.tex.x = offset.x as f32 / (font.atlas_dimensions.x as f32);
glyph.tex.y = offset.y as f32 / (font.atlas_dimensions.y as f32);
offset.x = offset.x + glyph.dimensions.x as i32;
row_height = cmp::max(row_height, glyph.dimensions.y as usize);
}
}
verify!(gl::PixelStorei(gl::UNPACK_ALIGNMENT, 4));
assert!(font.height > 0);
Rc::new(font)
}
#[inline]
pub fn texture_atlas(&self) -> GLuint {
self.texture_atlas
}
#[inline]
pub fn atlas_dimensions(&self) -> Vector2<usize> {
self.atlas_dimensions
}
#[inline]
pub fn glyphs(&self) -> &[Option<Glyph>] {
&self.glyphs[..]
}
#[inline]
pub fn height(&self) -> i32 {
self.height
}
}
impl Drop for Font {
fn drop(&mut self) {
unsafe {
let _ = ffi::FT_Done_FreeType(self.library);
verify!(gl::DeleteTextures(1, &self.texture_atlas));
}
}
}