00001 /***************************************************************************** 00002 * vlc_osd.h - OSD menu and subpictures definitions and function prototypes 00003 ***************************************************************************** 00004 * Copyright (C) 1999-2006 VLC authors and VideoLAN 00005 * Copyright (C) 2004-2005 M2X 00006 * $Id: 90baaeb34a81b0dd57d9f26d1d24b026b9e0d07a $ 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 VLC authors and VideoLAN 00013 * Authors: Sigmund Augdal Helberg <dnumgis@videolan.org> 00014 * 00015 * This program is free software; you can redistribute it and/or modify it 00016 * under the terms of the GNU Lesser General Public License as published by 00017 * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. 00024 * 00025 * You should have received a copy of the GNU Lesser General Public License 00026 * along with this program; if not, write to the Free Software Foundation, 00027 * 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 sources. 00055 * 00056 * The file modules/video_filters/osdmenu.c implements a subpicture source that 00057 * specifies the final information on positioning of the current state image. 00058 * A subpicture source 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-source 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 00174 char *psz_name; /*< name of button */ 00175 00176 /* These member should probably be a struct hotkey */ 00177 char *psz_action; /*< hotkey action name on button*/ 00178 char *psz_action_down; /*< hotkey action name on range buttons 00179 for command "menu down" */ 00180 /* end of hotkey specifics */ 00181 00182 int i_x; /*< x-position of button visible state image */ 00183 int i_y; /*< y-position of button visible state image */ 00184 int i_width; /*< width of button visible state image */ 00185 int i_height; /*< height of button visible state image */ 00186 00187 /* range style button */ 00188 bool b_range; /*< button should be interpreted as range */ 00189 int i_ranges; /*< number of states */ 00190 }; 00191 00192 /** 00193 * OSD Menu Style 00194 * 00195 * The images that make up an OSD menu can be created in such away that 00196 * they contain all buttons in the same picture, with the selected one 00197 * highlighted or being a concatenation of all the separate images. The 00198 * first case is the default. 00199 * 00200 * To change the default style the keyword 'style' should be set to 'concat'. 00201 */ 00202 00203 #define OSD_MENU_STYLE_SIMPLE 0x0 00204 #define OSD_MENU_STYLE_CONCAT 0x1 00205 00206 /** 00207 * OSD Menu State object 00208 * 00209 * Represents the current state as displayed. 00210 */ 00211 /* Represent the menu state */ 00212 struct osd_menu_state_t 00213 { 00214 int i_x; /*< x position of spu region */ 00215 int i_y; /*< y position of spu region */ 00216 int i_width; /*< width of spu region */ 00217 int i_height; /*< height of spu region */ 00218 00219 picture_t *p_pic; /*< pointer to picture to display */ 00220 osd_button_t *p_visible; /*< shortcut to visible button */ 00221 00222 bool b_menu_visible; /*< menu currently visible? */ 00223 bool b_update; /*< update OSD Menu when true */ 00224 00225 /* quick hack to volume state. */ 00226 osd_button_t *p_volume; /*< pointer to volume range object. */ 00227 }; 00228 00229 /** 00230 * OSD Menu object 00231 * 00232 * The main OSD Menu object, which holds a linked list to all buttons 00233 * and images that defines the menu. The p_state variable represents the 00234 * current state of the OSD Menu. 00235 */ 00236 struct osd_menu_t 00237 { 00238 VLC_COMMON_MEMBERS 00239 00240 int i_x; /*< x-position of OSD Menu on the video screen */ 00241 int i_y; /*< y-position of OSD Menu on the video screen */ 00242 int i_width; /*< width of OSD Menu on the video screen */ 00243 int i_height; /*< height of OSD Menu on the video screen */ 00244 int i_style; /*< style of spu region generation */ 00245 int i_position; /*< display position */ 00246 00247 char *psz_path; /*< directory where OSD menu images are stored */ 00248 osd_button_t *p_button; /*< doubly linked list of buttons */ 00249 osd_menu_state_t *p_state; /*< current state of OSD menu */ 00250 00251 /* quick link in the linked list. */ 00252 osd_button_t *p_last_button; /*< pointer to last button in the list */ 00253 00254 /* misc parser */ 00255 module_t *p_parser; /*< pointer to parser module */ 00256 char *psz_file; /*< Config file name */ 00257 image_handler_t *p_image; /*< handler to image loading and conversion libraries */ 00258 }; 00259 00260 /** 00261 * Initialize an osd_menu_t object 00262 * 00263 * This functions has to be called before any call to other osd_menu_t* 00264 * functions. It creates the osd_menu object and holds a pointer to it 00265 * during its lifetime. 00266 */ 00267 VLC_API osd_menu_t * osd_MenuCreate( vlc_object_t *, const char * ) VLC_USED; 00268 00269 /** 00270 * Delete the osd_menu_t object 00271 * 00272 * This functions has to be called to release the associated module and 00273 * memory for the osdmenu. After return of this function the pointer to 00274 * osd_menu_t* is invalid. 00275 */ 00276 VLC_API void osd_MenuDelete( vlc_object_t *, osd_menu_t * ); 00277 00278 #define osd_MenuCreate(object,file) osd_MenuCreate( VLC_OBJECT(object), file ) 00279 #define osd_MenuDelete(object,osd) osd_MenuDelete( VLC_OBJECT(object), osd ) 00280 00281 /** 00282 * Find OSD Menu button at position x,y 00283 */ 00284 VLC_API osd_button_t *osd_ButtonFind( vlc_object_t *p_this, 00285 int, int, int, int, int, int ) VLC_USED; 00286 00287 #define osd_ButtonFind(object,x,y,h,w,sh,sw) osd_ButtonFind(object,x,y,h,w,sh,sw) 00288 00289 /** 00290 * Select the button provided as the new active button 00291 */ 00292 VLC_API void osd_ButtonSelect( vlc_object_t *, osd_button_t *); 00293 00294 #define osd_ButtonSelect(object,button) osd_ButtonSelect(object,button) 00295 00296 /** 00297 * Show the OSD menu. 00298 * 00299 * Show the OSD menu on the video output or mux it into the stream. 00300 * Every change to the OSD menu will now be visible in the output. An output 00301 * can be a video output window or a stream (\see stream output) 00302 */ 00303 VLC_API void osd_MenuShow( vlc_object_t * ); 00304 00305 /** 00306 * Hide the OSD menu. 00307 * 00308 * Stop showing the OSD menu on the video output or mux it into the stream. 00309 */ 00310 VLC_API void osd_MenuHide( vlc_object_t * ); 00311 00312 /** 00313 * Activate the action of this OSD menu item. 00314 * 00315 * The rc interface command "menu select" triggers the sending of an 00316 * hotkey action to the hotkey interface. The hotkey that belongs to 00317 * the current highlighted OSD menu item will be used. 00318 */ 00319 VLC_API void osd_MenuActivate( vlc_object_t * ); 00320 00321 #define osd_MenuShow(object) osd_MenuShow( VLC_OBJECT(object) ) 00322 #define osd_MenuHide(object) osd_MenuHide( VLC_OBJECT(object) ) 00323 #define osd_MenuActivate(object) osd_MenuActivate( VLC_OBJECT(object) ) 00324 00325 /** 00326 * Next OSD menu item 00327 * 00328 * Select the next OSD menu item to be highlighted. 00329 * Note: The actual position on screen of the menu item is determined by 00330 * the OSD menu configuration file. 00331 */ 00332 VLC_API void osd_MenuNext( vlc_object_t * ); 00333 00334 /** 00335 * Previous OSD menu item 00336 * 00337 * Select the previous OSD menu item to be highlighted. 00338 * Note: The actual position on screen of the menu item is determined by 00339 * the OSD menu configuration file. 00340 */ 00341 VLC_API void osd_MenuPrev( vlc_object_t * ); 00342 00343 /** 00344 * OSD menu item above 00345 * 00346 * Select the OSD menu item above the current item to be highlighted. 00347 * Note: The actual position on screen of the menu item is determined by 00348 * the OSD menu configuration file. 00349 */ 00350 VLC_API void osd_MenuUp( vlc_object_t * ); 00351 00352 /** 00353 * OSD menu item below 00354 * 00355 * Select the next OSD menu item below the current item to be highlighted. 00356 * Note: The actual position on screen of the menu item is determined by 00357 * the OSD menu configuration file. 00358 */ 00359 VLC_API void osd_MenuDown( vlc_object_t * ); 00360 00361 #define osd_MenuNext(object) osd_MenuNext( VLC_OBJECT(object) ) 00362 #define osd_MenuPrev(object) osd_MenuPrev( VLC_OBJECT(object) ) 00363 #define osd_MenuUp(object) osd_MenuUp( VLC_OBJECT(object) ) 00364 #define osd_MenuDown(object) osd_MenuDown( VLC_OBJECT(object) ) 00365 00366 /** 00367 * Display the audio volume bitmap. 00368 * 00369 * Display the correct audio volume bitmap that corresponds to the 00370 * current Audio Volume setting. 00371 */ 00372 VLC_API void osd_Volume( vlc_object_t * ); 00373 00374 #define osd_Volume(object) osd_Volume( VLC_OBJECT(object) ) 00375 00376 /** 00377 * Retrieve a non modifyable pointer to the OSD Menu state 00378 * 00379 */ 00380 VLC_USED 00381 static inline const osd_menu_state_t *osd_GetMenuState( osd_menu_t *p_osd ) 00382 { 00383 return( p_osd->p_state ); 00384 } 00385 00386 /** 00387 * Get the last key press received by the OSD Menu 00388 * 00389 * Returns 0 when no key has been pressed or the value of the key pressed. 00390 */ 00391 VLC_USED 00392 static inline bool osd_GetKeyPressed( osd_menu_t *p_osd ) 00393 { 00394 return( p_osd->p_state->b_update ); 00395 } 00396 00397 /** 00398 * Set the key pressed to a value. 00399 * 00400 * Assign a new key value to the last key pressed on the OSD Menu. 00401 */ 00402 static inline void osd_SetKeyPressed( vlc_object_t *p_this, int i_value ) 00403 { 00404 vlc_value_t val; 00405 00406 val.i_int = i_value; 00407 var_Set( p_this, "key-pressed", val ); 00408 } 00409 00410 /** 00411 * Update the OSD Menu visibility flag. 00412 * 00413 * true means OSD Menu should be shown. false means OSD Menu 00414 * should not be shown. 00415 */ 00416 static inline void osd_SetMenuVisible( osd_menu_t *p_osd, bool b_value ) 00417 { 00418 vlc_value_t val; 00419 00420 val.b_bool = p_osd->p_state->b_menu_visible = b_value; 00421 var_Set( p_osd, "osd-menu-visible", val ); 00422 } 00423 00424 /** 00425 * Update the OSD Menu update flag 00426 * 00427 * If the OSD Menu should be updated then set the update flag to 00428 * true, else to false. 00429 */ 00430 static inline void osd_SetMenuUpdate( osd_menu_t *p_osd, bool b_value ) 00431 { 00432 vlc_value_t val; 00433 00434 val.b_bool = p_osd->p_state->b_update = b_value; 00435 var_Set( p_osd, "osd-menu-update", val ); 00436 } 00437 00438 /** 00439 * Textual feedback 00440 * 00441 * Functions that provide the textual feedback on the OSD. They are shown 00442 * on hotkey commands. The feedback is also part of the osd_button_t 00443 * object. The types are declared in the include file include/vlc_osd.h 00444 * @see vlc_osd.h 00445 */ 00446 VLC_API int osd_ShowTextRelative( spu_t *, int, const char *, const text_style_t *, int, int, int, mtime_t ); 00447 VLC_API int osd_ShowTextAbsolute( spu_t *, int, const char *, const text_style_t *, int, int, int, mtime_t, mtime_t ); 00448 VLC_API void osd_Message( spu_t *, int, char *, ... ) VLC_FORMAT( 3, 4 ); 00449 00450 /** @} */ 00451 00452 # ifdef __cplusplus 00453 } 00454 # endif 00455 00456 #endif /* _VLC_OSD_H */
1.7.1