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