⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simple.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * simple.c - The OSD Menu simple parser code. ***************************************************************************** * Copyright (C) 2005-2008 M2X * $Id$ * * Authors: Jean-Paul Saman * * 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_vout.h>#include <vlc_config.h>#include <vlc_keys.h>#include <vlc_image.h>#include <vlc_osd.h>#include <vlc_charset.h>#include <limits.h>#include "osd_menu.h"int osd_parser_simpleOpen( vlc_object_t *p_this );/***************************************************************************** * Simple parser open function *****************************************************************************/int osd_parser_simpleOpen( vlc_object_t *p_this ){    osd_menu_t     *p_menu = (osd_menu_t *) p_this;    osd_button_t   *p_current = NULL; /* button currently processed */    osd_button_t   *p_prev = NULL;    /* previous processed button */    FILE       *fd = NULL;    int        result = 0;    if( !p_menu ) return VLC_ENOOBJ;    msg_Dbg( p_this, "opening osdmenu definition file %s", p_menu->psz_file );    fd = utf8_fopen( p_menu->psz_file, "r" );    if( !fd )    {        msg_Err( p_this, "failed to open osdmenu definition file %s",                p_menu->psz_file );        return VLC_EGENERIC;    }    /* Read first line */    if( !feof( fd ) )    {        char action[25] = "";        char cmd[25] = "";        char path[PATH_MAX] = "";        char *psz_path = NULL;        size_t i_len = 0;        long pos = 0;        result = fscanf(fd, "%24s %255s", &action[0], &path[0] );        /* override images path ? */        psz_path = config_GetPsz( p_this, "osdmenu-file-path" );        if( psz_path )        {            /* psz_path is not null and therefor &path[0] cannot be NULL             * it might be null terminated.             */            strncpy( &path[0], psz_path, PATH_MAX );            free( psz_path );            psz_path = NULL;        }        /* NULL terminate before asking the length of path[] */        path[PATH_MAX-1] = '\0';        i_len = strlen(&path[0]);        if( i_len == PATH_MAX )            i_len--; /* truncate to prevent buffer overflow */#if defined(WIN32) || defined(UNDER_CE)        if( (i_len > 0) && path[i_len] != '\\' )            path[i_len] = '\\';#else        if( (i_len > 0) && path[i_len] != '/' )            path[i_len] = '/';#endif        path[i_len+1] = '\0';        if( result == 0 || result == EOF )            goto error;        msg_Dbg( p_this, "osdmenu dir %s", &path[0] );        if( i_len == 0 )            p_menu = osd_MenuNew( p_menu, NULL, 0, 0 );        else            p_menu = osd_MenuNew( p_menu, &path[0], 0, 0 );        /* Peek for 'style' argument */        pos = ftell( fd );        if( pos < 0 )                goto error;        result = fscanf(fd, "%24s %24s", &cmd[0], &action[0] );        if( result == 0 || result == EOF )            goto error;        msg_Dbg( p_this, "osdmenu %s %s", &cmd[0], &action[0] );        if( strncmp( &cmd[0], "style", 5 ) == 0 )        {            if( strncmp( &action[0], "default", 7) == 0 )            {                p_menu->i_style = OSD_MENU_STYLE_SIMPLE;            }            else if( strncmp( &action[0], "concat", 6) == 0 )            {                p_menu->i_style = OSD_MENU_STYLE_CONCAT;            }        }        else        {            result = fseek( fd, pos, SEEK_SET );            if( result < 0 )                goto error;        }    }    if( !p_menu )        goto error;    /* read successive lines */    while( !feof( fd ) )    {        osd_state_t   *p_state_current = NULL; /* button state currently processed */        osd_state_t   *p_state_prev = NULL;    /* previous state processed button */        char cmd[25] = "";        char action[25] = "";        char state[25]  = "";        char file[256]  = "";        char path[PATH_MAX]  = "";        int  i_x = 0;        int  i_y = 0;        result = fscanf( fd, "%24s %24s (%d,%d)", &cmd[0], &action[0], &i_x, &i_y );        if( result == 0 )            goto error;        if( strncmp( &cmd[0], "action", 6 ) != 0 )            break;        msg_Dbg( p_this, " + %s hotkey=%s (%d,%d)", &cmd[0], &action[0], i_x, i_y );        p_prev = p_current;        p_current = osd_ButtonNew( &action[0], i_x, i_y );        if( !p_current )            goto error;        if( p_prev )            p_prev->p_next = p_current;        else            p_menu->p_button = p_current;        p_current->p_prev = p_prev;        /* parse all states */        while( !feof( fd ) )        {            char type[25] = "";            result = fscanf( fd, "\t%24s", &state[0] );            if( result == 0 )                goto error;            /* FIXME: We only parse one level deep now */            if( strncmp( &state[0], "action", 6 ) == 0 )            {                osd_button_t   *p_up = NULL;                result = fscanf( fd, "%24s (%d,%d)", &action[0], &i_x, &i_y );                if( result == 0 )                    goto error;                /* create new button */                p_up = osd_ButtonNew( &action[0], i_x, i_y );                if( !p_up )                    goto error;                /* Link to list */                p_up->p_down = p_current;                p_current->p_up = p_up;                msg_Dbg( p_this, " + (menu up) hotkey=%s (%d,%d)", &action[0], i_x, i_y );                /* Parse type state */                result = fscanf( fd, "\t%24s %24s", &cmd[0], &type[0] );                if( result == 0 )                    goto error;                if( strncmp( &cmd[0], "type", 4 ) == 0 )                {                    if( strncmp( &type[0], "volume", 6 ) == 0 )                    {                        p_menu->p_state->p_volume = p_up;                        msg_Dbg( p_this, " + type=%s", &type[0] );                    }                }                /* Parse range state */                result = fscanf( fd, "\t%24s", &state[0] );                if( result == 0 )                    goto error;                /* Parse the range state */                if( strncmp( &state[0], "range", 5 ) == 0 )                {                    osd_state_t   *p_range_current = NULL; /* range state currently processed */                    osd_state_t   *p_range_prev = NULL;    /* previous state processed range */                    int i_index = 0;                    p_up->b_range = true;                    result = fscanf( fd, "\t%24s", &action[0] );                    if( result == 0 )                        goto error;                    result = fscanf( fd, "\t%d", &i_index );                    if( result == 0 )                        goto error;                    msg_Dbg( p_this, " + (menu up) hotkey down %s, file=%s%s",                             &action[0], p_menu->psz_path, &file[0] );                    free( p_up->psz_action_down );                    p_up->psz_action_down = strdup( &action[0] );                    /* Parse range contstruction :                     * range <hotkey>                     *      <state1> <file1>                     *                     *      <stateN> <fileN>                     * end                     */                    while( !feof( fd ) )                    {                        result = fscanf( fd, "\t%255s", &file[0] );                        if( result == 0 )                            goto error;                        if( strncmp( &file[0], "end", 3 ) == 0 )                            break;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -