26 #error This file should be included from mg_drawtext.c
29 static void RenderGlyphFn( TDColor *pixel,
U8BIT *grey_src,
U16BIT height,
32 , TDColor *cnvs_min, TDColor *cnvs_max
37 TDColor td_col = MakeTDColor(full_col);
39 CalcColorArray(td_col);
43 if (IsOpaqueColor(td_col))
47 for (x = width; x--; grey_src++, pixel++)
49 U32BIT grey_val = GreyValue( *grey_src );
51 assert((pixel >= cnvs_min) && (pixel < cnvs_max));
53 if (grey_val == SRC_FORE_MAX)
59 CombineAlphaColour( *pixel, grey_val, full_col, td_col )
70 for (x = width; x--; grey_src++, pixel++)
72 U32BIT grey_val = GreyValue( *grey_src );
74 assert((pixel >= cnvs_min) && (pixel < cnvs_max));
76 CombineAlphaColour( *pixel, grey_val, full_col, td_col )
85 FT_Face the_face,
U8BIT vt_justify,
U8BIT hz_justify,
89 U32BIT m_size, pixel_line_start;
90 TDColor *text_origin, *line_origin, *char_origin;
93 S32BIT left, right, ctop, avail_width, hd_top;
94 U16BIT line_num, char_ndx, cheight, buff_stride;
98 TDColor *cnvs_min, *cnvs_max;
104 avail_width = canvas->
width;
105 text_origin = (TDColor *)canvas->
col_buff;
108 cnvs_min = text_origin;
109 m_size = buff_stride;
111 cnvs_max = &text_origin[m_size];
120 if (total_lines > avail_lines)
122 line_num = total_lines - avail_lines;
123 while (disp_lines->
line_num < line_num)
125 char_ndx = disp_lines->
end_ndx;
128 cheight = avail_lines - 1;
132 cheight = total_lines - 1;
134 cheight = (cheight * line_space) + sz_data->
bb_sd_height;
135 assert( cheight <= sd_height );
136 if (cheight < sd_height)
138 sd_top += sd_height - cheight;
143 if (total_lines > avail_lines)
145 total_lines = avail_lines;
147 cheight = ((total_lines - 1) * line_space) + sz_data->
bb_sd_height;
148 assert( cheight <= sd_height );
149 if (cheight < sd_height)
151 sd_top += (sd_height - cheight) >> 1;
157 if (total_lines > avail_lines)
159 total_lines = avail_lines;
162 while (line_num != total_lines)
164 if (line_num == disp_lines->
line_num)
167 pixel_line_start -= hd_top;
168 line_origin = text_origin + (pixel_line_start * buff_stride);
173 left = right - avail_width;
178 left += (disp_lines->
l_width + 1 - avail_width) >> 1;
179 right += (disp_lines->
l_width + avail_width) >> 1;
184 right = left + avail_width;
187 for (char_ndx = disp_lines->
start_ndx; char_ndx != disp_lines->
end_ndx; char_ndx++)
189 pCharInfo = char_data + char_ndx;
192 NotTransparent(pCharInfo->
colour))
196 if (pCharInfo->
gf_ndx != 0)
198 load_flags = FT_LOAD_RENDER;
208 if (pCharInfo->
uni_chr == 0x00e3 ||
209 pCharInfo->
uni_chr == 0x00f1 ||
212 load_flags |= FT_LOAD_NO_AUTOHINT;
214 if (FT_Load_Glyph( the_face, pCharInfo->
gf_ndx, load_flags ) != 0)
221 assert( pCharInfo->
width == the_face->glyph->bitmap.width );
222 if (the_face->glyph->bitmap.pitch < 0)
223 m_size = -the_face->glyph->bitmap.pitch;
225 m_size = the_face->glyph->bitmap.pitch;
226 ctop -= the_face->glyph->bitmap_top;
227 cheight = the_face->glyph->bitmap.rows;
228 src_buff = the_face->glyph->bitmap.buffer;
234 m_size = c_sbit->
width;
241 char_origin = line_origin;
244 if ((pixel_line_start + ctop + cheight) > canvas->
height)
246 ctop = canvas->
height - (cheight + pixel_line_start);
248 char_origin += ctop * buff_stride;
252 RenderGlyphFn( char_origin, src_buff, cheight, pCharInfo->
width, (
U8BIT)m_size, buff_stride, pCharInfo->
colour
261 sd_top += line_space;
S32BIT l_width
Definition: mg_drawtext.c:138
U8BIT width
Definition: mg_font.h:73
U8BIT bb_sd_height
Definition: mg_font.h:90
S32BIT position
Definition: mg_drawtext.c:137
U16BIT end_ndx
Definition: mg_drawtext.c:141
U16BIT top
Definition: mg_font.h:61
U32BIT OSDColor
Definition: osdtypes.h:41
#define JUSTIFY_V_CENTRE
Definition: mg_drawtext.h:52
VBox bound_box
Definition: mg_font.h:82
int16_t S16BIT
Definition: techtype.h:96
U16BIT height
Definition: mg_osd.h:50
U8BIT width
Definition: mg_drawtext.c:155
uint8_t U8BIT
Definition: techtype.h:93
#define JUSTIFY_H_CENTRE
Definition: mg_drawtext.h:39
U16BIT gf_ndx
Definition: mg_drawtext.c:150
#define JUSTIFY_V_END
Definition: mg_drawtext.h:51
#define JUSTIFY_H_START
Definition: mg_drawtext.h:37
U16BIT uni_chr
Definition: mg_drawtext.c:149
S_MGContext mg_ctxt
Definition: mg_osd.c:143
Definition: mg_drawtext.c:135
#define FIRST_CACHE_CHAR
Definition: mg_font.h:34
Definition: mg_drawtext.c:144
#define JUSTIFY_H_END
Definition: mg_drawtext.h:38
OSDColor colour
Definition: mg_drawtext.c:151
int32_t S32BIT
Definition: techtype.h:98
S32BIT real_position
Definition: mg_drawtext.c:146
uint16_t U16BIT
Definition: techtype.h:95
U8BIT opaque
Definition: mg_osd.h:54
U32BIT buff_pitch
Definition: mg_osd.h:53
#define JUSTIFY_V_START
Definition: mg_drawtext.h:50
S_RATIO osd_y
Definition: mg_ctxt.h:86
U8BIT bb_sd_top
Definition: mg_font.h:92
#define FALSE
Definition: techtype.h:85
U32BIT bmp_ndx
Definition: mg_font.h:68
S8BIT top
Definition: mg_font.h:70
U16BIT line_num
Definition: mg_drawtext.c:139
CacheSbit * sbit_cache
Definition: mg_font.h:84
#define CHAR_CACHE_SIZE
Definition: mg_font.h:35
void * col_buff
Definition: mg_osd.h:51
U8BIT height
Definition: mg_font.h:72
U16BIT width
Definition: mg_osd.h:49
U16BIT mlt
Definition: mg_ctxt.h:73
U16BIT start_ndx
Definition: mg_drawtext.c:140
uint32_t U32BIT
Definition: techtype.h:97
U16BIT div
Definition: mg_ctxt.h:74
U16BIT height
Definition: mg_font.h:63