📄 osd.c
字号:
/***************************************************************************** * osd.c - The OSD Menu core code. ***************************************************************************** * Copyright (C) 2005-2008 M2X * $Id$ * * Authors: Jean-Paul Saman <jpsaman #_at_# m2x dot nl> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <vlc_keys.h>#include <vlc_osd.h>#include <vlc_image.h>#include "libvlc.h"#undef OSD_MENU_DEBUG/***************************************************************************** * Local prototypes *****************************************************************************/static void osd_UpdateState( osd_menu_state_t *, int, int, int, int, picture_t * );static inline osd_state_t *osd_VolumeStateChange( osd_state_t *, int );static int osd_VolumeStep( vlc_object_t *, int, int );static bool osd_isVisible( osd_menu_t *p_osd );static bool osd_ParserLoad( osd_menu_t *, const char * );static void osd_ParserUnload( osd_menu_t * );static bool osd_isVisible( osd_menu_t *p_osd ){ vlc_value_t val; var_Get( p_osd, "osd-menu-visible", &val ); return val.b_bool;}/***************************************************************************** * Wrappers for loading and unloading osd parser modules. *****************************************************************************/static bool osd_ParserLoad( osd_menu_t *p_menu, const char *psz_file ){ /* Stuff needed for Parser */ p_menu->psz_file = strdup( psz_file ); p_menu->p_image = image_HandlerCreate( p_menu ); if( !p_menu->p_image || !p_menu->psz_file ) { msg_Err( p_menu, "unable to load images, aborting .." ); return true; } else { char *psz_type; char *psz_ext = strrchr( p_menu->psz_file, '.' ); if( psz_ext && !strcmp( psz_ext, ".cfg") ) psz_type = (char*)"import-osd"; else psz_type = (char*)"import-osd-xml"; p_menu->p_parser = module_Need( p_menu, "osd parser", psz_type, true ); if( !p_menu->p_parser ) { return false; } } return true;}static void osd_ParserUnload( osd_menu_t *p_menu ){ if( p_menu->p_image ) image_HandlerDelete( p_menu->p_image ); if( p_menu->p_parser ) module_Unneed( p_menu, p_menu->p_parser ); free( p_menu->psz_file );}/** * Change state on an osd_button_t. * * This function selects the specified state and returns a pointer vlc_custom_createto it. The * following states are currently supported: * \see OSD_BUTTON_UNSELECT * \see OSD_BUTTON_SELECT * \see OSD_BUTTON_PRESSED */static osd_state_t *osd_StateChange( osd_button_t *p_button, const int i_state ){ osd_state_t *p_current = p_button->p_states; osd_state_t *p_temp = NULL; int i = 0; for( i=0; p_current != NULL; i++ ) { if( p_current->i_state == i_state ) { p_button->i_x = p_current->i_x; p_button->i_y = p_current->i_y; p_button->i_width = p_current->i_width; p_button->i_height = p_current->i_height; return p_current; } p_temp = p_current->p_next; p_current = p_temp; } return p_button->p_states;}/***************************************************************************** * OSD menu Funtions *****************************************************************************/osd_menu_t *__osd_MenuCreate( vlc_object_t *p_this, const char *psz_file ){ osd_menu_t *p_osd = NULL; vlc_value_t lockval; int i_volume = 0; int i_steps = 0; /* to be sure to avoid multiple creation */ var_Create( p_this->p_libvlc, "osd_mutex", VLC_VAR_MUTEX ); var_Get( p_this->p_libvlc, "osd_mutex", &lockval ); vlc_mutex_lock( lockval.p_address ); p_osd = vlc_object_find( p_this, VLC_OBJECT_OSDMENU, FIND_ANYWHERE ); if( p_osd == NULL ) { static const char osdmenu_name[] = "osd menu"; vlc_value_t val; p_osd = vlc_custom_create( p_this, sizeof( *p_osd ), VLC_OBJECT_OSDMENU, osdmenu_name ); if( !p_osd ) return NULL; p_osd->p_parser = NULL; vlc_object_attach( p_osd, p_this->p_libvlc ); /* Parse configuration file */ if ( !osd_ParserLoad( p_osd, psz_file ) ) goto error; if( !p_osd->p_state ) goto error; /* Setup default button (first button) */ p_osd->p_state->p_visible = p_osd->p_button; p_osd->p_state->p_visible->p_current_state = osd_StateChange( p_osd->p_state->p_visible, OSD_BUTTON_SELECT ); p_osd->i_width = p_osd->p_state->p_visible->p_current_state->p_pic->p[Y_PLANE].i_visible_pitch; p_osd->i_height = p_osd->p_state->p_visible->p_current_state->p_pic->p[Y_PLANE].i_visible_lines; if( p_osd->p_state->p_volume ) { /* Update the volume state images to match the current volume */ i_volume = config_GetInt( p_this, "volume" ); i_steps = osd_VolumeStep( p_this, i_volume, p_osd->p_state->p_volume->i_ranges ); p_osd->p_state->p_volume->p_current_state = osd_VolumeStateChange( p_osd->p_state->p_volume->p_states, i_steps ); } /* Initialize OSD state */ osd_UpdateState( p_osd->p_state, p_osd->i_x, p_osd->i_y, p_osd->i_width, p_osd->i_height, NULL ); /* Signal when an update of OSD menu is needed */ var_Create( p_osd, "osd-menu-update", VLC_VAR_BOOL ); var_Create( p_osd, "osd-menu-visible", VLC_VAR_BOOL ); val.b_bool = false; var_Set( p_osd, "osd-menu-update", val ); var_Set( p_osd, "osd-menu-visible", val ); } vlc_mutex_unlock( lockval.p_address ); return p_osd;error: vlc_mutex_unlock( lockval.p_address ); __osd_MenuDelete( p_this, p_osd ); return NULL;}void __osd_MenuDelete( vlc_object_t *p_this, osd_menu_t *p_osd ){ vlc_value_t lockval; if( !p_osd || !p_this ) return; var_Get( p_this->p_libvlc, "osd_mutex", &lockval ); vlc_mutex_lock( lockval.p_address ); if( vlc_internals( VLC_OBJECT(p_osd) )->i_refcount == 1 ) { var_Destroy( p_osd, "osd-menu-visible" ); var_Destroy( p_osd, "osd-menu-update" ); osd_ParserUnload( p_osd ); } vlc_object_release( p_osd ); if( vlc_internals( VLC_OBJECT(p_osd) )->i_refcount > 0 ) { vlc_mutex_unlock( lockval.p_address ); return; } p_osd = NULL; vlc_mutex_unlock( lockval.p_address );}/* The volume can be modified in another interface while the OSD Menu * has not been instantiated yet. This routines updates the "volume OSD menu item" * to reflect the current state of the GUI. */static inline osd_state_t *osd_VolumeStateChange( osd_state_t *p_current, int i_steps ){ osd_state_t *p_temp = NULL; int i; if( i_steps < 0 ) i_steps = 0; for( i=0; (i < i_steps) && (p_current != NULL); i++ ) { p_temp = p_current->p_next; if( !p_temp ) return p_current; p_current = p_temp; } return (!p_temp) ? p_current : p_temp;}/* Update the state of the OSD Menu */static void osd_UpdateState( osd_menu_state_t *p_state, int i_x, int i_y, int i_width, int i_height, picture_t *p_pic ){ p_state->i_x = i_x; p_state->i_y = i_y; p_state->i_width = i_width; p_state->i_height = i_height; p_state->p_pic = p_pic;}void __osd_MenuShow( vlc_object_t *p_this ){ osd_menu_t *p_osd = NULL; osd_button_t *p_button = NULL; vlc_value_t lockval; p_osd = vlc_object_find( p_this, VLC_OBJECT_OSDMENU, FIND_ANYWHERE ); if( p_osd == NULL ) { msg_Err( p_this, "osd_MenuNext failed" ); return; } var_Get( p_this->p_libvlc, "osd_mutex", &lockval ); vlc_mutex_lock( lockval.p_address );#if defined(OSD_MENU_DEBUG) msg_Dbg( p_osd, "menu on" );#endif p_button = p_osd->p_state->p_visible; if( p_button ) { if( !p_button->b_range ) p_button->p_current_state = osd_StateChange( p_button, OSD_BUTTON_UNSELECT ); p_osd->p_state->p_visible = p_osd->p_button; if( !p_osd->p_state->p_visible->b_range ) p_osd->p_state->p_visible->p_current_state = osd_StateChange( p_osd->p_state->p_visible, OSD_BUTTON_SELECT ); osd_UpdateState( p_osd->p_state, p_osd->p_state->p_visible->i_x, p_osd->p_state->p_visible->i_y, p_osd->p_state->p_visible->p_current_state->i_width, p_osd->p_state->p_visible->p_current_state->i_height, p_osd->p_state->p_visible->p_current_state->p_pic ); osd_SetMenuUpdate( p_osd, true ); } osd_SetMenuVisible( p_osd, true ); vlc_object_release( (vlc_object_t*) p_osd ); vlc_mutex_unlock( lockval.p_address );}void __osd_MenuHide( vlc_object_t *p_this ){ osd_menu_t *p_osd = NULL; vlc_value_t lockval; p_osd = vlc_object_find( p_this, VLC_OBJECT_OSDMENU, FIND_ANYWHERE ); if( p_osd == NULL ) { msg_Err( p_this, "osd_MenuNext failed" ); return; } var_Get( p_this->p_libvlc, "osd_mutex", &lockval ); vlc_mutex_lock( lockval.p_address );#if defined(OSD_MENU_DEBUG) msg_Dbg( p_osd, "menu off" );#endif osd_UpdateState( p_osd->p_state, p_osd->p_state->i_x, p_osd->p_state->i_y, 0, 0, NULL ); osd_SetMenuUpdate( p_osd, true ); vlc_object_release( (vlc_object_t*) p_osd ); vlc_mutex_unlock( lockval.p_address );}void __osd_MenuActivate( vlc_object_t *p_this ){ osd_menu_t *p_osd = NULL; osd_button_t *p_button = NULL; vlc_value_t lockval; p_osd = vlc_object_find( p_this, VLC_OBJECT_OSDMENU, FIND_ANYWHERE ); if( p_osd == NULL ) { msg_Err( p_this, "osd_MenuNext failed" ); return; } if( osd_isVisible( p_osd ) == false ) { vlc_object_release( (vlc_object_t*) p_osd ); return; } var_Get( p_this->p_libvlc, "osd_mutex", &lockval ); vlc_mutex_lock( lockval.p_address );#if defined(OSD_MENU_DEBUG) msg_Dbg( p_osd, "select" );#endif p_button = p_osd->p_state->p_visible; /* * Is there a menu item above or below? If so, then select it. */ if( p_button && p_button->p_up ) { vlc_object_release( (vlc_object_t*) p_osd ); vlc_mutex_unlock( lockval.p_address ); __osd_MenuUp( p_this ); /* "menu select" means go to menu item above. */ return; } if( p_button && p_button->p_down ) { vlc_object_release( (vlc_object_t*) p_osd ); vlc_mutex_unlock( lockval.p_address ); __osd_MenuDown( p_this ); /* "menu select" means go to menu item below. */ return; } if( p_button && !p_button->b_range ) { p_button->p_current_state = osd_StateChange( p_button, OSD_BUTTON_PRESSED ); osd_UpdateState( p_osd->p_state, p_button->i_x, p_button->i_y, p_osd->p_state->p_visible->p_current_state->i_width, p_osd->p_state->p_visible->p_current_state->i_height, p_button->p_current_state->p_pic ); osd_SetMenuUpdate( p_osd, true ); osd_SetMenuVisible( p_osd, true ); osd_SetKeyPressed( VLC_OBJECT(p_osd->p_libvlc), config_GetInt( p_osd, p_button->psz_action ) );#if defined(OSD_MENU_DEBUG) msg_Dbg( p_osd, "select (%d, %s)", config_GetInt( p_osd, p_button->psz_action ), p_button->psz_action );#endif } vlc_object_release( (vlc_object_t*) p_osd ); vlc_mutex_unlock( lockval.p_address );}void __osd_MenuNext( vlc_object_t *p_this ){ osd_menu_t *p_osd = NULL; osd_button_t *p_button = NULL; vlc_value_t lockval; p_osd = vlc_object_find( p_this, VLC_OBJECT_OSDMENU, FIND_ANYWHERE ); if( p_osd == NULL ) { msg_Err( p_this, "osd_MenuNext failed" ); return; } if( osd_isVisible( p_osd ) == false ) { vlc_object_release( (vlc_object_t*) p_osd ); return; } var_Get( p_this->p_libvlc, "osd_mutex", &lockval );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -