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