]> git.sesse.net Git - vlc/blob - src/video_output/video_text.c
* Added error checking in pthread wrapper ; as a result, intf_msg.h must
[vlc] / src / video_output / video_text.c
1 /*****************************************************************************
2  * video_text.c : text manipulation functions
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: video_text.c,v 1.31 2001/11/28 15:08:06 massiot Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include "defs.h"
29
30 #include <errno.h>                                                  /* errno */
31 #include <stdlib.h>                                                /* free() */
32 #include <stdio.h>                                              /* sprintf() */
33 #include <string.h>                                            /* strerror() */
34 #include <fcntl.h>                                                 /* open() */
35
36 #ifdef HAVE_UNISTD_H
37 #   include <unistd.h>                                    /* read(), close() */
38 #elif defined( _MSC_VER ) && defined( _WIN32 )
39 #   include <io.h>
40 #endif
41
42 #ifdef SYS_BEOS
43 #   include "beos_specific.h"
44 #endif
45
46 #ifdef SYS_DARWIN
47 #   include "darwin_specific.h"
48 #endif
49
50 #if defined( WIN32 )
51 #   include <io.h>
52 #endif
53
54 #include "config.h"
55 #include "common.h"
56 #include "video_text.h"
57
58 #include "intf_msg.h"
59
60 /*****************************************************************************
61  * vout_font_t: bitmap font
62  *****************************************************************************
63  * This structure is used when the system doesn't provide a convenient function
64  * to print simple characters in a buffer.
65  * VOUT_FIXED_FONTs are stored in raw mode, character after character, with a
66  * first array of characters followed by a second array of borders masks.
67  * Therefore the border masks can't be complete if the font has pixels on the
68  * border.
69  *****************************************************************************/
70 typedef struct vout_font_s
71 {
72     int                 i_type;                                 /* font type */
73     int                 i_width;                /* character width in pixels */
74     int                 i_height;              /* character height in pixels */
75     int                 i_interspacing; /* characters interspacing in pixels */
76     int                 i_bytes_per_line;        /* bytes per character line */
77     int                 i_bytes_per_char;             /* bytes per character */
78     u16                 i_first;                          /* first character */
79     u16                 i_last;                            /* last character */
80     byte_t *            p_data;                       /* font character data */
81 } vout_font_t;
82
83 /* Font types */
84 #define VOUT_FIXED_FONT       0                         /* simple fixed font */
85
86 /*****************************************************************************
87  * vout_put_byte_t: PutByte function
88  *****************************************************************************
89  * These functions will transform masks in a set of pixels. For each pixel,
90  * character, then border and background masks are tested, and the first
91  * encountered color is set.
92  *****************************************************************************/
93 typedef void (vout_put_byte_t)( void *p_pic, int i_byte, int i_char, int i_border,
94                                 int i_bg, u32 i_char_color, u32 i_border_color, u32 i_bg_color );
95
96
97 /*****************************************************************************
98  * Macros
99  *****************************************************************************/
100
101 /* PUT_BYTE_MASK: put pixels from a byte-wide mask. It uses a branching tree
102  * to optimize the number of tests. It is used in the PutByte functions.
103  * This macro works for 1, 2 and 4 Bpp. */
104 #define PUT_BYTE_MASK( i_mask, i_mask_color )                                 \
105 if( i_mask & 0xf0 )                                       /* one from 1111 */ \
106 {                                                                             \
107     if( i_mask & 0xc0 )                                   /* one from 1100 */ \
108     {                                                                         \
109         if( i_mask & 0x80 )                                        /* 1000 */ \
110         {                                                                     \
111             p_pic[0] = i_mask_color;                                          \
112             if( i_mask & 0x40 )                                    /* 0100 */ \
113             {                                                                 \
114                 p_pic[1] = i_mask_color;                                      \
115             }                                                                 \
116         }                                                                     \
117         else                                        /* not 1000 means 0100 */ \
118         {                                                                     \
119             p_pic[1] = i_mask_color;                                          \
120         }                                                                     \
121         if( i_mask & 0x30 )                               /* one from 0011 */ \
122         {                                                                     \
123             if( i_mask & 0x20 )                                    /* 0010 */ \
124             {                                                                 \
125                 p_pic[2] = i_mask_color;                                      \
126                 if( i_mask & 0x10 )                                /* 0001 */ \
127                 {                                                             \
128                     p_pic[3] = i_mask_color;                                  \
129                 }                                                             \
130             }                                                                 \
131             else                                    /* not 0010 means 0001 */ \
132             {                                                                 \
133                  p_pic[3] = i_mask_color;                                     \
134             }                                                                 \
135         }                                                                     \
136     }                                                                         \
137     else                                            /* not 1100 means 0011 */ \
138     {                                                                         \
139         if( i_mask & 0x20 )                                        /* 0010 */ \
140         {                                                                     \
141             p_pic[2] = i_mask_color;                                          \
142             if( i_mask & 0x10 )                                    /* 0001 */ \
143             {                                                                 \
144                 p_pic[3] = i_mask_color;                                      \
145             }                                                                 \
146         }                                                                     \
147         else                                        /* not 0010 means 0001 */ \
148         {                                                                     \
149             p_pic[3] = i_mask_color;                                          \
150         }                                                                     \
151     }                                                                         \
152 }                                                                             \
153 if( i_mask & 0x0f )                                                           \
154 {                                                                             \
155     if( i_mask & 0x0c )                       /* one from 1100 */             \
156     {                                                                         \
157         if( i_mask & 0x08 )                                        /* 1000 */ \
158         {                                                                     \
159             p_pic[4] = i_mask_color;                                          \
160             if( i_mask & 0x04 )                                    /* 0100 */ \
161             {                                                                 \
162                 p_pic[5] = i_mask_color;                                      \
163             }                                                                 \
164         }                                                                     \
165         else                                        /* not 1000 means 0100 */ \
166         {                                                                     \
167             p_pic[5] = i_mask_color;                                          \
168         }                                                                     \
169         if( i_mask & 0x03 )                               /* one from 0011 */ \
170         {                                                                     \
171             if( i_mask & 0x02 )                                    /* 0010 */ \
172             {                                                                 \
173                 p_pic[6] = i_mask_color;                                      \
174                 if( i_mask & 0x01 )                                /* 0001 */ \
175                 {                                                             \
176                     p_pic[7] = i_mask_color;                                  \
177                 }                                                             \
178             }                                                                 \
179             else                                    /* not 0010 means 0001 */ \
180             {                                                                 \
181                  p_pic[7] = i_mask_color;                                     \
182             }                                                                 \
183         }                                                                     \
184     }                                                                         \
185     else                                            /* not 1100 means 0011 */ \
186     {                                                                         \
187         if( i_mask & 0x02 )                                        /* 0010 */ \
188         {                                                                     \
189             p_pic[6] = i_mask_color;                                          \
190             if( i_mask & 0x01 )                                    /* 0001 */ \
191             {                                                                 \
192                 p_pic[7] = i_mask_color;                                      \
193             }                                                                 \
194         }                                                                     \
195         else                                        /* not 0010 means 0001 */ \
196         {                                                                     \
197             p_pic[7] = i_mask_color;                                          \
198         }                                                                     \
199     }                                                                         \
200 }
201
202 /*****************************************************************************
203  * Local prototypes
204  *****************************************************************************/
205 static void PutByte8 ( u8 *p_pic, int i_byte, int i_char, int i_border,
206                        int i_bg, u32 i_char_color, u32 i_border_color,
207                        u32 i_bg_color );
208 static void PutByte16( u16 *p_pic, int i_byte, int i_char, int i_border,
209                        int i_bg, u32 i_char_color, u32 i_border_color,
210                        u32 i_bg_color );
211 static void PutByte24( void *p_pic, int i_byte, byte_t i_char, byte_t i_border,
212                        byte_t i_bg, u32 i_char_color, u32 i_border_color,
213                        u32 i_bg_color );
214 static void PutByte32( u32 *p_pic, int i_byte, byte_t i_char, byte_t i_border,
215                        byte_t i_bg, u32 i_char_color, u32 i_border_color,
216                        u32 i_bg_color );
217
218 /*****************************************************************************
219  * vout_LoadFont: load a bitmap font from a file
220  *****************************************************************************
221  * This function will try to open a .psf font and load it. It will return
222  * NULL on error.
223  *****************************************************************************/
224 vout_font_t *vout_LoadFont( const char *psz_name )
225 {
226     static char * path[] = { "share", DATA_PATH, NULL, NULL };
227
228     char **             ppsz_path = path;
229     char *              psz_file;
230 #if defined( SYS_BEOS ) || defined( SYS_DARWIN )
231     char *              psz_vlcpath = system_GetProgramPath();
232     int                 i_vlclen = strlen( psz_vlcpath );
233 #endif
234     int                 i_char, i_line;        /* character and line indexes */
235     int                 i_file = -1;                          /* source file */
236     byte_t              pi_buffer[2];                         /* file buffer */
237     vout_font_t *       p_font;                           /* the font itself */
238
239     for( ; *ppsz_path != NULL ; ppsz_path++ )
240     {
241 #if defined( SYS_BEOS ) || defined( SYS_DARWIN )
242         /* Under BeOS, we need to add beos_GetProgramPath() to access
243          * files under the current directory */
244         if( strncmp( *ppsz_path, "/", 1 ) )
245         {
246             psz_file = malloc( strlen( psz_name ) + strlen( *ppsz_path )
247                                 + i_vlclen + 3 );
248             if( psz_file == NULL )
249             {
250                 continue;
251             }
252             sprintf( psz_file, "%s/%s/%s", psz_vlcpath, *ppsz_path, psz_name );
253         }
254         else
255 #endif
256         {
257             psz_file = malloc( strlen( psz_name ) + strlen( *ppsz_path ) + 2 );
258             if( psz_file == NULL )
259             {
260                 continue;
261             }
262             sprintf( psz_file, "%s/%s", *ppsz_path, psz_name );
263         }
264
265         /* Open file */
266         i_file = open( psz_file, O_RDONLY );
267         free( psz_file );
268
269         if( i_file != -1 )
270         {
271             break;
272         }
273     }
274
275     if( i_file == -1 )
276     {
277         intf_DbgMsg( "vout error: can't open file '%s' (%s)",
278                      psz_name, strerror(errno) );
279         return( NULL );
280     }
281
282     /* Read magick number */
283     if( read( i_file, pi_buffer, 2 ) != 2 )
284     {
285         intf_ErrMsg("vout error: unexpected end of file '%s'", psz_name );
286         close( i_file );
287         return( NULL );
288     }
289
290     /* Allocate font descriptor */
291     p_font = malloc( sizeof( vout_font_t ) );
292     if( p_font == NULL )
293     {
294         intf_ErrMsg( "vout error: cannot allocate vout_font_t (%s)",
295                      strerror(ENOMEM) );
296         close( i_file );
297         return( NULL );
298     }
299
300     /* Read file */
301     switch( ((u16)pi_buffer[0] << 8) | pi_buffer[1] )
302     {
303     case 0x3604:                                              /* .psf file */
304         /*
305          * PSF font: simple fixed font. Only the first 256 characters are read.
306          * Those fonts are always 1 byte wide, and 256 or 512 characters long.
307          */
308
309         /* Read font header - two bytes indicate the font properties */
310         if( read( i_file, pi_buffer, 2 ) != 2)
311         {
312             intf_ErrMsg( "vout error: unexpected end of file '%s'", psz_name );
313             free( p_font );
314             close( i_file );
315             return( NULL );
316         }
317
318         /* Copy font properties */
319         p_font->i_type =                VOUT_FIXED_FONT;
320         p_font->i_width =               8;
321         p_font->i_height =              pi_buffer[1];
322         p_font->i_interspacing =        8;
323         p_font->i_bytes_per_line =      1;
324         p_font->i_bytes_per_char =      pi_buffer[1];
325         p_font->i_first =               0;
326         p_font->i_last =                255;
327
328         /* Allocate font space */
329         p_font->p_data = malloc( 2 * 256 * pi_buffer[1] );
330         if( p_font->p_data == NULL )
331         {
332             intf_ErrMsg( "vout error: cannot allocate font space (%s)",
333                          strerror(ENOMEM) );
334             free( p_font );
335             close( i_file );
336             return( NULL );
337         }
338
339         /* Copy raw data */
340         if( read( i_file, p_font->p_data, 256 * pi_buffer[1] ) != 256 * pi_buffer[1] )
341         {
342             intf_ErrMsg("vout error: unexpected end of file '%s'", psz_name );
343             free( p_font->p_data );
344             free( p_font );
345             close( i_file );
346             return( NULL );
347         }
348
349         /* Computes border masks - remember that masks have the same matrix as
350          * characters, so an empty character border is required to have a complete
351          * border mask. */
352         for( i_char = 0; i_char <= 255; i_char++ )
353         {
354             for( i_line = 0; i_line < pi_buffer[1]; i_line++ )
355             {
356
357                 p_font->p_data[ (i_char + 256) * pi_buffer[1] + i_line ] =
358                     ((p_font->p_data[ i_char * pi_buffer[1] + i_line ] << 1) |
359                      (p_font->p_data[ i_char * pi_buffer[1] + i_line ] >> 1) |
360                      (i_line > 0 ? p_font->p_data[ i_char * pi_buffer[1] + i_line - 1]: 0) |
361                      (i_line < pi_buffer[1] - 1 ? p_font->p_data[ i_char * pi_buffer[1] + i_line + 1]: 0))
362                     & ~p_font->p_data[ i_char * pi_buffer[1] + i_line ];
363             }
364         }
365
366         break;
367     default:
368         intf_ErrMsg("vout error: file '%s' has an unknown format", psz_name );
369         free( p_font );
370         close( i_file );
371         return( NULL );
372         break;
373     }
374
375
376     intf_DbgMsg( "loaded %s: type %d, %d-%dx%d", psz_name, p_font->i_type,
377                  p_font->i_width, p_font->i_interspacing, p_font->i_height );
378     return( p_font );
379 }
380
381 /*****************************************************************************
382  * vout_UnloadFont: unload a font
383  *****************************************************************************
384  * This function free the resources allocated by vout_LoadFont
385  *****************************************************************************/
386 void vout_UnloadFont( vout_font_t *p_font )
387 {
388     /* If no font was loaded, do nothing */
389     if( p_font == NULL )
390     {
391         return;
392     }
393
394     intf_DbgMsg( "vout: unloading font %p", p_font );
395     free( p_font->p_data );
396     free( p_font );
397 }
398
399 /*****************************************************************************
400  * vout_TextSize: return the dimensions of a text
401  *****************************************************************************
402  * This function is used to align text. It returns the width and height of a
403  * given text.
404  *****************************************************************************/
405 void vout_TextSize( vout_font_t *p_font, int i_style, const char *psz_text, int *pi_width, int *pi_height )
406 {
407     /* If no font was loaded, do nothing */
408     if( p_font == NULL )
409     {
410         *pi_width = *pi_height = 0;
411         return;
412     }
413
414     switch( p_font->i_type )
415     {
416     case VOUT_FIXED_FONT:
417         *pi_width  = ((i_style & WIDE_TEXT) ? p_font->i_interspacing * 2 : p_font->i_interspacing) *
418             (strlen( psz_text ) - 1) + p_font->i_width;
419         *pi_height = p_font->i_height;
420         if( i_style & ITALIC_TEXT )
421         {
422             *pi_width = *pi_height / 3;
423         }
424         break;
425 #ifdef DEBUG
426     default:
427         intf_ErrMsg("error: unknown font type %d", p_font->i_type );
428         break;
429 #endif
430     }
431 }
432
433 /*****************************************************************************
434  * vout_Print: low level printing function
435  *****************************************************************************
436  * This function prints a text, without clipping, in a buffer using a
437  * previously loaded bitmap font.
438  *****************************************************************************/
439 void vout_Print( vout_font_t *p_font, byte_t *p_pic, int i_bytes_per_pixel, int i_bytes_per_line,
440                  u32 i_char_color, u32 i_border_color, u32 i_bg_color, int i_style, const char *psz_text, int i_percent)
441 {
442     byte_t      *p_char, *p_border;        /* character and border mask data */
443     int         i_char_mask, i_border_mask, i_bg_mask;              /* masks */
444     int         i_line;                         /* current line in character */
445     int         i_byte;                         /* current byte in character */
446     int         i_interspacing;                  /* offset between two chars */
447     int         i_font_bytes_per_line, i_font_height;     /* font properties */
448     int         i_position, i_end;                      /* current position  */
449     vout_put_byte_t *p_PutByte;                          /* PutByte function */
450
451     /* If no font was loaded, do nothing */
452     if( p_font == NULL )
453     {
454         return;
455     }
456
457     /* FIXME: background: can be something else that whole byte ?? */
458
459     /* Select output function */
460     switch( i_bytes_per_pixel )
461     {
462     case 1:
463         p_PutByte = (vout_put_byte_t *) PutByte8;
464         break;
465     case 2:
466         p_PutByte = (vout_put_byte_t *) PutByte16;
467         break;
468     case 3:
469         p_PutByte = (vout_put_byte_t *) PutByte24;
470         break;
471     case 4:
472     default:
473         p_PutByte = (vout_put_byte_t *) PutByte32;
474         break;
475     }
476
477     /* Choose masks and copy font data to local variables */
478     i_char_mask =               (i_style & VOID_TEXT) ?         0 : 0xff;
479     i_border_mask =             (i_style & OUTLINED_TEXT) ?     0xff : 0;
480     i_bg_mask =                 (i_style & OPAQUE_TEXT) ?       0xff : 0;
481
482     i_font_bytes_per_line =     p_font->i_bytes_per_line;
483     i_font_height =             p_font->i_height;
484     i_interspacing =            i_bytes_per_pixel * ((i_style & WIDE_TEXT) ?
485                                                      p_font->i_interspacing * 2 :
486                                                      p_font->i_interspacing);
487
488     /* compute where to stop... */
489     i_end = (int) (i_percent * strlen(psz_text) / I64C(100));
490     if(i_end > strlen(psz_text))
491         i_end = strlen(psz_text);
492     
493     
494     /* Print text */
495     for( i_position = 0; i_position < i_end; i_position++ ,psz_text++ )
496     {
497         /* Check that the character is valid */
498         if( (*psz_text >= p_font->i_first) && (*psz_text <= p_font->i_last) )
499         {
500             /* Select character - bytes per char is always valid, event for
501              * non fixed fonts */
502             p_char =    p_font->p_data + (*psz_text - p_font->i_first) * p_font->i_bytes_per_char;
503             p_border =  p_char + (p_font->i_last - p_font->i_first + 1) * p_font->i_bytes_per_char;
504
505             /* Select base address for output */
506             switch( p_font->i_type )
507             {
508             case VOUT_FIXED_FONT:
509                 /*
510                  * Simple fixed width font
511                  */
512
513                 /* Italic text: shift picture start right */
514                 if( i_style & ITALIC_TEXT )
515                 {
516                     p_pic += i_bytes_per_pixel * (p_font->i_height / 3);
517                 }
518
519                 /* Print character */
520                 for( i_line = 0; i_line < i_font_height; i_line ++ )
521                 {
522                     for( i_byte = 0; i_byte < i_font_bytes_per_line; i_byte++, p_char++, p_border++)
523                     {
524                         /* Put pixels */
525                         p_PutByte( p_pic + i_bytes_per_line * i_line, i_byte,
526                                    *p_char & i_char_mask, *p_border & i_border_mask, i_bg_mask,
527                                    i_char_color, i_border_color, i_bg_color );
528                     }
529
530                     /* Italic text: shift picture start left */
531                     if( (i_style & ITALIC_TEXT) && !(i_line % 3) )
532                     {
533                         p_pic -= i_bytes_per_pixel;
534                     }
535                 }
536
537                 /* Jump to next character */
538                 p_pic += i_interspacing;
539                 break;
540 #ifdef DEBUG
541             default:
542                 intf_ErrMsg("error: unknown font type %d", p_font->i_type );
543                 break;
544 #endif
545             }
546         }
547     
548     }
549 }
550
551 /* following functions are local */
552
553 /*****************************************************************************
554  * PutByte8: print a fixed width font character byte in 1 Bpp
555  *****************************************************************************/
556 static void PutByte8( u8 *p_pic, int i_byte, int i_char, int i_border,
557                        int i_bg, u32 i_char_color, u32 i_border_color,
558                        u32 i_bg_color )
559 {
560     /* Computes position offset and background mask */
561     p_pic += 8 * i_byte;
562     i_bg &= ~(i_char | i_border);
563
564     /* Put character bits */
565     PUT_BYTE_MASK(i_char, i_char_color);
566     PUT_BYTE_MASK(i_border, i_border_color);
567     PUT_BYTE_MASK(i_bg, i_bg_color);
568 }
569
570 /*****************************************************************************
571  * PutByte16: print a fixed width font character byte in 2 Bpp
572  *****************************************************************************/
573 static void PutByte16( u16 *p_pic, int i_byte, int i_char, int i_border,
574                        int i_bg, u32 i_char_color, u32 i_border_color,
575                        u32 i_bg_color )
576 {
577     /* Computes position offset and background mask */
578     p_pic += 8 * i_byte;
579     i_bg &= ~(i_char | i_border);
580
581     /* Put character bits */
582     PUT_BYTE_MASK(i_char, i_char_color);
583     PUT_BYTE_MASK(i_border, i_border_color);
584     PUT_BYTE_MASK(i_bg, i_bg_color);
585 }
586
587 /*****************************************************************************
588  * PutByte24: print a fixed width font character byte in 3 Bpp
589  *****************************************************************************/
590 static void PutByte24( void *p_pic, int i_byte, byte_t i_char, byte_t i_border, byte_t i_bg,
591                        u32 i_char_color, u32 i_border_color, u32 i_bg_color )
592 {
593     /* XXX?? */
594 }
595
596 /*****************************************************************************
597  * PutByte32: print a fixed width font character byte in 4 Bpp
598  *****************************************************************************/
599 static void PutByte32( u32 *p_pic, int i_byte, byte_t i_char, byte_t i_border, byte_t i_bg,
600                        u32 i_char_color, u32 i_border_color, u32 i_bg_color )
601 {
602     /* Computes position offset and background mask */
603     p_pic += 8 * i_byte;
604     i_bg &= ~(i_char | i_border);
605
606     /* Put character bits */
607     PUT_BYTE_MASK(i_char, i_char_color);
608     PUT_BYTE_MASK(i_border, i_border_color);
609     PUT_BYTE_MASK(i_bg, i_bg_color);
610 }
611