00001 /***************************************************************************** 00002 * vlc_osd.h - OSD menu and subpictures definitions and function prototypes 00003 ***************************************************************************** 00004 * Copyright (C) 1999-2006 the VideoLAN team 00005 * Copyright (C) 2004-2005 M2X 00006 * $Id: 06168b4b8f4986601c4239d2e73b81232ccba6e7 $ 00007 * 00008 * Authors: Jean-Paul Saman <jpsaman #_at_# m2x dot nl> 00009 * Gildas Bazin <gbazin@videolan.org> 00010 * 00011 * Added code from include/osd.h written by: 00012 * Copyright (C) 2003-2005 the VideoLAN team 00013 * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org> 00014 * 00015 * This program is free software; you can redistribute it and/or modify 00016 * it under the terms of the GNU General Public License as published by 00017 * the Free Software Foundation; either version 2 of the License, or 00018 * (at your option) any later version. 00019 * 00020 * This program is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * You should have received a copy of the GNU General Public License 00026 * along with this program; if not, write to the Free Software 00027 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00028 *****************************************************************************/ 00029 00030 #ifndef VLC_OSD_H 00031 #define VLC_OSD_H 1 00032 00033 #include <vlc_vout.h> 00034 #include <vlc_spu.h> 00035 #include <vlc_vout_osd.h> 00036 00037 # ifdef __cplusplus 00038 extern "C" { 00039 # endif 00040 00041 /** 00042 * \file 00043 * This file defines SPU subpicture and OSD functions and object types. 00044 */ 00045 00046 /********************************************************************** 00047 * OSD Menu 00048 **********************************************************************/ 00049 /** 00050 * \defgroup osdmenu OSD Menu 00051 * The OSD menu core creates the OSD menu structure in memory. It parses a 00052 * configuration file that defines all elements that are part of the menu. The 00053 * core also handles all actions and menu structure updates on behalf of video 00054 * subpicture filters. 00055 * 00056 * The file modules/video_filters/osdmenu.c implements a subpicture filter that 00057 * specifies the final information on positioning of the current state image. 00058 * A subpicture filter is called each time a video picture has to be rendered, 00059 * it also gives a start and end date to the subpicture. The subpicture can be 00060 * streamed if used inside a transcoding command. For example: 00061 * 00062 * vlc dvdsimple:///dev/dvd --extraintf rc 00063 * --sout='#transcode{osd}:std{access=udp,mux=ts,dst=dest_ipaddr}' 00064 * --osdmenu-file=share/osdmenu/dvd.cfg 00065 * 00066 * An example for local usage of the OSD menu is: 00067 * 00068 * vlc dvdsimple:///dev/dvd --extraintf rc 00069 * --sub-filter osdmenu 00070 * --osdmenu-file=share/osdmenu/dvd.cfg 00071 * 00072 * Each OSD menu element, called "action", defines a hotkey action. Each action 00073 * can have several states (unselect, select, pressed). Each state has an image 00074 * that represents the state visually. The commands "menu right", "menu left", 00075 * "menu up" and "menu down" are used to navigate through the OSD menu structure. 00076 * The commands "menu on" or "menu show" and "menu off" or "menu hide" respectively 00077 * show and hide the OSD menu subpictures. 00078 * 00079 * There is one special element called "range". A range is an arbritary range 00080 * of state images that can be browsed using "menu up" and "menu down" commands 00081 * on the rc interface. 00082 * 00083 * The OSD menu configuration file uses a very simple syntax and basic parser. 00084 * A configuration file has the ".cfg". 00085 * An example is "share/osdmenu/dvd256.cfg". 00086 * @{ 00087 */ 00088 00089 /** 00090 * \brief The OSD Menu configuration file format. 00091 * 00092 * The configuration file syntax is very basic and so is its parser. See the 00093 * BNF formal representation below: 00094 * 00095 * The keywords FILENAME and PATHNAME represent the filename and pathname 00096 * specification that is valid for the Operating System VLC is compiled for. 00097 * 00098 * The hotkey actions that are supported by VLC are documented in the file 00099 * src/libvlc. The file include/vlc_keys.h defines some hotkey internals. 00100 * 00101 * CONFIG_FILE = FILENAME '.cfg' 00102 * WS = [ ' ' | '\t' ]+ 00103 * OSDMENU_PATH = PATHNAME 00104 * DIR = 'dir' WS OSDMENU_PATH '\n' 00105 * STYLE = 'style' [ 'default' | 'concat' ] '\n' 00106 * STATE = [ 'unselect' | 'select' | 'pressed' ] 00107 * HOTKEY_ACTION = 'key-' [ 'a' .. 'z', 'A' .. 'Z', '-' ]+ 00108 * 00109 * ACTION_TYPE = 'type' 'volume' '\n' 00110 * ACTION_BLOCK_START = 'action' WS HOTKEY_ACTION WS '('POS','POS')' '\n' 00111 * ACTION_BLOCK_END = 'end' '\n' 00112 * ACTION_STATE = STATE WS FILENAME '\n' 00113 * ACTION_RANGE_START = 'range' WS HOTKEY_ACTION WS DEFAULT_INDEX '\n' 00114 * ACTION_RANGE_END = 'end' '\n' 00115 * ACTION_RANGE_STATE = FILENAME '\n' 00116 * 00117 * ACTION_BLOCK_RANGE = ACTION_RANGE_START [WS ACTION_RANGE_STATE]+ WS ACTION_RANGE_END 00118 * ACTION_BLOCK = ACTION_BLOCK_START [WS ACTION_TYPE*] [ [WS ACTION_STATE]+3 | [WS ACTION_BLOCK_RANGE]+1 ] ACTION_BLOCK_END 00119 * CONFIG_FILE_CONTENTS = DIR [ACTION_BLOCK]+ 00120 * 00121 */ 00122 00123 /** 00124 * OSD menu button states 00125 * 00126 * Every button has three states, either it is unselected, selected or pressed. 00127 * An OSD menu skin can associate images with each state. 00128 * 00129 * OSD_BUTTON_UNSELECT 0 00130 * OSD_BUTTON_SELECT 1 00131 * OSD_BUTTON_PRESSED 2 00132 */ 00133 #define OSD_BUTTON_UNSELECT 0 00134 #define OSD_BUTTON_SELECT 1 00135 #define OSD_BUTTON_PRESSED 2 00136 00137 /** 00138 * OSD State object 00139 * 00140 * The OSD state object holds the state and associated images for a 00141 * particular state on the screen. The picture is displayed when this 00142 * state is the active state. 00143 */ 00144 struct osd_state_t 00145 { 00146 osd_state_t *p_next; /*< pointer to next state */ 00147 osd_state_t *p_prev; /*< pointer to previous state */ 00148 picture_t *p_pic; /*< picture of state */ 00149 00150 char *psz_state; /*< state name */ 00151 int i_state; /*< state index */ 00152 00153 int i_x; /*< x-position of button state image */ 00154 int i_y; /*< y-position of button state image */ 00155 int i_width; /*< width of button state image */ 00156 int i_height; /*< height of button state image */ 00157 }; 00158 00159 /** 00160 * OSD Button object 00161 * 00162 * An OSD Button has different states. Each state has an image for display. 00163 */ 00164 struct osd_button_t 00165 { 00166 osd_button_t *p_next; /*< pointer to next button */ 00167 osd_button_t *p_prev; /*< pointer to previous button */ 00168 osd_button_t *p_up; /*< pointer to up button */ 00169 osd_button_t *p_down; /*< pointer to down button */ 00170 00171 osd_state_t *p_current_state; /*< pointer to current state image */ 00172 osd_state_t *p_states; /*< doubly linked list of states */ 00173 picture_t *p_feedback; /*< feedback picture */ 00174 00175 char *psz_name; /*< name of button */ 00176 00177 /* These member should probably be a struct hotkey */ 00178 char *psz_action; /*< hotkey action name on button*/ 00179 char *psz_action_down; /*< hotkey action name on range buttons 00180 for command "menu down" */ 00181 /* end of hotkey specifics */ 00182 00183 int i_x; /*< x-position of button visible state image */ 00184 int i_y; /*< y-position of button visible state image */ 00185 int i_width; /*< width of button visible state image */ 00186 int i_height; /*< height of button visible state image */ 00187 00188 /* range style button */ 00189 bool b_range; /*< button should be interpreted as range */ 00190 int i_ranges; /*< number of states */ 00191 }; 00192 00193 /** 00194 * OSD Menu Style 00195 * 00196 * The images that make up an OSD menu can be created in such away that 00197 * they contain all buttons in the same picture, with the selected one 00198 * highlighted or being a concatenation of all the separate images. The 00199 * first case is the default. 00200 * 00201 * To change the default style the keyword 'style' should be set to 'concat'. 00202 */ 00203 00204 #define OSD_MENU_STYLE_SIMPLE 0x0 00205 #define OSD_MENU_STYLE_CONCAT 0x1 00206 00207 /** 00208 * OSD Menu State object 00209 * 00210 * Represents the current state as displayed. 00211 */ 00212 /* Represent the menu state */ 00213 struct osd_menu_state_t 00214 { 00215 int i_x; /*< x position of spu region */ 00216 int i_y; /*< y position of spu region */ 00217 int i_width; /*< width of spu region */ 00218 int i_height; /*< height of spu region */ 00219 00220 picture_t *p_pic; /*< pointer to picture to display */ 00221 osd_button_t *p_visible; /*< shortcut to visible button */ 00222 00223 bool b_menu_visible; /*< menu currently visible? */ 00224 bool b_update; /*< update OSD Menu when true */ 00225 00226 /* quick hack to volume state. */ 00227 osd_button_t *p_volume; /*< pointer to volume range object. */ 00228 }; 00229 00230 /** 00231 * OSD Menu object 00232 * 00233 * The main OSD Menu object, which holds a linked list to all buttons 00234 * and images that defines the menu. The p_state variable represents the 00235 * current state of the OSD Menu. 00236 */ 00237 struct osd_menu_t 00238 { 00239 VLC_COMMON_MEMBERS 00240 00241 int i_x; /*< x-position of OSD Menu on the video screen */ 00242 int i_y; /*< y-position of OSD Menu on the video screen */ 00243 int i_width; /*< width of OSD Menu on the video screen */ 00244 int i_height; /*< height of OSD Menu on the video screen */ 00245 int i_style; /*< style of spu region generation */ 00246 int i_position; /*< display position */ 00247 00248 char *psz_path; /*< directory where OSD menu images are stored */ 00249 osd_button_t *p_button; /*< doubly linked list of buttons */ 00250 osd_menu_state_t *p_state; /*< current state of OSD menu */ 00251 00252 /* quick link in the linked list. */ 00253 osd_button_t *p_last_button; /*< pointer to last button in the list */ 00254 00255 /* misc parser */ 00256 module_t *p_parser; /*< pointer to parser module */ 00257 char *psz_file; /*< Config file name */ 00258 image_handler_t *p_image; /*< handler to image loading and conversion libraries */ 00259 }; 00260 00261 /** 00262 * Initialize an osd_menu_t object 00263 * 00264 * This functions has to be called before any call to other osd_menu_t* 00265 * functions. It creates the osd_menu object and holds a pointer to it 00266 * during its lifetime. 00267 */ 00268 VLC_EXPORT( osd_menu_t *, osd_MenuCreate, ( vlc_object_t *, const char * ) LIBVLC_USED ); 00269 00270 /** 00271 * Delete the osd_menu_t object 00272 * 00273 * This functions has to be called to release the associated module and 00274 * memory for the osdmenu. After return of this function the pointer to 00275 * osd_menu_t* is invalid. 00276 */ 00277 VLC_EXPORT( void, osd_MenuDelete, ( vlc_object_t *, osd_menu_t * ) ); 00278 00279 #define osd_MenuCreate(object,file) osd_MenuCreate( VLC_OBJECT(object), file ) 00280 #define osd_MenuDelete(object,osd) osd_MenuDelete( VLC_OBJECT(object), osd ) 00281 00282 /** 00283 * Find OSD Menu button at position x,y 00284 */ 00285 VLC_EXPORT( osd_button_t *, osd_ButtonFind, ( vlc_object_t *p_this, 00286 int, int, int, int, int, int ) LIBVLC_USED ); 00287 00288 #define osd_ButtonFind(object,x,y,h,w,sh,sw) osd_ButtonFind(object,x,y,h,w,sh,sw) 00289 00290 /** 00291 * Select the button provided as the new active button 00292 */ 00293 VLC_EXPORT( void, osd_ButtonSelect, ( vlc_object_t *, osd_button_t *) ); 00294 00295 #define osd_ButtonSelect(object,button) osd_ButtonSelect(object,button) 00296 00297 /** 00298 * Show the OSD menu. 00299 * 00300 * Show the OSD menu on the video output or mux it into the stream. 00301 * Every change to the OSD menu will now be visible in the output. An output 00302 * can be a video output window or a stream (\see stream output) 00303 */ 00304 VLC_EXPORT( void, osd_MenuShow, ( vlc_object_t * ) ); 00305 00306 /** 00307 * Hide the OSD menu. 00308 * 00309 * Stop showing the OSD menu on the video output or mux it into the stream. 00310 */ 00311 VLC_EXPORT( void, osd_MenuHide, ( vlc_object_t * ) ); 00312 00313 /** 00314 * Activate the action of this OSD menu item. 00315 * 00316 * The rc interface command "menu select" triggers the sending of an 00317 * hotkey action to the hotkey interface. The hotkey that belongs to 00318 * the current highlighted OSD menu item will be used. 00319 */ 00320 VLC_EXPORT( void, osd_MenuActivate, ( vlc_object_t * ) ); 00321 00322 #define osd_MenuShow(object) osd_MenuShow( VLC_OBJECT(object) ) 00323 #define osd_MenuHide(object) osd_MenuHide( VLC_OBJECT(object) ) 00324 #define osd_MenuActivate(object) osd_MenuActivate( VLC_OBJECT(object) ) 00325 00326 /** 00327 * Next OSD menu item 00328 * 00329 * Select the next OSD menu item to be highlighted. 00330 * Note: The actual position on screen of the menu item is determined by 00331 * the OSD menu configuration file. 00332 */ 00333 VLC_EXPORT( void, osd_MenuNext, ( vlc_object_t * ) ); 00334 00335 /** 00336 * Previous OSD menu item 00337 * 00338 * Select the previous OSD menu item to be highlighted. 00339 * Note: The actual position on screen of the menu item is determined by 00340 * the OSD menu configuration file. 00341 */ 00342 VLC_EXPORT( void, osd_MenuPrev, ( vlc_object_t * ) ); 00343 00344 /** 00345 * OSD menu item above 00346 * 00347 * Select the OSD menu item above the current item to be highlighted. 00348 * Note: The actual position on screen of the menu item is determined by 00349 * the OSD menu configuration file. 00350 */ 00351 VLC_EXPORT( void, osd_MenuUp, ( vlc_object_t * ) ); 00352 00353 /** 00354 * OSD menu item below 00355 * 00356 * Select the next OSD menu item below the current item to be highlighted. 00357 * Note: The actual position on screen of the menu item is determined by 00358 * the OSD menu configuration file. 00359 */ 00360 VLC_EXPORT( void, osd_MenuDown, ( vlc_object_t * ) ); 00361 00362 #define osd_MenuNext(object) osd_MenuNext( VLC_OBJECT(object) ) 00363 #define osd_MenuPrev(object) osd_MenuPrev( VLC_OBJECT(object) ) 00364 #define osd_MenuUp(object) osd_MenuUp( VLC_OBJECT(object) ) 00365 #define osd_MenuDown(object) osd_MenuDown( VLC_OBJECT(object) ) 00366 00367 /** 00368 * Display the audio volume bitmap. 00369 * 00370 * Display the correct audio volume bitmap that corresponds to the 00371 * current Audio Volume setting. 00372 */ 00373 VLC_EXPORT( void, osd_Volume, ( vlc_object_t * ) ); 00374 00375 #define osd_Volume(object) osd_Volume( VLC_OBJECT(object) ) 00376 00377 /** 00378 * Retrieve a non modifyable pointer to the OSD Menu state 00379 * 00380 */ 00381 LIBVLC_USED 00382 static inline const osd_menu_state_t *osd_GetMenuState( osd_menu_t *p_osd ) 00383 { 00384 return( p_osd->p_state ); 00385 } 00386 00387 /** 00388 * Get the last key press received by the OSD Menu 00389 * 00390 * Returns 0 when no key has been pressed or the value of the key pressed. 00391 */ 00392 LIBVLC_USED 00393 static inline bool osd_GetKeyPressed( osd_menu_t *p_osd ) 00394 { 00395 return( p_osd->p_state->b_update ); 00396 } 00397 00398 /** 00399 * Set the key pressed to a value. 00400 * 00401 * Assign a new key value to the last key pressed on the OSD Menu. 00402 */ 00403 static inline void osd_SetKeyPressed( vlc_object_t *p_this, int i_value ) 00404 { 00405 vlc_value_t val; 00406 00407 val.i_int = i_value; 00408 var_Set( p_this, "key-pressed", val ); 00409 } 00410 00411 /** 00412 * Update the OSD Menu visibility flag. 00413 * 00414 * true means OSD Menu should be shown. false means OSD Menu 00415 * should not be shown. 00416 */ 00417 static inline void osd_SetMenuVisible( osd_menu_t *p_osd, bool b_value ) 00418 { 00419 vlc_value_t val; 00420 00421 val.b_bool = p_osd->p_state->b_menu_visible = b_value; 00422 var_Set( p_osd, "osd-menu-visible", val ); 00423 } 00424 00425 /** 00426 * Update the OSD Menu update flag 00427 * 00428 * If the OSD Menu should be updated then set the update flag to 00429 * true, else to false. 00430 */ 00431 static inline void osd_SetMenuUpdate( osd_menu_t *p_osd, bool b_value ) 00432 { 00433 vlc_value_t val; 00434 00435 val.b_bool = p_osd->p_state->b_update = b_value; 00436 var_Set( p_osd, "osd-menu-update", val ); 00437 } 00438 00439 /** 00440 * Textual feedback 00441 * 00442 * Functions that provide the textual feedback on the OSD. They are shown 00443 * on hotkey commands. The feedback is also part of the osd_button_t 00444 * object. The types are declared in the include file include/vlc_osd.h 00445 * @see vlc_osd.h 00446 */ 00447 VLC_EXPORT( int, osd_ShowTextRelative, ( spu_t *, int, const char *, const text_style_t *, int, int, int, mtime_t ) ); 00448 VLC_EXPORT( int, osd_ShowTextAbsolute, ( spu_t *, int, const char *, const text_style_t *, int, int, int, mtime_t, mtime_t ) ); 00449 VLC_EXPORT( void, osd_Message, ( spu_t *, int, char *, ... ) LIBVLC_FORMAT( 3, 4 ) ); 00450 00451 /** @} */ 00452 00453 # ifdef __cplusplus 00454 } 00455 # endif 00456 00457 #endif /* _VLC_OSD_H */
1.5.6