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