line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
/* |
2
|
|
|
|
|
|
|
Copyright (C) 2016-2017 Alexander Borisov |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or |
5
|
|
|
|
|
|
|
modify it under the terms of the GNU Lesser General Public |
6
|
|
|
|
|
|
|
License as published by the Free Software Foundation; either |
7
|
|
|
|
|
|
|
version 2.1 of the License, or (at your option) any later version. |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful, |
10
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
11
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12
|
|
|
|
|
|
|
Lesser General Public License for more details. |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public |
15
|
|
|
|
|
|
|
License along with this library; if not, write to the Free Software |
16
|
|
|
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Author: lex.borisov@gmail.com (Alexander Borisov) |
19
|
|
|
|
|
|
|
*/ |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
#include "myfont/loca.h" |
22
|
|
|
|
|
|
|
|
23
|
0
|
|
|
|
|
|
mystatus_t myfont_load_table_loca(myfont_font_t* mf, uint8_t* font_data, size_t data_size) |
24
|
|
|
|
|
|
|
{ |
25
|
0
|
|
|
|
|
|
memset(&mf->table_loca, 0, sizeof(myfont_table_loca_t)); |
26
|
|
|
|
|
|
|
|
27
|
0
|
0
|
|
|
|
|
if(mf->cache.tables_offset[MyFONT_TKEY_loca] == 0) |
28
|
0
|
|
|
|
|
|
return MyFONT_STATUS_OK; |
29
|
|
|
|
|
|
|
|
30
|
0
|
|
|
|
|
|
myfont_table_loca_t *tloca = &mf->table_loca; |
31
|
0
|
|
|
|
|
|
uint32_t table_offset = mf->cache.tables_offset[MyFONT_TKEY_loca]; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
/* get current data */ |
34
|
0
|
|
|
|
|
|
uint8_t *data = &font_data[table_offset]; |
35
|
0
|
|
|
|
|
|
uint16_t numGlyph = mf->table_maxp.numGlyphs; |
36
|
|
|
|
|
|
|
|
37
|
0
|
0
|
|
|
|
|
if(numGlyph == 0) |
38
|
0
|
|
|
|
|
|
return MyFONT_STATUS_ERROR_TABLE_BROKEN; |
39
|
|
|
|
|
|
|
|
40
|
0
|
|
|
|
|
|
numGlyph++; |
41
|
|
|
|
|
|
|
|
42
|
0
|
|
|
|
|
|
tloca->offsets = (uint32_t *)myfont_calloc(mf, numGlyph, sizeof(uint32_t)); |
43
|
|
|
|
|
|
|
|
44
|
0
|
0
|
|
|
|
|
if(tloca->offsets == NULL) |
45
|
0
|
|
|
|
|
|
return MyFONT_STATUS_ERROR_MEMORY_ALLOCATION; |
46
|
|
|
|
|
|
|
|
47
|
0
|
0
|
|
|
|
|
if(mf->table_head.indexToLocFormat) |
48
|
|
|
|
|
|
|
{ |
49
|
0
|
0
|
|
|
|
|
if(data_size < (table_offset + (numGlyph * 4))) { |
50
|
0
|
|
|
|
|
|
myfont_free(mf, tloca->offsets); |
51
|
0
|
|
|
|
|
|
return MyFONT_STATUS_ERROR_TABLE_UNEXPECTED_ENDING; |
52
|
|
|
|
|
|
|
} |
53
|
|
|
|
|
|
|
|
54
|
0
|
0
|
|
|
|
|
for(size_t i = 0; i < numGlyph; i++) { |
55
|
0
|
|
|
|
|
|
tloca->offsets[i] = myfont_read_u32(&data); |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
} |
58
|
|
|
|
|
|
|
else |
59
|
|
|
|
|
|
|
{ |
60
|
0
|
0
|
|
|
|
|
if(data_size < (table_offset + (numGlyph * 2))) { |
61
|
0
|
|
|
|
|
|
myfont_free(mf, tloca->offsets); |
62
|
0
|
|
|
|
|
|
return MyFONT_STATUS_ERROR_TABLE_UNEXPECTED_ENDING; |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
|
65
|
0
|
0
|
|
|
|
|
for(size_t i = 0; i < numGlyph; i++) { |
66
|
0
|
|
|
|
|
|
tloca->offsets[i] = myfont_read_u16(&data) * 2; |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
} |
69
|
|
|
|
|
|
|
|
70
|
0
|
|
|
|
|
|
return MyFONT_STATUS_OK; |
71
|
|
|
|
|
|
|
} |
72
|
|
|
|
|
|
|
|
73
|
0
|
|
|
|
|
|
uint32_t myfont_loca_get_offset(struct myfont_font *mf, uint16_t glyph_index) |
74
|
|
|
|
|
|
|
{ |
75
|
0
|
0
|
|
|
|
|
if(glyph_index >= mf->table_maxp.numGlyphs) |
76
|
0
|
|
|
|
|
|
return mf->table_loca.offsets[0]; |
77
|
|
|
|
|
|
|
|
78
|
0
|
|
|
|
|
|
return mf->table_loca.offsets[glyph_index]; |
79
|
|
|
|
|
|
|
} |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|