Mercurial > mplayer.hg
annotate libass/ass_render.c @ 19387:969cc3590099
Do not call VFCTRL_FLUSH_FRAMES when the filter chain was never configured,
since that will cause crashes (try with e.g. -ss 99999999999999).
author | reimar |
---|---|
date | Mon, 14 Aug 2006 14:24:17 +0000 |
parents | d9d58ba1b833 |
children | bb5164e0f70f |
rev | line source |
---|---|
18937 | 1 #include "config.h" |
2 | |
3 #include <assert.h> | |
4 #include <math.h> | |
5 #include <stdint.h> | |
19378 | 6 #include <inttypes.h> |
18937 | 7 #include <ft2build.h> |
8 #include FT_FREETYPE_H | |
9 #include FT_STROKER_H | |
10 #include FT_GLYPH_H | |
11 #include FT_SYNTHESIS_H | |
12 | |
13 #include "mp_msg.h" | |
14 | |
15 #include "ass.h" | |
16 #include "ass_cache.h" | |
17 #include "ass_utils.h" | |
18 #include "ass_fontconfig.h" | |
19 | |
20 #include "libvo/sub.h" // for utf8_get_char | |
21 | |
22 #define MAX_GLYPHS 1000 | |
23 #define MAX_LINES 100 | |
24 | |
25 char *get_path(char *); | |
26 | |
27 extern char *font_name; | |
28 #ifdef HAVE_FONTCONFIG | |
29 extern int font_fontconfig; | |
30 #else | |
31 static int font_fontconfig = 0; | |
32 #endif | |
33 | |
34 struct ass_instance_s { | |
35 FT_Library library; | |
36 fc_instance_t* fontconfig_priv; | |
37 ass_settings_t settings; | |
38 | |
39 ass_image_t* images_root; // rendering result is stored here | |
40 int n_images; | |
41 int max_images; | |
42 }; | |
43 | |
44 int no_more_font_messages = 0; // don't print font warnings | |
45 | |
46 typedef enum {EF_NONE = 0, EF_KARAOKE, EF_KARAOKE_KF, EF_KARAOKE_KO} effect_t; | |
47 | |
48 // describes a glyph | |
49 // glyph_info_t and text_info_t are used for text centering and word-wrapping operations | |
50 typedef struct glyph_info_s { | |
51 unsigned symbol; | |
52 FT_Glyph glyph; | |
53 FT_Glyph outline_glyph; | |
54 FT_BBox bbox; | |
55 FT_Vector pos; | |
56 char linebreak; // the first (leading) glyph of some line ? | |
57 uint32_t c1, c2, c3, c4; // colors | |
58 char bitmap; // bool | |
59 FT_Vector advance; // 26.6 | |
60 effect_t effect_type; | |
61 int effect_timing; | |
62 int asc, desc; // font max ascender and descender | |
63 // int height; | |
64 | |
65 glyph_hash_key_t hash_key; | |
66 } glyph_info_t; | |
67 | |
68 typedef struct line_info_s { | |
69 int asc, desc; | |
70 } line_info_t; | |
71 | |
72 typedef struct text_info_s { | |
73 glyph_info_t* glyphs; | |
74 int length; | |
75 line_info_t lines[MAX_LINES]; | |
76 int n_lines; | |
77 int height; | |
78 } text_info_t; | |
79 | |
80 | |
81 // Renderer state. | |
82 // Values like current font face, color, screen position, clipping and so on are stored here. | |
83 typedef struct render_context_s { | |
84 ass_event_t* event; | |
85 ass_style_t* style; | |
86 | |
87 FT_Face face; | |
88 char* font_path; | |
89 int font_size; | |
90 | |
91 FT_Stroker stroker; | |
92 int alignment; // alignment overrides go here; if zero, style value will be used | |
93 double rotation; | |
94 enum { EVENT_NORMAL, // "normal" top-, sub- or mid- title | |
95 EVENT_POSITIONED // happens after pos(,), margins are ignored | |
96 } evt_type; | |
97 int pos_x, pos_y; // position | |
98 int org_x, org_y; // origin | |
99 double scale_x, scale_y; | |
100 int hspacing; // distance between letters, in pixels | |
101 double border; // outline width | |
102 uint32_t c1, c2, c3, c4; // colors(Primary, Secondary, so on) in RGBA | |
103 int clip_x0, clip_y0, clip_x1, clip_y1; | |
104 char detect_collisions; | |
105 | |
106 effect_t effect_type; | |
107 int effect_timing; | |
108 | |
109 // face properties | |
110 char* family; | |
111 unsigned bold; | |
112 unsigned italic; | |
113 | |
114 } render_context_t; | |
115 | |
116 // frame-global data | |
117 typedef struct frame_context_s { | |
118 ass_instance_t* ass_priv; | |
119 int width, height; // screen dimensions | |
120 int orig_height; // frame height ( = screen height - margins ) | |
121 ass_track_t* track; | |
122 int add_bottom_margin; // additional margin, used to shift subtitles in case of collision | |
123 int add_top_margin; | |
124 long long time; // frame's timestamp, ms | |
125 double font_scale_x; // x scale applied to all glyphs to preserve text aspect ratio | |
126 } frame_context_t; | |
127 | |
128 static ass_instance_t* ass_instance; | |
129 static ass_settings_t* global_settings; | |
130 static text_info_t text_info; | |
131 static render_context_t render_context; | |
132 static frame_context_t frame_context; | |
133 | |
134 static void ass_lazy_track_init(void) | |
135 { | |
136 ass_track_t* track = frame_context.track; | |
137 if (track->PlayResX && track->PlayResY) | |
138 return; | |
139 if (!track->PlayResX && !track->PlayResY) { | |
140 mp_msg(MSGT_GLOBAL, MSGL_WARN, "Neither PlayResX nor PlayResY defined. Assuming 384x288. \n"); | |
141 track->PlayResX = 384; | |
142 track->PlayResY = 288; | |
143 } else { | |
144 double orig_aspect = (global_settings->aspect * frame_context.height) / frame_context.orig_height; | |
145 if (!track->PlayResY) { | |
146 track->PlayResY = track->PlayResX / orig_aspect + .5; | |
147 mp_msg(MSGT_GLOBAL, MSGL_WARN, "PlayResY undefined, setting %d \n", track->PlayResY); | |
148 } else if (!track->PlayResX) { | |
149 track->PlayResX = track->PlayResY * orig_aspect + .5; | |
150 mp_msg(MSGT_GLOBAL, MSGL_WARN, "PlayResX undefined, setting %d \n", track->PlayResX); | |
151 } | |
152 } | |
153 } | |
154 | |
155 ass_instance_t* ass_init(void) | |
156 { | |
157 char* family = 0; | |
158 char* path = 0; | |
159 char* fonts_path = 0; | |
160 int error; | |
161 fc_instance_t* fc_priv; | |
162 FT_Library ft; | |
163 ass_instance_t* priv; | |
164 | |
165 if (font_fontconfig && font_name) | |
166 family = strdup(font_name); | |
167 | |
168 if (!font_fontconfig && font_name) | |
169 path = strdup(font_name); | |
170 else | |
171 path = get_path("subfont.ttf"); | |
172 | |
173 fonts_path = get_path("fonts"); | |
174 | |
175 fc_priv = fontconfig_init(fonts_path, family, path); | |
176 | |
177 free(fonts_path); | |
178 if (path) free(path); | |
179 if (family) free(family); | |
180 | |
181 if (!fc_priv) | |
182 return 0; | |
183 | |
184 error = FT_Init_FreeType( &ft ); | |
185 if ( error ) { | |
186 mp_msg(MSGT_GLOBAL, MSGL_FATAL, "FT_Init_FreeType failed\n"); | |
187 fontconfig_done(fc_priv); | |
188 return 0; | |
189 } | |
190 | |
191 priv = calloc(1, sizeof(ass_instance_t)); | |
192 if (!priv) { | |
193 FT_Done_FreeType(ft); | |
194 fontconfig_done(fc_priv); | |
195 return 0; | |
196 } | |
197 priv->library = ft; | |
198 priv->fontconfig_priv = fc_priv; | |
199 // images_root and related stuff is zero-filled in calloc | |
200 | |
201 ass_face_cache_init(); | |
202 ass_glyph_cache_init(); | |
203 | |
204 text_info.glyphs = calloc(MAX_GLYPHS, sizeof(glyph_info_t)); | |
205 | |
206 return priv; | |
207 } | |
208 | |
209 void ass_done(ass_instance_t* priv) | |
210 { | |
211 ass_face_cache_done(); | |
212 ass_glyph_cache_done(); | |
213 if (priv && priv->library) FT_Done_FreeType(priv->library); | |
214 if (priv && priv->fontconfig_priv) fontconfig_done(priv->fontconfig_priv); | |
215 if (priv) free(priv); | |
216 if (text_info.glyphs) free(text_info.glyphs); | |
217 } | |
218 | |
219 /** | |
220 * \brief Create a new ass_image_t and append it to images_root | |
221 * Parameters are the same as ass_image_t fields. | |
222 */ | |
223 static void my_draw_bitmap(unsigned char* bitmap, int bitmap_w, int bitmap_h, int stride, int dst_x, int dst_y, uint32_t color) | |
224 { | |
225 ass_instance_t* priv = ass_instance; | |
226 ass_image_t* img; | |
227 | |
228 assert(priv->n_images <= priv->max_images); | |
229 if (priv->n_images == priv->max_images) { | |
230 if (!priv->max_images) priv->max_images = 100; | |
231 else priv->max_images *= 2; | |
232 priv->images_root = (ass_image_t*)realloc(priv->images_root, priv->max_images * sizeof(ass_image_t)); | |
233 } | |
234 assert(priv->images_root); | |
235 img = priv->images_root + priv->n_images; | |
236 | |
237 img->w = bitmap_w; | |
238 img->h = bitmap_h; | |
239 img->stride = stride; | |
240 img->bitmap = bitmap; | |
241 img->color = color; | |
242 img->dst_x = dst_x; | |
243 img->dst_y = dst_y; | |
244 | |
245 priv->n_images++; | |
246 } | |
247 | |
248 /** | |
249 * \brief convert bitmap glyph into ass_image_t struct(s) | |
250 * \param bit freetype bitmap glyph, FT_PIXEL_MODE_GRAY | |
251 * \param dst_x bitmap x coordinate in video frame | |
252 * \param dst_y bitmap y coordinate in video frame | |
253 * \param color first color, RGBA | |
254 * \param color2 second color, RGBA | |
255 * \param brk x coordinate relative to glyph origin, color is used to the left of brk, color2 - to the right | |
256 * Performs clipping. Uses my_draw_bitmap for actual bitmap convertion. | |
257 */ | |
258 static int render_glyph(FT_BitmapGlyph bit, int dst_x, int dst_y, uint32_t color, uint32_t color2, int brk) | |
259 { | |
260 // brk is relative to dst_x | |
261 // color = color left of brk | |
262 // color2 = color right of brk | |
263 int b_x0, b_y0, b_x1, b_y1; // visible part of the bitmap | |
264 int clip_x0, clip_y0, clip_x1, clip_y1; | |
265 int tmp; | |
266 FT_Bitmap* bitmap; | |
267 | |
268 bitmap = &(bit->bitmap); | |
269 dst_x += bit->left; | |
270 dst_y -= bit->top; | |
271 brk -= bit->left; | |
272 | |
273 if (bitmap->pixel_mode != FT_PIXEL_MODE_GRAY) { | |
274 mp_msg(MSGT_GLOBAL, MSGL_WARN, "Unsupported pixel mode: %d\n", (int)(bitmap->pixel_mode)); | |
275 return 1; | |
276 } | |
277 | |
278 // clipping | |
279 clip_x0 = render_context.clip_x0; | |
280 clip_y0 = render_context.clip_y0; | |
281 clip_x1 = render_context.clip_x1; | |
282 clip_y1 = render_context.clip_y1; | |
283 b_x0 = 0; | |
284 b_y0 = 0; | |
285 b_x1 = bitmap->width; | |
286 b_y1 = bitmap->rows; | |
287 | |
288 tmp = dst_x - clip_x0; | |
289 if (tmp < 0) { | |
290 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "clip left\n"); | |
291 b_x0 = - tmp; | |
292 } | |
293 tmp = dst_y - clip_y0; | |
294 if (tmp < 0) { | |
295 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "clip top\n"); | |
296 b_y0 = - tmp; | |
297 } | |
298 tmp = clip_x1 - dst_x - bitmap->width; | |
299 if (tmp < 0) { | |
300 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "clip right\n"); | |
301 b_x1 = bitmap->width + tmp; | |
302 } | |
303 tmp = clip_y1 - dst_y - bitmap->rows; | |
304 if (tmp < 0) { | |
305 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "clip bottom\n"); | |
306 b_y1 = bitmap->rows + tmp; | |
307 } | |
308 | |
309 if ((b_y0 >= b_y1) || (b_x0 >= b_x1)) | |
310 return 0; | |
311 | |
312 if (brk > b_x0) { // draw left part | |
313 if (brk > b_x1) brk = b_x1; | |
314 my_draw_bitmap(bitmap->buffer + bitmap->pitch * b_y0 + b_x0, | |
315 brk - b_x0, b_y1 - b_y0, bitmap->pitch, | |
316 dst_x + b_x0, dst_y + b_y0, color); | |
317 } | |
318 if (brk < b_x1) { // draw right part | |
319 if (brk < b_x0) brk = b_x0; | |
320 my_draw_bitmap(bitmap->buffer + bitmap->pitch * b_y0 + brk, | |
321 b_x1 - brk, b_y1 - b_y0, bitmap->pitch, | |
322 dst_x + brk, dst_y + b_y0, color2); | |
323 | |
324 } | |
325 return 0; | |
326 } | |
327 | |
328 /** | |
329 * \brief Render text_info_t struct into ass_images_t list | |
330 * Rasterize glyphs and put them in glyph cache. | |
331 */ | |
332 static int render_text(text_info_t* text_info, int dst_x, int dst_y) | |
333 { | |
334 int pen_x, pen_y; | |
335 int error, error2; | |
336 int i; | |
337 FT_Glyph image; | |
338 FT_BitmapGlyph bit; | |
339 glyph_hash_val_t hash_val; | |
340 | |
341 for (i = 0; i < text_info->length; ++i) { | |
342 if (text_info->glyphs[i].bitmap != 1) { | |
343 if ((text_info->glyphs[i].symbol == '\n') || (text_info->glyphs[i].symbol == 0)) | |
344 continue; | |
345 error = FT_Glyph_To_Bitmap( &(text_info->glyphs[i].outline_glyph), FT_RENDER_MODE_NORMAL, 0, 1); | |
346 error2 = FT_Glyph_To_Bitmap( &(text_info->glyphs[i].glyph), FT_RENDER_MODE_NORMAL, 0, 1); | |
347 | |
348 if (error || error2) { | |
349 FT_Done_Glyph(text_info->glyphs[i].outline_glyph); | |
350 FT_Done_Glyph(text_info->glyphs[i].glyph); | |
351 mp_msg(MSGT_GLOBAL, MSGL_WARN, "FT_Glyph_To_Bitmap error %d %d, symbol %d, index %d\n", | |
352 error, error2, text_info->glyphs[i].symbol, text_info->glyphs[i].hash_key.index); | |
353 text_info->glyphs[i].symbol = 0; // do not render | |
354 continue; | |
355 } | |
356 // cache | |
357 text_info->glyphs[i].hash_key.bitmap = 1; // other hash_key fields were set in get_glyph() | |
358 hash_val.bbox_scaled = text_info->glyphs[i].bbox; | |
359 hash_val.outline_glyph = text_info->glyphs[i].outline_glyph; | |
360 hash_val.glyph = text_info->glyphs[i].glyph; | |
361 hash_val.advance.x = text_info->glyphs[i].advance.x; | |
362 hash_val.advance.y = text_info->glyphs[i].advance.y; | |
363 cache_add_glyph(&(text_info->glyphs[i].hash_key), &hash_val); | |
364 } | |
365 } | |
366 | |
367 for (i = 0; i < text_info->length; ++i) { | |
368 glyph_info_t* info = text_info->glyphs + i; | |
369 if ((info->symbol == 0) || (info->symbol == '\n')) | |
370 continue; | |
371 | |
372 pen_x = dst_x + info->pos.x; | |
373 pen_y = dst_y + info->pos.y; | |
374 image = info->outline_glyph; | |
375 bit = (FT_BitmapGlyph)image; | |
376 | |
377 if ((info->effect_type == EF_KARAOKE_KO) && (info->effect_timing <= info->bbox.xMax)) { | |
378 // do nothing | |
379 } else | |
380 render_glyph(bit, pen_x, pen_y, info->c3, 0, 1000000); | |
381 } | |
382 for (i = 0; i < text_info->length; ++i) { | |
383 glyph_info_t* info = text_info->glyphs + i; | |
384 if ((info->symbol == 0) || (info->symbol == '\n')) | |
385 continue; | |
386 | |
387 pen_x = dst_x + info->pos.x; | |
388 pen_y = dst_y + info->pos.y; | |
389 image = info->glyph; | |
390 bit = (FT_BitmapGlyph)image; | |
391 | |
392 if ((info->effect_type == EF_KARAOKE) || (info->effect_type == EF_KARAOKE_KO)) { | |
393 if (info->effect_timing > info->bbox.xMax) | |
394 render_glyph(bit, pen_x, pen_y, info->c1, 0, 1000000); | |
395 else | |
396 render_glyph(bit, pen_x, pen_y, info->c2, 0, 1000000); | |
397 } else if (info->effect_type == EF_KARAOKE_KF) { | |
398 render_glyph(bit, pen_x, pen_y, info->c1, info->c2, info->effect_timing); | |
399 } else | |
400 render_glyph(bit, pen_x, pen_y, info->c1, 0, 1000000); | |
401 } | |
402 | |
403 return 0; | |
404 } | |
405 | |
406 /** | |
407 * \brief Mapping between script and screen coordinates | |
408 */ | |
409 static int x2scr(int x) { | |
410 return x*frame_context.width / frame_context.track->PlayResX; | |
411 } | |
412 /** | |
413 * \brief Mapping between script and screen coordinates | |
414 */ | |
415 static int y2scr(int y) { | |
416 return y * frame_context.orig_height / frame_context.track->PlayResY + global_settings->top_margin; | |
417 } | |
418 // the same for toptitles | |
419 static int y2scr_top(int y) { | |
420 return y * frame_context.orig_height / frame_context.track->PlayResY; | |
421 } | |
422 // the same for subtitles | |
423 static int y2scr_sub(int y) { | |
424 return y * frame_context.orig_height / frame_context.track->PlayResY + global_settings->top_margin + global_settings->bottom_margin; | |
425 } | |
426 | |
427 static void vmirror_bbox(FT_BBox* orig, FT_BBox* pbbox) { | |
428 pbbox->xMin = orig->xMin; | |
429 pbbox->xMax = orig->xMax; | |
430 pbbox->yMin = - orig->yMax; | |
431 pbbox->yMax = - orig->yMin; | |
432 } | |
433 | |
434 static void compute_string_bbox( text_info_t* info, FT_BBox *abbox ) { | |
435 FT_BBox bbox; | |
436 int n; | |
437 | |
438 /* initialize string bbox to "empty" values */ | |
439 bbox.xMin = bbox.yMin = 32000; | |
440 bbox.xMax = bbox.yMax = -32000; | |
441 | |
442 /* for each glyph image, compute its bounding box, */ | |
443 /* translate it, and grow the string bbox */ | |
444 for ( n = 0; n < info->length; n++ ) { | |
445 FT_BBox glyph_bbox; | |
446 vmirror_bbox( &(info->glyphs[n].bbox), &glyph_bbox ); | |
447 glyph_bbox.xMin += info->glyphs[n].pos.x; | |
448 glyph_bbox.xMax += info->glyphs[n].pos.x; | |
449 glyph_bbox.yMin += info->glyphs[n].pos.y; | |
450 glyph_bbox.yMax += info->glyphs[n].pos.y; | |
451 if ( glyph_bbox.xMin < bbox.xMin ) bbox.xMin = glyph_bbox.xMin; | |
452 if ( glyph_bbox.yMin < bbox.yMin ) bbox.yMin = glyph_bbox.yMin; | |
453 if ( glyph_bbox.xMax > bbox.xMax ) bbox.xMax = glyph_bbox.xMax; | |
454 if ( glyph_bbox.yMax > bbox.yMax ) bbox.yMax = glyph_bbox.yMax; | |
455 } | |
456 | |
457 /* check that we really grew the string bbox */ | |
458 if ( bbox.xMin > bbox.xMax ) { | |
459 bbox.xMin = 0; | |
460 bbox.yMin = 0; | |
461 bbox.xMax = 0; | |
462 bbox.yMax = 0; | |
463 } | |
464 | |
465 /* return string bbox */ | |
466 *abbox = bbox; | |
467 } | |
468 | |
469 | |
470 /** | |
471 * \brief Check if starting part of (*p) matches sample. If true, shift p to the first symbol after the matching part. | |
472 */ | |
19104
2ec2301183cd
marks several read-only string parameters which aren't modified inside the called function as const. Patch by Stefan Huehner, stefan AT huehner-org
reynaldo
parents:
19066
diff
changeset
|
473 static inline int mystrcmp(char** p, const char* sample) { |
18937 | 474 int len = strlen(sample); |
475 if (strncmp(*p, sample, len) == 0) { | |
476 (*p) += len; | |
477 return 1; | |
478 } else | |
479 return 0; | |
480 } | |
481 | |
482 static void change_font_size(int sz) | |
483 { | |
484 double size = (double)sz * global_settings->font_size_coeff * 0.8; | |
485 size *= frame_context.height; | |
486 size /= frame_context.track->PlayResY; | |
487 | |
488 if (size < 1) | |
489 size = 1; | |
490 else if (size > frame_context.height * 2) | |
491 size = frame_context.height * 2; | |
492 | |
493 FT_Set_Pixel_Sizes(render_context.face, 0, size); | |
494 | |
495 render_context.font_size = sz; | |
496 } | |
497 | |
498 /** | |
499 * \brief Change current font, using setting from render_context. | |
500 */ | |
501 static void update_font(void) | |
502 { | |
503 int error; | |
504 unsigned val; | |
505 ass_instance_t* priv = frame_context.ass_priv; | |
506 face_desc_t desc; | |
507 desc.family = strdup(render_context.family); | |
508 | |
509 val = render_context.bold; | |
510 // 0 = normal, 1 = bold, >1 = exact weight | |
511 if (val == 0) val = 80; // normal | |
512 else if (val == 1) val = 200; // bold | |
513 desc.bold = val; | |
514 | |
515 val = render_context.italic; | |
516 if (val == 0) val = 0; // normal | |
517 else if (val == 1) val = 110; //italic | |
518 desc.italic = val; | |
519 | |
520 error = ass_new_face(priv->library, priv->fontconfig_priv, &desc, &(render_context.face)); | |
521 if (error) { | |
522 render_context.face = 0; | |
523 } | |
524 | |
525 if (render_context.face) | |
526 { | |
527 change_font_size(render_context.font_size); | |
528 } | |
529 } | |
530 | |
531 /** | |
532 * \brief Change border width | |
533 */ | |
534 static void change_border(double border) | |
535 { | |
536 if (!render_context.stroker) { | |
537 if (!no_more_font_messages) | |
538 mp_msg(MSGT_GLOBAL, MSGL_WARN, "No stroker!\n"); | |
539 } else { | |
540 render_context.border = border; | |
541 FT_Stroker_Set( render_context.stroker, | |
542 (int)(64 * border), | |
543 FT_STROKER_LINECAP_ROUND, | |
544 FT_STROKER_LINEJOIN_ROUND, | |
545 0 ); | |
546 } | |
547 } | |
548 | |
549 #define _r(c) ((c)>>24) | |
550 #define _g(c) (((c)>>16)&0xFF) | |
551 #define _b(c) (((c)>>8)&0xFF) | |
552 #define _a(c) ((c)&0xFF) | |
553 | |
554 /** | |
555 * \brief Calculate a weighted average of two colors | |
556 * calculates c1*(1-a) + c2*a, but separately for each component except alpha | |
557 */ | |
558 static void change_color(uint32_t* var, uint32_t new, double pwr) | |
559 { | |
560 (*var)= ((uint32_t)(_r(*var) * (1 - pwr) + _r(new) * pwr) << 24) + | |
561 ((uint32_t)(_g(*var) * (1 - pwr) + _g(new) * pwr) << 16) + | |
562 ((uint32_t)(_b(*var) * (1 - pwr) + _b(new) * pwr) << 8) + | |
563 _a(*var); | |
564 } | |
565 | |
566 // like change_color, but for alpha component only | |
567 static void change_alpha(uint32_t* var, uint32_t new, double pwr) | |
568 { | |
569 *var = (_r(*var) << 24) + (_g(*var) << 16) + (_b(*var) << 8) + (_a(*var) * (1 - pwr) + _a(new) * pwr); | |
570 } | |
571 | |
572 | |
573 /** | |
574 * \brief Calculate alpha value by piecewise linear function | |
575 * Used for \fad, \fade implementation. | |
576 */ | |
577 static void interpolate_alpha(long long now, | |
578 long long t1, long long t2, long long t3, long long t4, | |
579 unsigned a1, unsigned a2, unsigned a3) | |
580 { | |
581 unsigned a; | |
582 double cf; | |
583 if (now <= t1) { | |
584 a = a1; | |
585 } else if (now >= t4) { | |
586 a = a3; | |
587 } else if (now < t2) { // and > t1 | |
588 cf = ((double)(now - t1)) / (t2 - t1); | |
589 a = a1 * (1 - cf) + a2 * cf; | |
590 } else if (now > t3) { | |
591 cf = ((double)(now - t3)) / (t4 - t3); | |
592 a = a2 * (1 - cf) + a3 * cf; | |
593 } else { // t2 <= now <= t3 | |
594 a = a2; | |
595 } | |
596 | |
597 | |
598 change_alpha(&render_context.c1, a, 1.); | |
599 change_alpha(&render_context.c2, a, 1.); | |
600 change_alpha(&render_context.c3, a, 1.); | |
601 change_alpha(&render_context.c4, a, 1.); | |
602 } | |
603 | |
604 /** | |
605 * \brief Parse style override tag. | |
606 * \param p string to parse | |
607 * \param pwr multiplier for some tag effects (comes from \t tags) | |
608 */ | |
609 static char* parse_tag(char* p, double pwr) { | |
610 #define skip_all(x) if (*p == (x)) ++p; else { \ | |
611 while ((*p != (x)) && (*p != '}') && (*p != 0)) {++p;} } | |
612 #define skip(x) if (*p == (x)) ++p; else { return p; } | |
613 | |
614 skip_all('\\'); | |
615 if ((*p == '}') || (*p == 0)) | |
616 return p; | |
617 | |
618 if (mystrcmp(&p, "fsc")) { | |
619 char tp = *p++; | |
620 double val; | |
621 if (tp == 'x') { | |
622 if (mystrtod(&p, &val)) { | |
623 val /= 100; | |
624 render_context.scale_x = (val - 1.) * pwr + 1.; | |
625 } else | |
626 render_context.scale_x = render_context.style->ScaleX; | |
627 } else if (tp == 'y') { | |
628 if (mystrtod(&p, &val)) { | |
629 val /= 100; | |
630 render_context.scale_y = (val - 1.) * pwr + 1.; | |
631 } else | |
632 render_context.scale_y = render_context.style->ScaleY; | |
633 } | |
634 } else if (mystrcmp(&p, "fsp")) { | |
635 int val; | |
636 if (mystrtoi(&p, 10, &val)) | |
637 render_context.hspacing = val * pwr; | |
638 else | |
639 render_context.hspacing = 0; | |
640 } else if (mystrcmp(&p, "fs")) { | |
641 int val; | |
642 if (mystrtoi(&p, 10, &val)) | |
643 val = render_context.font_size * ( 1 - pwr ) + val * pwr; | |
644 else | |
645 val = render_context.style->FontSize; | |
646 if (render_context.face) | |
647 change_font_size(val); | |
648 } else if (mystrcmp(&p, "bord")) { | |
649 double val; | |
650 if (mystrtod(&p, &val)) | |
651 val = render_context.border * ( 1 - pwr ) + val * pwr; | |
652 else | |
653 val = (render_context.style->BorderStyle == 1) ? render_context.style->Outline : 1.; | |
654 change_border(val); | |
655 } else if (mystrcmp(&p, "move")) { | |
656 int x1, x2, y1, y2; | |
19044 | 657 long long t1, t2, delta_t, t; |
18937 | 658 int x, y; |
659 double k; | |
660 skip('('); | |
661 x1 = strtol(p, &p, 10); | |
662 skip(','); | |
663 y1 = strtol(p, &p, 10); | |
664 skip(','); | |
665 x2 = strtol(p, &p, 10); | |
666 skip(','); | |
667 y2 = strtol(p, &p, 10); | |
19044 | 668 if (*p == ',') { |
669 skip(','); | |
670 t1 = strtoll(p, &p, 10); | |
671 skip(','); | |
672 t2 = strtoll(p, &p, 10); | |
19378 | 673 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement6: (%d, %d) -> (%d, %d), (%" PRId64 " .. %" PRId64 ")\n", |
674 x1, y1, x2, y2, (int64_t)t1, (int64_t)t2); | |
19044 | 675 } else { |
676 t1 = 0; | |
677 t2 = render_context.event->Duration; | |
678 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "movement: (%d, %d) -> (%d, %d)\n", x1, y1, x2, y2); | |
679 } | |
680 skip(')'); | |
681 delta_t = t2 - t1; | |
682 t = frame_context.time - render_context.event->Start; | |
683 if (t < t1) | |
684 k = 0.; | |
685 else if (t > t2) | |
686 k = 1.; | |
687 else k = ((double)(t - t1)) / delta_t; | |
18937 | 688 x = k * (x2 - x1) + x1; |
689 y = k * (y2 - y1) + y1; | |
690 render_context.pos_x = x; | |
691 render_context.pos_y = y; | |
692 render_context.detect_collisions = 0; | |
693 render_context.evt_type = EVENT_POSITIONED; | |
694 } else if (mystrcmp(&p, "frx") || mystrcmp(&p, "fry")) { | |
695 int val; | |
696 mystrtoi(&p, 10, &val); | |
697 mp_msg(MSGT_GLOBAL, MSGL_V, "frx/fry unimplemented \n"); | |
698 } else if (mystrcmp(&p, "frz") || mystrcmp(&p, "fr")) { | |
699 double angle; | |
700 int val; | |
701 val = strtol(p, &p, 10); | |
702 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "setting rotation to %.2f\n", val * pwr); | |
703 angle = M_PI * val / 180; | |
704 render_context.rotation = angle * pwr; | |
705 } else if (mystrcmp(&p, "fn")) { | |
706 char* start = p; | |
707 char* family; | |
708 skip_all('\\'); | |
709 family = malloc(p - start + 1); | |
710 strncpy(family, start, p - start); | |
711 family[p - start] = '\0'; | |
712 if (render_context.family) | |
713 free(render_context.family); | |
714 render_context.family = family; | |
715 update_font(); | |
716 } else if (mystrcmp(&p, "alpha")) { | |
717 uint32_t val; | |
718 if (strtocolor(&p, &val)) { | |
719 unsigned char a = val >> 24; | |
720 change_alpha(&render_context.c1, a, pwr); | |
721 change_alpha(&render_context.c2, a, pwr); | |
722 change_alpha(&render_context.c3, a, pwr); | |
723 change_alpha(&render_context.c4, a, pwr); | |
724 } else { | |
725 change_alpha(&render_context.c1, render_context.style->PrimaryColour, pwr); | |
726 change_alpha(&render_context.c2, render_context.style->SecondaryColour, pwr); | |
727 change_alpha(&render_context.c3, render_context.style->OutlineColour, pwr); | |
728 change_alpha(&render_context.c4, render_context.style->BackColour, pwr); | |
729 } | |
730 // FIXME: simplify | |
731 } else if (mystrcmp(&p, "an")) { | |
732 int val = strtol(p, &p, 10); | |
733 int v = (val - 1) / 3; // 0, 1 or 2 for vertical alignment | |
734 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "an %d\n", val); | |
735 if (v != 0) v = 3 - v; | |
736 val = ((val - 1) % 3) + 1; // horizontal alignment | |
737 val += v*4; | |
738 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "align %d\n", val); | |
739 render_context.alignment = val; | |
740 } else if (mystrcmp(&p, "a")) { | |
741 int val = strtol(p, &p, 10); | |
742 render_context.alignment = val; | |
743 } else if (mystrcmp(&p, "pos")) { | |
744 int v1, v2; | |
745 skip('('); | |
746 v1 = strtol(p, &p, 10); | |
747 skip(','); | |
748 v2 = strtol(p, &p, 10); | |
749 skip(')'); | |
750 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "pos(%d, %d)\n", v1, v2); | |
751 render_context.evt_type = EVENT_POSITIONED; | |
752 render_context.detect_collisions = 0; | |
753 render_context.pos_x = v1; | |
754 render_context.pos_y = v2; | |
755 } else if (mystrcmp(&p, "fade")) { | |
756 int a1, a2, a3, v1, v2, v3, v4; | |
757 skip('('); | |
758 a1 = strtol(p, &p, 10); | |
759 skip(','); | |
760 a2 = strtol(p, &p, 10); | |
761 skip(','); | |
762 a3 = strtol(p, &p, 10); | |
763 skip(','); | |
764 v1 = strtol(p, &p, 10); | |
765 skip(','); | |
766 v2 = strtol(p, &p, 10); | |
767 skip(','); | |
768 v3 = strtol(p, &p, 10); | |
769 skip(','); | |
770 v4 = strtol(p, &p, 10); | |
771 skip(')'); | |
772 interpolate_alpha(frame_context.time - render_context.event->Start, v1, v2, v3, v4, a1, a2, a3); | |
773 } else if (mystrcmp(&p, "fad")) { | |
774 int v1, v2; | |
775 long long now, t1, t2, t3, t4; | |
776 skip('('); | |
777 v1 = strtol(p, &p, 10); | |
778 skip(','); | |
779 v2 = strtol(p, &p, 10); | |
780 skip(')'); | |
781 now = frame_context.time; | |
782 t1 = render_context.event->Start; | |
783 t2 = t1 + v1; | |
784 t4 = render_context.event->Start + render_context.event->Duration; | |
785 t3 = t4 - v2; | |
786 interpolate_alpha(now, t1, t2, t3, t4, 0xFF, 0, 0xFF); | |
787 } else if (mystrcmp(&p, "org")) { | |
788 int v1, v2; | |
789 skip('('); | |
790 v1 = strtol(p, &p, 10); | |
791 skip(','); | |
792 v2 = strtol(p, &p, 10); | |
793 skip(')'); | |
794 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "org(%d, %d)\n", v1, v2); | |
795 // render_context.evt_type = EVENT_POSITIONED; | |
796 render_context.org_x = v1; | |
797 render_context.org_y = v2; | |
798 } else if (mystrcmp(&p, "t")) { | |
799 double v[3]; | |
800 int v1, v2; | |
801 double v3; | |
802 int cnt; | |
803 long long t1, t2, t, delta_t; | |
804 double k; | |
805 skip('('); | |
806 for (cnt = 0; cnt < 3; ++cnt) { | |
807 if (*p == '\\') | |
808 break; | |
809 v[cnt] = strtod(p, &p); | |
810 skip(','); | |
811 } | |
812 if (cnt == 3) { | |
813 v1 = v[0]; v2 = v[1]; v3 = v[2]; | |
814 } else if (cnt == 2) { | |
815 v1 = v[0]; v2 = v[1]; v3 = 1.; | |
816 } else if (cnt == 1) { | |
817 v1 = 0; v2 = render_context.event->Duration; v3 = v[0]; | |
818 } else { // cnt == 0 | |
819 v1 = 0; v2 = render_context.event->Duration; v3 = 1.; | |
820 } | |
821 render_context.detect_collisions = 0; | |
822 t1 = v1; | |
823 t2 = v2; | |
824 delta_t = v2 - v1; | |
825 t = frame_context.time - render_context.event->Start; // FIXME: move to render_context | |
826 if (t < t1) | |
827 k = 0.; | |
828 else if (t > t2) | |
829 k = 1.; | |
830 else k = ((double)(t - t1)) / delta_t; | |
831 while (*p == '\\') | |
832 p = parse_tag(p, k); // maybe k*pwr ? no, specs forbid nested \t's | |
833 skip_all(')'); // FIXME: better skip(')'), but much more tags support required | |
834 } else if (mystrcmp(&p, "clip")) { | |
835 int x0, y0, x1, y1; | |
836 int res = 1; | |
837 skip('('); | |
838 res &= mystrtoi(&p, 10, &x0); | |
839 skip(','); | |
840 res &= mystrtoi(&p, 10, &y0); | |
841 skip(','); | |
842 res &= mystrtoi(&p, 10, &x1); | |
843 skip(','); | |
844 res &= mystrtoi(&p, 10, &y1); | |
845 skip(')'); | |
846 if (res) { | |
847 render_context.clip_x0 = render_context.clip_x0 * (1-pwr) + x0 * pwr; | |
848 render_context.clip_x1 = render_context.clip_x1 * (1-pwr) + x1 * pwr; | |
849 render_context.clip_y0 = render_context.clip_y0 * (1-pwr) + y0 * pwr; | |
850 render_context.clip_y1 = render_context.clip_y1 * (1-pwr) + y1 * pwr; | |
851 } else { | |
852 render_context.clip_x0 = 0; | |
853 render_context.clip_y0 = 0; | |
854 render_context.clip_x1 = frame_context.track->PlayResX; | |
855 render_context.clip_y1 = frame_context.track->PlayResY; | |
856 } | |
857 } else if (mystrcmp(&p, "c")) { | |
858 uint32_t val; | |
859 if (!strtocolor(&p, &val)) | |
860 val = render_context.style->PrimaryColour; | |
861 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "color: %X\n", val); | |
862 change_color(&render_context.c1, val, pwr); | |
863 } else if ((*p >= '1') && (*p <= '4') && (++p) && (mystrcmp(&p, "c") || mystrcmp(&p, "a"))) { | |
864 char n = *(p-2); | |
865 char cmd = *(p-1); | |
866 uint32_t* pcolor; | |
867 uint32_t val; | |
868 assert((n >= '1') && (n <= '4')); | |
869 if (!strtocolor(&p, &val)) | |
870 switch(n) { | |
871 case '1': val = render_context.style->PrimaryColour; break; | |
872 case '2': val = render_context.style->SecondaryColour; break; | |
873 case '3': val = render_context.style->OutlineColour; break; | |
874 case '4': val = render_context.style->BackColour; break; | |
875 default : val = 0; break; // impossible due to assert; avoid compilation warning | |
876 } | |
877 switch (n) { | |
878 case '1': pcolor = &render_context.c1; break; | |
879 case '2': pcolor = &render_context.c2; break; | |
880 case '3': pcolor = &render_context.c3; break; | |
881 case '4': pcolor = &render_context.c4; break; | |
882 default : pcolor = 0; break; | |
883 } | |
884 switch (cmd) { | |
885 case 'c': change_color(pcolor, val, pwr); break; | |
886 case 'a': change_alpha(pcolor, val >> 24, pwr); break; | |
887 default: mp_msg(MSGT_GLOBAL, MSGL_WARN, "Bad command: %c%c\n", n, cmd); break; | |
888 } | |
889 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "single c/a at %f: %c%c = %X \n", pwr, n, cmd, *pcolor); | |
890 } else if (mystrcmp(&p, "r")) { | |
891 render_context.c1 = render_context.style->PrimaryColour; | |
892 render_context.c2 = render_context.style->SecondaryColour; | |
893 render_context.c3 = render_context.style->OutlineColour; | |
894 render_context.c4 = render_context.style->BackColour; | |
895 render_context.font_size = render_context.style->FontSize; | |
896 | |
897 if (render_context.family) | |
898 free(render_context.family); | |
899 render_context.family = strdup(render_context.style->FontName); | |
900 render_context.bold = - render_context.style->Bold; | |
901 render_context.italic = - render_context.style->Italic; | |
902 update_font(); | |
903 | |
904 if (render_context.stroker) { | |
905 double border = (render_context.style->BorderStyle == 1) ? render_context.style->Outline : 1.; | |
906 change_border(border); | |
907 } | |
908 render_context.scale_x = render_context.style->ScaleX; | |
909 render_context.scale_y = render_context.style->ScaleY; | |
910 render_context.hspacing = 0; // FIXME | |
911 | |
912 // FIXME: does not reset unsupported attributes. | |
913 } else if (mystrcmp(&p, "be")) { | |
914 int val; | |
915 mystrtoi(&p, 10, &val); | |
916 mp_msg(MSGT_GLOBAL, MSGL_V, "be unimplemented \n"); | |
917 } else if (mystrcmp(&p, "b")) { | |
918 int b; | |
919 if (mystrtoi(&p, 10, &b)) | |
920 render_context.bold = b; | |
921 else | |
922 render_context.bold = - render_context.style->Bold; | |
923 update_font(); | |
924 } else if (mystrcmp(&p, "i")) { | |
925 int i; | |
926 if (mystrtoi(&p, 10, &i)) | |
927 render_context.italic = i; | |
928 else | |
929 render_context.italic = - render_context.style->Italic; | |
930 update_font(); | |
931 } else if (mystrcmp(&p, "kf") || mystrcmp(&p, "K")) { | |
932 int val = strtol(p, &p, 10); | |
933 render_context.effect_type = EF_KARAOKE_KF; | |
934 render_context.effect_timing = val * 10; | |
935 } else if (mystrcmp(&p, "ko")) { | |
936 int val = strtol(p, &p, 10); | |
937 render_context.effect_type = EF_KARAOKE_KO; | |
938 render_context.effect_timing = val * 10; | |
939 } else if (mystrcmp(&p, "k")) { | |
940 int val = strtol(p, &p, 10); | |
941 render_context.effect_type = EF_KARAOKE; | |
942 render_context.effect_timing = val * 10; | |
943 } | |
944 | |
945 return p; | |
946 | |
947 #undef skip | |
948 #undef skip_all | |
949 } | |
950 | |
951 /** | |
952 * \brief Get next ucs4 char from string, parsing and executing style overrides | |
953 * \param str string pointer | |
954 * \return ucs4 code of the next char | |
955 * On return str points to the unparsed part of the string | |
956 */ | |
957 static unsigned get_next_char(char** str) | |
958 { | |
959 char* p = *str; | |
960 unsigned chr; | |
961 if (*p == '{') { // '\0' goes here | |
962 p++; | |
963 while (1) { | |
964 p = parse_tag(p, 1.); | |
965 if (*p == '}') { // end of tag | |
966 p++; | |
967 if (*p == '{') { | |
968 p++; | |
969 continue; | |
970 } else | |
971 break; | |
972 } else if (*p != '\\') | |
973 mp_msg(MSGT_GLOBAL, MSGL_V, "Unable to parse: \"%s\" \n", p); | |
974 if (*p == 0) | |
975 break; | |
976 } | |
977 } | |
978 if (*p == '\t') { | |
979 ++p; | |
980 *str = p; | |
981 return ' '; | |
982 } | |
983 if (*p == '\\') { | |
984 if ((*(p+1) == 'N') || ((*(p+1) == 'n') && (frame_context.track->WrapStyle == 2))) { | |
985 p += 2; | |
986 *str = p; | |
987 return '\n'; | |
988 } else if (*(p+1) == 'n') { | |
989 p += 2; | |
990 *str = p; | |
991 return ' '; | |
992 } | |
993 } | |
994 chr = utf8_get_char(&p); | |
995 *str = p; | |
996 return chr; | |
997 } | |
998 | |
999 /** | |
1000 * \brief Start new event. Reset render_context. | |
1001 */ | |
1002 static int init_render_context(ass_event_t* event) | |
1003 { | |
1004 int error; | |
1005 | |
1006 // init render_context | |
1007 render_context.event = event; | |
1008 render_context.style = frame_context.track->styles + event->Style; | |
1009 | |
1010 render_context.font_size = render_context.style->FontSize; | |
1011 render_context.evt_type = EVENT_NORMAL; | |
1012 render_context.alignment = 0; | |
1013 render_context.rotation = 0.; | |
1014 render_context.pos_x = 0; | |
1015 render_context.pos_y = 0; | |
1016 render_context.org_x = 0; | |
1017 render_context.org_y = 0; | |
1018 render_context.scale_x = render_context.style->ScaleX; | |
1019 render_context.scale_y = render_context.style->ScaleY; | |
1020 render_context.hspacing = 0; | |
1021 render_context.c1 = render_context.style->PrimaryColour; | |
1022 render_context.c2 = render_context.style->SecondaryColour; | |
1023 render_context.c3 = render_context.style->OutlineColour; | |
1024 render_context.c4 = render_context.style->BackColour; | |
1025 render_context.clip_x0 = 0; | |
1026 render_context.clip_y0 = 0; | |
1027 render_context.clip_x1 = frame_context.track->PlayResX; | |
1028 render_context.clip_y1 = frame_context.track->PlayResY; | |
1029 render_context.detect_collisions = 1; | |
1030 | |
1031 if (render_context.family) | |
1032 free(render_context.family); | |
1033 render_context.family = strdup(render_context.style->FontName); | |
1034 render_context.bold = - render_context.style->Bold; // style value for bold text is -1 | |
1035 render_context.italic = - render_context.style->Italic; | |
1036 | |
1037 update_font(); | |
1038 | |
1039 if (render_context.face) { | |
1040 #if (FREETYPE_MAJOR > 2) || ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR > 1)) | |
1041 error = FT_Stroker_New( ass_instance->library, &render_context.stroker ); | |
1042 #else // < 2.2 | |
1043 error = FT_Stroker_New( render_context.face->memory, &render_context.stroker ); | |
1044 #endif | |
1045 if ( error ) { | |
1046 mp_msg(MSGT_GLOBAL, MSGL_V, "failed to get stroker\n"); | |
1047 render_context.stroker = 0; | |
1048 } else { | |
1049 // FIXME: probably wrong when render_context.Border == 3 | |
1050 double border = (render_context.style->BorderStyle == 1) ? render_context.style->Outline : 1.; | |
1051 change_border(border); | |
1052 } | |
1053 } | |
1054 | |
1055 return 0; | |
1056 } | |
1057 | |
1058 static int free_render_context(void) | |
1059 { | |
1060 if (render_context.stroker != 0) { | |
1061 FT_Stroker_Done(render_context.stroker); | |
1062 render_context.stroker = 0; | |
1063 } | |
1064 return 0; | |
1065 } | |
1066 | |
1067 /** | |
1068 * \brief Get normal and outline glyphs from cache (if possible) or font face | |
1069 * \param index face glyph index | |
1070 * \param symbol ucs4 char | |
1071 * \param info out: struct filled with extracted data | |
1072 * \param advance advance vector of the extracted glyph | |
1073 * \return 0 on success | |
1074 */ | |
1075 static int get_glyph(int index, int symbol, glyph_info_t* info, FT_Vector* advance) | |
1076 { | |
1077 int error; | |
1078 glyph_hash_val_t* val; | |
1079 glyph_hash_key_t* key = &(info->hash_key); | |
1080 | |
1081 key->face = render_context.face; | |
1082 key->size = render_context.font_size; | |
1083 key->index = index; | |
1084 key->outline = (render_context.border * 0xFFFF); // convert to 16.16 | |
1085 key->scale_x = (render_context.scale_x * 0xFFFF); | |
1086 key->scale_y = (render_context.scale_y * 0xFFFF); | |
1087 key->angle = (render_context.rotation * 0xFFFF); | |
1088 key->advance = *advance; | |
1089 key->bold = render_context.bold; | |
1090 key->italic = render_context.italic; | |
1091 | |
1092 key->bitmap = 1; // looking for bitmap glyph | |
1093 | |
1094 | |
1095 val = cache_find_glyph(key); | |
1096 // val = 0; | |
1097 | |
1098 if (val) { | |
1099 // bitmap glyph found, no need for FT_Glyph_Copy | |
1100 info->glyph = val->glyph; | |
1101 info->outline_glyph = val->outline_glyph; | |
1102 info->bbox = val->bbox_scaled; | |
1103 info->advance.x = val->advance.x; | |
1104 info->advance.y = val->advance.y; | |
1105 info->bitmap = 1; // bitmap glyph | |
1106 | |
1107 return 0; | |
1108 } | |
1109 | |
1110 // not found, get a new outline glyph from face | |
1111 // mp_msg(MSGT_GLOBAL, MSGL_INFO, "miss, index = %d, symbol = %c, adv = (%d, %d)\n", index, symbol, advance->x, advance->y); | |
1112 | |
1113 error = FT_Load_Glyph(render_context.face, index, FT_LOAD_NO_BITMAP ); | |
1114 if (error) { | |
1115 mp_msg(MSGT_GLOBAL, MSGL_WARN, "Error loading glyph\n"); | |
1116 return error; | |
1117 } | |
1118 | |
1119 #if (FREETYPE_MAJOR > 2) || \ | |
1120 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR >= 2)) || \ | |
1121 ((FREETYPE_MAJOR == 2) && (FREETYPE_MINOR == 1) && (FREETYPE_PATCH >= 10)) | |
1122 // FreeType >= 2.1.10 required | |
1123 if (!(render_context.face->style_flags & FT_STYLE_FLAG_ITALIC) && | |
1124 ((render_context.italic == 1) || (render_context.italic > 55))) { | |
1125 FT_GlyphSlot_Oblique(render_context.face->glyph); | |
1126 } | |
1127 #endif | |
1128 error = FT_Get_Glyph(render_context.face->glyph, &(info->glyph)); | |
1129 if (error) { | |
1130 mp_msg(MSGT_GLOBAL, MSGL_WARN, "Error getting glyph\n"); | |
1131 return error; | |
1132 } | |
1133 | |
1134 info->advance.x = info->glyph->advance.x >> 10; | |
1135 info->advance.y = info->glyph->advance.y >> 10; | |
1136 | |
1137 info->outline_glyph = info->glyph; | |
19002
da05237044c2
Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().
eugeni
parents:
18937
diff
changeset
|
1138 error = FT_Glyph_Stroke( &(info->outline_glyph), render_context.stroker, 0 ); // don't destroy original |
da05237044c2
Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().
eugeni
parents:
18937
diff
changeset
|
1139 if (error) { |
da05237044c2
Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().
eugeni
parents:
18937
diff
changeset
|
1140 mp_msg(MSGT_GLOBAL, MSGL_WARN, "FT_Glyph_Stroke error %d \n", error); |
da05237044c2
Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().
eugeni
parents:
18937
diff
changeset
|
1141 FT_Glyph_Copy(info->glyph, &info->outline_glyph); |
da05237044c2
Ignoring FT_Glyph_Stroke() errors can potentially lead to double free().
eugeni
parents:
18937
diff
changeset
|
1142 } |
18937 | 1143 |
1144 info->bitmap = 0; // outline glyph | |
1145 | |
1146 return 0; | |
1147 } | |
1148 | |
1149 /** | |
1150 * \brief rearrange text between lines | |
1151 * \param max_text_width maximal text line width in pixels | |
1152 * The algo is similar to the one in libvo/sub.c: | |
1153 * 1. Place text, wrapping it when current line is full | |
1154 * 2. Try moving words from the end of a line to the beginning of the next one while it reduces | |
1155 * the difference in lengths between this two lines. | |
1156 * The result may not be optimal, but usually is good enough. | |
1157 */ | |
1158 static void wrap_lines_smart(int max_text_width) | |
1159 { | |
1160 int i, j; | |
1161 glyph_info_t *cur, *s1, *e1, *s2, *s3, *w; | |
1162 int last_space; | |
1163 int break_type; | |
1164 int exit; | |
1165 int pen_shift_x; | |
1166 int pen_shift_y; | |
1167 int max_asc, max_desc; | |
1168 int cur_line; | |
1169 | |
1170 last_space = -1; | |
1171 text_info.n_lines = 1; | |
1172 break_type = 0; | |
1173 s1 = text_info.glyphs; // current line start | |
1174 for (i = 0; i < text_info.length; ++i) { | |
19370 | 1175 int break_at, s_offset, len; |
18937 | 1176 cur = text_info.glyphs + i; |
19370 | 1177 break_at = -1; |
1178 s_offset = s1->bbox.xMin + s1->pos.x; | |
1179 len = (cur->bbox.xMax + cur->pos.x) - s_offset; | |
18937 | 1180 |
1181 if (cur->symbol == '\n') { | |
1182 break_type = 2; | |
1183 break_at = i; | |
1184 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "forced line break at %d\n", break_at); | |
1185 } | |
1186 | |
1187 if (len >= max_text_width) { | |
1188 break_type = 1; | |
1189 break_at = last_space; | |
1190 if (break_at == -1) | |
1191 break_at = i - 1; | |
1192 if (break_at == -1) | |
1193 break_at = 0; | |
1194 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "overfill at %d\n", i); | |
1195 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "line break at %d\n", break_at); | |
1196 } | |
1197 | |
1198 if (break_at != -1) { | |
1199 // need to use one more line | |
1200 // marking break_at+1 as start of a new line | |
1201 int lead = break_at + 1; // the first symbol of the new line | |
1202 if (text_info.n_lines >= MAX_LINES) { | |
1203 // to many lines ! | |
1204 // no more linebreaks | |
1205 for (j = lead; j < text_info.length; ++j) | |
1206 text_info.glyphs[j].linebreak = 0; | |
1207 break; | |
1208 } | |
1209 if (lead < text_info.length) | |
1210 text_info.glyphs[lead].linebreak = break_type; | |
1211 last_space = -1; | |
1212 s1 = text_info.glyphs + lead; | |
1213 s_offset = s1->bbox.xMin + s1->pos.x; | |
1214 text_info.n_lines ++; | |
1215 } | |
1216 | |
1217 if (cur->symbol == ' ') | |
1218 last_space = i; | |
1219 } | |
1220 #define DIFF(x,y) (((x) < (y)) ? (y - x) : (x - y)) | |
1221 exit = 0; | |
1222 while (!exit) { | |
1223 exit = 1; | |
1224 w = s3 = text_info.glyphs; | |
1225 s1 = s2 = 0; | |
1226 for (i = 0; i <= text_info.length; ++i) { | |
1227 cur = text_info.glyphs + i; | |
1228 if ((i == text_info.length) || cur->linebreak) { | |
1229 s1 = s2; | |
1230 s2 = s3; | |
1231 s3 = cur; | |
1232 // printf("line: %d, %d, %d \n", s1 - text_info.glyphs, s2 - text_info.glyphs, s3 - text_info.glyphs); | |
1233 if (s1 && (s2->linebreak == 1)) { // have at least 2 lines, and linebreak is 'soft' | |
1234 int l1, l2, l1_new, l2_new; | |
1235 | |
1236 w = s2; | |
1237 do { --w; } while ((w > s1) && (w->symbol == ' ')); | |
1238 do { --w; } while ((w > s1) && (w->symbol != ' ')); | |
1239 e1 = w; | |
1240 do { --e1; } while ((e1 > s1) && (e1->symbol == ' ')); | |
1241 if (w->symbol == ' ') ++w; | |
1242 | |
1243 // printf("check: %d, %d, %d, w: %d, e: %d \n", s1 - text_info.glyphs, s2 - text_info.glyphs, s3 - text_info.glyphs, | |
1244 // w - text_info.glyphs, e1 - text_info.glyphs); | |
1245 | |
1246 l1 = ((s2-1)->bbox.xMax + (s2-1)->pos.x) - (s1->bbox.xMin + s1->pos.x); | |
1247 l2 = ((s3-1)->bbox.xMax + (s3-1)->pos.x) - (s2->bbox.xMin + s2->pos.x); | |
1248 l1_new = (e1->bbox.xMax + e1->pos.x) - (s1->bbox.xMin + s1->pos.x); | |
1249 l2_new = ((s3-1)->bbox.xMax + (s3-1)->pos.x) - (w->bbox.xMin + w->pos.x); | |
1250 | |
1251 if (DIFF(l1_new, l2_new) < DIFF(l1, l2)) { | |
1252 w->linebreak = 1; | |
1253 s2->linebreak = 0; | |
1254 exit = 0; | |
1255 } | |
1256 } | |
1257 } | |
1258 if (i == text_info.length) | |
1259 break; | |
1260 } | |
1261 | |
1262 } | |
1263 assert(text_info.n_lines >= 1); | |
1264 #undef DIFF | |
1265 | |
1266 text_info.height = 0; | |
1267 max_asc = max_desc = 0; | |
1268 cur_line = 0; | |
1269 for (i = 0; i < text_info.length + 1; ++i) { | |
1270 if ((i == text_info.length) || text_info.glyphs[i].linebreak) { | |
1271 text_info.lines[cur_line].asc = max_asc; | |
1272 text_info.lines[cur_line].desc = max_desc; | |
1273 text_info.height += max_asc + max_desc; | |
1274 cur_line ++; | |
1275 max_asc = max_desc = 0; | |
1276 } | |
1277 if (i < text_info.length) { | |
1278 cur = text_info.glyphs + i; | |
1279 if (cur->asc > max_asc) | |
1280 max_asc = cur->asc * render_context.scale_y; | |
1281 if (cur->desc > max_desc) | |
1282 max_desc = cur->desc * render_context.scale_y; | |
1283 } | |
1284 } | |
1285 | |
1286 pen_shift_x = 0; | |
1287 pen_shift_y = 0; | |
1288 cur_line = 1; | |
1289 for (i = 0; i < text_info.length; ++i) { | |
1290 cur = text_info.glyphs + i; | |
1291 if (cur->linebreak) { | |
1292 int height = text_info.lines[cur_line - 1].desc + text_info.lines[cur_line].asc; | |
1293 cur_line ++; | |
1294 pen_shift_x = - cur->pos.x; | |
1295 pen_shift_y += (height >> 6) + global_settings->line_spacing; | |
1296 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "shifting from %d to %d by (%d, %d)\n", i, text_info.length - 1, pen_shift_x, pen_shift_y); | |
1297 } | |
1298 cur->pos.x += pen_shift_x; | |
1299 cur->pos.y += pen_shift_y; | |
1300 } | |
1301 // printf("============= \n"); | |
1302 } | |
1303 | |
1304 /** | |
1305 * \brief determine karaoke effects | |
1306 * Karaoke effects cannot be calculated during parse stage (get_next_char()), | |
1307 * so they are done in a separate step. | |
1308 * Parse stage: when karaoke style override is found, its parameters are stored in the next glyph's | |
1309 * (the first glyph of the karaoke word)'s effect_type and effect_timing. | |
1310 * This function: | |
1311 * 1. sets effect_type for all glyphs in the word (_karaoke_ word) | |
1312 * 2. sets effect_timing for all glyphs to x coordinate of the border line between the left and right karaoke parts | |
1313 * (left part is filled with PrimaryColour, right one - with SecondaryColour). | |
1314 */ | |
1315 static void process_karaoke_effects(void) | |
1316 { | |
1317 glyph_info_t *cur, *cur2; | |
1318 glyph_info_t *s1, *e1; // start and end of the current word | |
1319 glyph_info_t *s2; // start of the next word | |
1320 int i; | |
1321 int timing; // current timing | |
1322 int tm_start, tm_end; // timings at start and end of the current word | |
1323 int tm_current; | |
1324 double dt; | |
1325 int x; | |
1326 int x_start, x_end; | |
1327 | |
1328 tm_current = frame_context.time - render_context.event->Start; | |
1329 timing = 0; | |
1330 s1 = s2 = 0; | |
1331 for (i = 0; i <= text_info.length; ++i) { | |
1332 cur = text_info.glyphs + i; | |
1333 if ((i == text_info.length) || (cur->effect_type != EF_NONE)) { | |
1334 s1 = s2; | |
1335 s2 = cur; | |
1336 if (s1) { | |
1337 e1 = s2 - 1; | |
1338 tm_start = timing; | |
1339 tm_end = timing + s1->effect_timing; | |
1340 timing = tm_end; | |
1341 x_start = s1->bbox.xMin + s1->pos.x; | |
1342 x_end = e1->bbox.xMax + e1->pos.x; | |
1343 | |
1344 dt = (tm_current - tm_start); | |
1345 if ((s1->effect_type == EF_KARAOKE) || (s1->effect_type == EF_KARAOKE_KO)) { | |
1346 if (dt > 0) | |
1347 x = x_end + 1; | |
1348 else | |
1349 x = x_start; | |
1350 } else if (s1->effect_type == EF_KARAOKE_KF) { | |
1351 dt /= (tm_end - tm_start); | |
1352 x = x_start + (x_end - x_start) * dt; | |
1353 } else { | |
1354 mp_msg(MSGT_GLOBAL, MSGL_ERR, "Unknown effect type (internal error) \n"); | |
1355 continue; | |
1356 } | |
1357 | |
1358 for (cur2 = s1; cur2 <= e1; ++cur2) { | |
1359 cur2->effect_type = s1->effect_type; | |
1360 cur2->effect_timing = x - cur2->pos.x; | |
1361 } | |
1362 } | |
1363 } | |
1364 } | |
1365 } | |
1366 | |
19066
26a30496ec96
marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
reynaldo
parents:
19044
diff
changeset
|
1367 static int get_face_ascender(FT_Face face) |
18937 | 1368 { |
1369 int v = face->size->metrics.ascender; | |
1370 if (!v) | |
1371 v = FT_MulFix(face->bbox.yMax, face->size->metrics.y_scale); | |
1372 return v; | |
1373 } | |
1374 | |
19066
26a30496ec96
marks several function without a prototype which arent used outside its sourcefile as static, Patch by Stefan Huehner - stefan AT huehner-org
reynaldo
parents:
19044
diff
changeset
|
1375 static int get_face_descender(FT_Face face) |
18937 | 1376 { |
1377 int v = face->size->metrics.descender; | |
1378 if (!v) | |
1379 v = FT_MulFix(face->bbox.yMin, face->size->metrics.y_scale); | |
1380 return -v; | |
1381 } | |
1382 | |
1383 /** | |
1384 * \brief Main ass rendering function, glues everything together | |
1385 * \param event event to render | |
1386 * Process event, appending resulting ass_image_t's to images_root. | |
1387 */ | |
1388 int ass_render_event(ass_event_t* event) | |
1389 { | |
1390 char* p; | |
1391 FT_UInt glyph_index; | |
1392 FT_Bool use_kerning; | |
1393 FT_UInt previous; | |
1394 FT_UInt num_glyphs; | |
1395 FT_Vector pen; | |
1396 int error; | |
1397 unsigned code; | |
1398 FT_BBox bbox; | |
1399 int i, j; | |
1400 FT_Vector shift; | |
1401 int MarginL, MarginR, MarginV; | |
1402 int max_text_width; | |
1403 ass_style_t* style = frame_context.track->styles + event->Style; | |
1404 int last_break; | |
1405 int alignment, halign, valign; | |
1406 int device_x, device_y; | |
1407 | |
1408 init_render_context(event); | |
1409 | |
1410 text_info.length = 0; | |
1411 pen.x = 0; | |
1412 pen.y = 0; | |
1413 previous = 0; | |
1414 num_glyphs = 0; | |
1415 | |
1416 | |
1417 p = event->Text; | |
1418 if (!p) { | |
1419 mp_msg(MSGT_GLOBAL, MSGL_WARN, "Empty event!\n"); | |
1420 return 0; | |
1421 } | |
1422 | |
1423 // Event parsing. | |
1424 while (1) { | |
1425 render_context.effect_type = EF_NONE; | |
1426 | |
1427 // get next char, executing style override | |
1428 // this affects render_context | |
1429 code = get_next_char(&p); | |
1430 | |
1431 // face could have been changed in get_next_char | |
1432 if (!render_context.face) { | |
1433 free_render_context(); | |
1434 return 0; | |
1435 } | |
1436 | |
1437 if (code == 0) | |
1438 break; | |
1439 | |
1440 use_kerning = FT_HAS_KERNING(render_context.face); | |
1441 | |
1442 if (text_info.length >= MAX_GLYPHS) { | |
1443 mp_msg(MSGT_GLOBAL, MSGL_WARN, "\nMAX_GLYPHS reached: event %d, start = %llu, duration = %llu\n Text = %s\n", | |
1444 (int)(event - frame_context.track->events), event->Start, event->Duration, event->Text); | |
1445 break; | |
1446 } | |
1447 | |
1448 glyph_index = FT_Get_Char_Index( render_context.face, code); | |
1449 | |
1450 if ( use_kerning && previous && glyph_index ) { | |
1451 FT_Vector delta; | |
1452 FT_Get_Kerning( render_context.face, previous, glyph_index, FT_KERNING_DEFAULT, &delta ); | |
1453 pen.x += delta.x; | |
1454 pen.y += delta.y; | |
1455 } | |
1456 | |
1457 shift.x = pen.x & 63; | |
1458 shift.y = pen.y & 63; | |
1459 | |
1460 if ((render_context.scale_x != 1.) || (render_context.scale_y != 1.) || | |
1461 (frame_context.font_scale_x != 1.)) { | |
1462 FT_Matrix matrix; | |
1463 matrix.xx = (FT_Fixed)( render_context.scale_x * frame_context.font_scale_x * 0x10000L ); | |
1464 matrix.xy = (FT_Fixed)( 0 * 0x10000L ); | |
1465 matrix.yx = (FT_Fixed)( 0 * 0x10000L ); | |
1466 matrix.yy = (FT_Fixed)( render_context.scale_y * 0x10000L ); | |
1467 | |
1468 FT_Set_Transform( render_context.face, &matrix, &shift ); | |
1469 } else { | |
1470 FT_Set_Transform(render_context.face, 0, &shift); | |
1471 } | |
1472 | |
1473 error = get_glyph(glyph_index, code, text_info.glyphs + text_info.length, &shift); | |
1474 | |
1475 if (error) { | |
1476 continue; | |
1477 } | |
1478 | |
1479 text_info.glyphs[text_info.length].pos.x = pen.x >> 6; | |
1480 text_info.glyphs[text_info.length].pos.y = pen.y >> 6; | |
1481 | |
1482 pen.x += text_info.glyphs[text_info.length].advance.x; | |
1483 pen.x += render_context.hspacing; | |
1484 pen.y += text_info.glyphs[text_info.length].advance.y; | |
1485 | |
1486 // if it's an outline glyph, we still need to fill the bbox | |
1487 if (text_info.glyphs[text_info.length].bitmap != 1) { | |
1488 FT_Glyph_Get_CBox( text_info.glyphs[text_info.length].glyph, FT_GLYPH_BBOX_PIXELS, &(text_info.glyphs[text_info.length].bbox) ); | |
1489 } | |
1490 | |
1491 | |
1492 previous = glyph_index; | |
1493 | |
1494 text_info.glyphs[text_info.length].symbol = code; | |
1495 text_info.glyphs[text_info.length].linebreak = 0; | |
1496 text_info.glyphs[text_info.length].c1 = render_context.c1; | |
1497 text_info.glyphs[text_info.length].c2 = render_context.c2; | |
1498 text_info.glyphs[text_info.length].c3 = render_context.c3; | |
1499 text_info.glyphs[text_info.length].c4 = render_context.c4; | |
1500 text_info.glyphs[text_info.length].effect_type = render_context.effect_type; | |
1501 text_info.glyphs[text_info.length].effect_timing = render_context.effect_timing; | |
1502 text_info.glyphs[text_info.length].asc = get_face_ascender(render_context.face); | |
1503 text_info.glyphs[text_info.length].desc = get_face_descender(render_context.face); | |
1504 | |
1505 text_info.length++; | |
1506 } | |
1507 | |
1508 if (text_info.length == 0) { | |
1509 // no valid symbols in the event; this can be smth like {comment} | |
1510 free_render_context(); | |
1511 return 0; | |
1512 } | |
1513 | |
1514 // depends on glyph x coordinates being monotonous, so it should be done before line wrap | |
1515 process_karaoke_effects(); | |
1516 | |
1517 // calculate max length of a line | |
1518 MarginL = (event->MarginL) ? event->MarginL : style->MarginL; | |
1519 MarginR = (event->MarginR) ? event->MarginR : style->MarginR; | |
1520 MarginV = (event->MarginV) ? event->MarginV : style->MarginV; | |
1521 | |
1522 max_text_width = x2scr(frame_context.track->PlayResX - MarginR) - x2scr(MarginL); | |
1523 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "normal text width: %d\n", max_text_width); | |
1524 | |
1525 // rearrange text in several lines | |
1526 wrap_lines_smart(max_text_width); | |
1527 | |
1528 // alignments | |
1529 alignment = render_context.alignment; | |
1530 if (!alignment) | |
1531 alignment = render_context.style->Alignment; | |
1532 halign = alignment & 3; | |
1533 valign = alignment & 12; | |
1534 | |
1535 // align text | |
1536 last_break = -1; | |
1537 for (i = 1; i < text_info.length + 1; ++i) { // (text_info.length + 1) is the end of the last line | |
1538 if ((i == text_info.length) || text_info.glyphs[i].linebreak) { | |
19370 | 1539 int width, shift; |
18937 | 1540 glyph_info_t* first_glyph = text_info.glyphs + last_break + 1; |
1541 glyph_info_t* last_glyph = text_info.glyphs + i - 1; | |
1542 | |
1543 while ((last_glyph >= first_glyph) && ((last_glyph->symbol == '\n') || (last_glyph->symbol == 0))) | |
1544 last_glyph --; | |
1545 | |
19370 | 1546 width = last_glyph->pos.x + last_glyph->bbox.xMax - first_glyph->pos.x - first_glyph->bbox.xMin; |
1547 shift = - first_glyph->bbox.xMin; // now text line starts exactly at 0 (left margin) | |
18937 | 1548 if (halign == HALIGN_LEFT) { // left aligned, no action |
1549 } else if (halign == HALIGN_RIGHT) { // right aligned | |
1550 shift = max_text_width - width; | |
1551 } else if (halign == HALIGN_CENTER) { // centered | |
1552 shift = (max_text_width - width) / 2; | |
1553 } | |
1554 for (j = last_break + 1; j < i; ++j) { | |
1555 text_info.glyphs[j].pos.x += shift; | |
1556 } | |
1557 last_break = i - 1; | |
1558 } | |
1559 } | |
1560 | |
1561 // determing text bounding box | |
1562 compute_string_bbox(&text_info, &bbox); | |
1563 | |
1564 // determine device coordinates for text | |
1565 | |
1566 // FIXME: using current font descender, ascender and height here is wrong. | |
1567 // correct way is using max(descender) over all the fonts used in a line | |
1568 // the same for height and ascender | |
1569 if (render_context.evt_type == EVENT_NORMAL) { | |
1570 device_x = x2scr(MarginL); | |
1571 if (valign == VALIGN_TOP) { // toptitle | |
1572 device_y = y2scr_top(MarginV) + (text_info.lines[0].asc >> 6); | |
1573 if (render_context.detect_collisions) { | |
1574 device_y += frame_context.add_top_margin; | |
1575 frame_context.add_top_margin += (text_info.height >> 6); | |
1576 } | |
1577 } else if (valign == VALIGN_CENTER) { // midtitle | |
1578 int scr_y = y2scr(frame_context.track->PlayResY / 2); | |
1579 device_y = scr_y - (bbox.yMax - bbox.yMin) / 2; | |
1580 } else { // subtitle | |
1581 int scr_y; | |
1582 if (valign != VALIGN_SUB) | |
1583 mp_msg(MSGT_GLOBAL, MSGL_V, "Invalid valign, supposing 0 (subtitle)\n"); | |
1584 scr_y = y2scr_sub(frame_context.track->PlayResY - MarginV); | |
1585 device_y = scr_y; | |
1586 device_y -= (text_info.height >> 6); | |
1587 device_y += (text_info.lines[0].asc >> 6); | |
1588 if (render_context.detect_collisions) { | |
1589 device_y -= frame_context.add_bottom_margin; | |
1590 frame_context.add_bottom_margin += (text_info.height >> 6); | |
1591 } | |
1592 } | |
1593 } else if (render_context.evt_type == EVENT_POSITIONED) { | |
1594 int align_shift_x = 0; | |
1595 int align_shift_y = 0; | |
1596 mp_msg(MSGT_GLOBAL, MSGL_DBG2, "positioned event at %d, %d\n", render_context.pos_x, render_context.pos_y); | |
1597 switch(halign) { | |
1598 case HALIGN_LEFT: | |
1599 align_shift_x = - bbox.xMin; | |
1600 break; | |
1601 case HALIGN_CENTER: | |
1602 align_shift_x = - (bbox.xMax + bbox.xMin) /2; | |
1603 break; | |
1604 case HALIGN_RIGHT: | |
1605 align_shift_x = - bbox.xMax; | |
1606 break; | |
1607 } | |
1608 switch(valign) { | |
1609 case VALIGN_TOP: | |
1610 align_shift_y = - bbox.yMin; | |
1611 break; | |
1612 case VALIGN_CENTER: | |
1613 align_shift_y = - (bbox.yMax + bbox.yMin) /2; | |
1614 break; | |
1615 case VALIGN_SUB: | |
1616 align_shift_y = - bbox.yMax; | |
1617 break; | |
1618 } | |
1619 device_x = x2scr(render_context.pos_x) + align_shift_x; | |
1620 device_y = y2scr(render_context.pos_y) + align_shift_y; | |
1621 } else { | |
1622 mp_msg(MSGT_GLOBAL, MSGL_V, "unknown evt_type\n"); | |
1623 device_x = 10; | |
1624 device_y = 10; | |
1625 } | |
1626 | |
1627 // fix clip coordinates (they depend on alignment) | |
1628 render_context.clip_x0 = x2scr(render_context.clip_x0); | |
1629 render_context.clip_x1 = x2scr(render_context.clip_x1); | |
1630 if (render_context.evt_type == EVENT_NORMAL) { | |
1631 if (valign == VALIGN_TOP) { | |
1632 render_context.clip_y0 = y2scr_top(render_context.clip_y0); | |
1633 render_context.clip_y1 = y2scr_top(render_context.clip_y1); | |
1634 } else if (valign == VALIGN_CENTER) { | |
1635 render_context.clip_y0 = y2scr(render_context.clip_y0); | |
1636 render_context.clip_y1 = y2scr(render_context.clip_y1); | |
1637 } else if (valign == VALIGN_SUB) { | |
1638 render_context.clip_y0 = y2scr_sub(render_context.clip_y0); | |
1639 render_context.clip_y1 = y2scr_sub(render_context.clip_y1); | |
1640 } | |
1641 } else if (render_context.evt_type == EVENT_POSITIONED) { | |
1642 render_context.clip_y0 = y2scr(render_context.clip_y0); | |
1643 render_context.clip_y1 = y2scr(render_context.clip_y1); | |
1644 } | |
1645 | |
1646 // rotate glyphs if needed | |
1647 if (render_context.rotation != 0.) { | |
1648 double angle = render_context.rotation; | |
1649 FT_Vector center; | |
1650 FT_Matrix matrix_rotate; | |
1651 | |
1652 matrix_rotate.xx = (FT_Fixed)( cos( angle ) * 0x10000L ); | |
1653 matrix_rotate.xy = (FT_Fixed)( -sin( angle ) * 0x10000L ); | |
1654 matrix_rotate.yx = (FT_Fixed)( sin( angle ) * 0x10000L ); | |
1655 matrix_rotate.yy = (FT_Fixed)( cos( angle ) * 0x10000L ); | |
1656 | |
1657 if (((render_context.org_x != 0) || (render_context.org_y != 0)) && (render_context.evt_type == EVENT_POSITIONED)) { | |
1658 center.x = render_context.org_x; | |
1659 center.y = render_context.org_y; | |
1660 } else { | |
1661 FT_BBox str_bbox; | |
1662 | |
1663 center.x = text_info.glyphs[0].pos.x + device_x; | |
1664 center.y = text_info.glyphs[0].pos.y + device_y; | |
1665 | |
1666 compute_string_bbox(&text_info, &str_bbox); | |
1667 center.x += (str_bbox.xMax - str_bbox.xMin) / 2; | |
1668 center.y += (str_bbox.yMax - str_bbox.yMin) / 2; | |
1669 } | |
1670 // mp_msg(MSGT_GLOBAL, MSGL_DBG2, "\ncenter: %d, %d\n", center.x, center.y); | |
1671 | |
1672 for (i = 0; i < text_info.length; ++i) { | |
1673 glyph_info_t* info = text_info.glyphs + i; | |
1674 | |
1675 // calculating shift vector | |
1676 // shift = (position - center)*M - (position - center) | |
1677 FT_Vector start; | |
1678 FT_Vector start_old; | |
1679 // mp_msg(MSGT_GLOBAL, MSGL_INFO, "start: (%d, %d) + (%d, %d) - (%d, %d) = (%d, %d)\n", info->pos.x, info->pos.y, device_x, device_y, center.x, center.y, | |
1680 // info->pos.x + device_x - center.x, info->pos.y + device_y - center.y); | |
1681 start.x = (info->pos.x + device_x - center.x) << 6; | |
1682 start.y = - (info->pos.y + device_y - center.y) << 6; | |
1683 start_old.x = start.x; | |
1684 start_old.y = start.y; | |
1685 // mp_msg(MSGT_GLOBAL, MSGL_INFO, "start: %d, %d\n", start.x / 64, start.y / 64); | |
1686 | |
1687 FT_Vector_Transform(&start, &matrix_rotate); | |
1688 | |
1689 start.x -= start_old.x; | |
1690 start.y -= start_old.y; | |
1691 | |
1692 info->pos.x += start.x >> 6; | |
1693 info->pos.y -= start.y >> 6; | |
1694 | |
1695 // mp_msg(MSGT_GLOBAL, MSGL_DBG2, "shift: %d, %d\n", start.x / 64, start.y / 64); | |
1696 if (info->bitmap != 1) { | |
1697 FT_Glyph_Transform( info->glyph, &matrix_rotate, 0 ); | |
1698 FT_Glyph_Transform( info->outline_glyph, &matrix_rotate, 0 ); | |
1699 } | |
1700 } | |
1701 } | |
1702 | |
1703 // render | |
1704 render_text(&text_info, device_x, device_y); | |
1705 | |
1706 free_render_context(); | |
1707 | |
1708 return 0; | |
1709 } | |
1710 | |
1711 void ass_configure(ass_instance_t* priv, const ass_settings_t* config) | |
1712 { | |
1713 memcpy(&priv->settings, config, sizeof(ass_settings_t)); | |
1714 } | |
1715 | |
1716 /** | |
1717 * \brief Start a new frame | |
1718 */ | |
1719 int ass_start_frame(ass_instance_t *priv, ass_track_t* track, long long now) | |
1720 { | |
1721 ass_instance = priv; | |
1722 global_settings = &priv->settings; | |
1723 | |
1724 if (!priv->settings.frame_width && !priv->settings.frame_height) | |
1725 return 1; // library not initialized | |
1726 | |
1727 frame_context.ass_priv = priv; | |
1728 frame_context.width = global_settings->frame_width; | |
1729 frame_context.height = global_settings->frame_height; | |
1730 frame_context.orig_height = global_settings->frame_height - global_settings->top_margin - global_settings->bottom_margin; | |
1731 frame_context.track = track; | |
1732 frame_context.add_bottom_margin = 0; | |
1733 frame_context.add_top_margin = 0; | |
1734 frame_context.time = now; | |
1735 | |
1736 ass_lazy_track_init(); | |
1737 | |
1738 if (frame_context.width * track->PlayResY == frame_context.height * track->PlayResX) | |
1739 frame_context.font_scale_x = 1.; | |
1740 else | |
1741 frame_context.font_scale_x = ((double)(frame_context.width * track->PlayResY)) / (frame_context.height * track->PlayResX); | |
1742 | |
1743 priv->n_images = 0; | |
1744 | |
1745 return 0; | |
1746 } | |
1747 | |
1748 /** | |
1749 * \brief End a frame, give out rendering results | |
1750 * \return list of ass_image_t | |
1751 */ | |
1752 ass_image_t* ass_end_frame(void) | |
1753 { | |
1754 ass_instance_t* priv = ass_instance; | |
1755 if (priv->n_images) { | |
1756 int i; | |
1757 for (i = 0; i < priv->n_images - 1; ++i) | |
1758 priv->images_root[i].next = priv->images_root + i + 1; | |
1759 priv->images_root[priv->n_images - 1].next = 0; | |
1760 return priv->images_root; | |
1761 } else { | |
1762 return 0; | |
1763 } | |
1764 } | |
1765 /** | |
1766 * \brief render a frame | |
1767 * \param priv library handle | |
1768 * \param track track | |
1769 * \param now current video timestamp (ms) | |
1770 */ | |
1771 ass_image_t* ass_render_frame(ass_instance_t *priv, ass_track_t* track, long long now) | |
1772 { | |
1773 int i, rc; | |
1774 | |
1775 rc = ass_start_frame(priv, track, now); | |
1776 if (rc != 0) // some error | |
1777 return 0; | |
1778 for (i = 0; i < track->n_events; ++i) { | |
1779 ass_event_t* event = track->events + i; | |
1780 if ( (event->Start <= now) && (now < (event->Start + event->Duration)) ) { | |
1781 ass_render_event(event); | |
1782 } | |
1783 } | |
1784 return ass_end_frame(); | |
1785 } | |
1786 |