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