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