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