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

📄 interpreter.cpp

📁 VLC Player Source Code
💻 CPP
📖 第 1 页 / 共 2 页
字号:
/***************************************************************************** * interpreter.cpp ***************************************************************************** * Copyright (C) 2003 the VideoLAN team * $Id$ * * Authors: Cyril Deguet     <asmax@via.ecp.fr> *          Olivier Teulière <ipkiss@via.ecp.fr> * * 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. *****************************************************************************/#include "interpreter.hpp"#include "expr_evaluator.hpp"#include "../commands/cmd_audio.hpp"#include "../commands/cmd_muxer.hpp"#include "../commands/cmd_playlist.hpp"#include "../commands/cmd_playtree.hpp"#include "../commands/cmd_dialogs.hpp"#include "../commands/cmd_dummy.hpp"#include "../commands/cmd_dvd.hpp"#include "../commands/cmd_layout.hpp"#include "../commands/cmd_quit.hpp"#include "../commands/cmd_minimize.hpp"#include "../commands/cmd_input.hpp"#include "../commands/cmd_fullscreen.hpp"#include "../commands/cmd_on_top.hpp"#include "../commands/cmd_show_window.hpp"#include "../commands/cmd_snapshot.hpp"#include "../src/theme.hpp"#include "../src/var_manager.hpp"#include "../src/vlcproc.hpp"Interpreter::Interpreter( intf_thread_t *pIntf ): SkinObject( pIntf ){    /// Create the generic commands#define REGISTER_CMD( name, cmd ) \    m_commandMap[name] = CmdGenericPtr( new cmd( getIntf() ) );    REGISTER_CMD( "none", CmdDummy )    REGISTER_CMD( "dialogs.changeSkin()", CmdDlgChangeSkin )    REGISTER_CMD( "dialogs.fileSimple()", CmdDlgFileSimple )    REGISTER_CMD( "dialogs.file()", CmdDlgFile )    REGISTER_CMD( "dialogs.directory()", CmdDlgDirectory )    REGISTER_CMD( "dialogs.disc()", CmdDlgDisc )    REGISTER_CMD( "dialogs.net()", CmdDlgNet )    REGISTER_CMD( "dialogs.playlist()", CmdDlgPlaylist )    REGISTER_CMD( "dialogs.messages()", CmdDlgMessages )    REGISTER_CMD( "dialogs.prefs()", CmdDlgPrefs )    REGISTER_CMD( "dialogs.fileInfo()", CmdDlgFileInfo )    REGISTER_CMD( "dialogs.streamingWizard()", CmdDlgStreamingWizard )    REGISTER_CMD( "dialogs.popup()", CmdDlgShowPopupMenu )    REGISTER_CMD( "dialogs.audioPopup()", CmdDlgShowAudioPopupMenu )    REGISTER_CMD( "dialogs.videoPopup()", CmdDlgShowVideoPopupMenu )    REGISTER_CMD( "dialogs.miscPopup()", CmdDlgShowMiscPopupMenu )    REGISTER_CMD( "dvd.nextTitle()", CmdDvdNextTitle )    REGISTER_CMD( "dvd.previousTitle()", CmdDvdPreviousTitle )    REGISTER_CMD( "dvd.nextChapter()", CmdDvdNextChapter )    REGISTER_CMD( "dvd.previousChapter()", CmdDvdPreviousChapter )    REGISTER_CMD( "dvd.rootMenu()", CmdDvdRootMenu )    REGISTER_CMD( "playlist.load()", CmdDlgPlaylistLoad )    REGISTER_CMD( "playlist.save()", CmdDlgPlaylistSave )    REGISTER_CMD( "playlist.add()", CmdDlgAdd )    REGISTER_CMD( "playlist.next()", CmdPlaylistNext )    REGISTER_CMD( "playlist.previous()", CmdPlaylistPrevious )    m_commandMap["playlist.setRandom(true)"] =        CmdGenericPtr( new CmdPlaylistRandom( getIntf(), true ) );    m_commandMap["playlist.setRandom(false)"] =        CmdGenericPtr( new CmdPlaylistRandom( getIntf(), false ) );    m_commandMap["playlist.setLoop(true)"] =        CmdGenericPtr( new CmdPlaylistLoop( getIntf(), true ) );    m_commandMap["playlist.setLoop(false)"] =        CmdGenericPtr( new CmdPlaylistLoop( getIntf(), false ) );    m_commandMap["playlist.setRepeat(true)"] =        CmdGenericPtr( new CmdPlaylistRepeat( getIntf(), true ) );    m_commandMap["playlist.setRepeat(false)"] =        CmdGenericPtr( new CmdPlaylistRepeat( getIntf(), false ) );    VarTree &rVarTree = VlcProc::instance( getIntf() )->getPlaytreeVar();    m_commandMap["playlist.del()"] =        CmdGenericPtr( new CmdPlaytreeDel( getIntf(), rVarTree ) );    m_commandMap["playtree.del()"] =        CmdGenericPtr( new CmdPlaytreeDel( getIntf(), rVarTree ) );    REGISTER_CMD( "playlist.sort()", CmdPlaytreeSort )    REGISTER_CMD( "playtree.sort()", CmdPlaytreeSort )    REGISTER_CMD( "vlc.fullscreen()", CmdFullscreen )    REGISTER_CMD( "vlc.play()", CmdPlay )    REGISTER_CMD( "vlc.pause()", CmdPause )    REGISTER_CMD( "vlc.stop()", CmdStop )    REGISTER_CMD( "vlc.faster()", CmdFaster )    REGISTER_CMD( "vlc.slower()", CmdSlower )    REGISTER_CMD( "vlc.mute()", CmdMute )    REGISTER_CMD( "vlc.volumeUp()", CmdVolumeUp )    REGISTER_CMD( "vlc.volumeDown()", CmdVolumeDown )    REGISTER_CMD( "vlc.minimize()", CmdMinimize )    REGISTER_CMD( "vlc.onTop()", CmdOnTop )    REGISTER_CMD( "vlc.snapshot()", CmdSnapshot )    REGISTER_CMD( "vlc.quit()", CmdQuit )    m_commandMap["equalizer.enable()"] =        CmdGenericPtr( new CmdSetEqualizer( getIntf(), true ) );    m_commandMap["equalizer.disable()"] =        CmdGenericPtr( new CmdSetEqualizer( getIntf(), false ) );    // Register the constant bool variables in the var manager    VarManager *pVarManager = VarManager::instance( getIntf() );    VarBool *pVarTrue = new VarBoolTrue( getIntf() );    pVarManager->registerVar( VariablePtr( pVarTrue ), "true" );    VarBool *pVarFalse = new VarBoolFalse( getIntf() );    pVarManager->registerVar( VariablePtr( pVarFalse ), "false" );}Interpreter *Interpreter::instance( intf_thread_t *pIntf ){    if( ! pIntf->p_sys->p_interpreter )    {        Interpreter *pInterpreter;        pInterpreter = new Interpreter( pIntf );        if( pInterpreter )        {            pIntf->p_sys->p_interpreter = pInterpreter;        }    }    return pIntf->p_sys->p_interpreter;}void Interpreter::destroy( intf_thread_t *pIntf ){    if( pIntf->p_sys->p_interpreter )    {        delete pIntf->p_sys->p_interpreter;        pIntf->p_sys->p_interpreter = NULL;    }}CmdGeneric *Interpreter::parseAction( const string &rAction, Theme *pTheme ){    // Try to find the command in the global command map    if( m_commandMap.find( rAction ) != m_commandMap.end() )    {        return m_commandMap[rAction].get();    }    CmdGeneric *pCommand = NULL;    if( rAction.find( ";" ) != string::npos )    {        // Several actions are defined...        list<CmdGeneric *> actionList;        string rightPart = rAction;        string::size_type pos = rightPart.find( ";" );        while( pos != string::npos )        {            string leftPart = rightPart.substr( 0, pos );            // Remove any whitespace at the end of the left part, and parse it            leftPart =                leftPart.substr( 0, leftPart.find_last_not_of( " \t" ) + 1 );            actionList.push_back( parseAction( leftPart, pTheme ) );            // Now remove any whitespace at the beginning of the right part,            // and go on checking for further actions in it...            rightPart = rightPart.substr( pos, rightPart.size() );            if ( rightPart.find_first_not_of( " \t;" ) == string::npos )            {                // The right part is completely buggy, it's time to leave the                // loop...                rightPart = "";                break;            }            rightPart =                rightPart.substr( rightPart.find_first_not_of( " \t;" ),                                  rightPart.size() );            pos = rightPart.find( ";" );        }        actionList.push_back( parseAction( rightPart, pTheme ) );        // The list is filled, we remove NULL pointers from it, just in case...        actionList.remove( NULL );        pCommand = new CmdMuxer( getIntf(), actionList );    }    else if( rAction.find( ".setLayout(" ) != string::npos )    {        int leftPos = rAction.find( ".setLayout(" );        string windowId = rAction.substr( 0, leftPos );        // 11 is the size of ".setLayout("        int rightPos = rAction.find( ")", windowId.size() + 11 );        string layoutId = rAction.substr( windowId.size() + 11,                                          rightPos - (windowId.size() + 11) );        TopWindow *pWin = pTheme->getWindowById( windowId );        GenericLayout *pLayout = pTheme->getLayoutById( layoutId );        if( !pWin )        {            msg_Err( getIntf(), "unknown window (%s)", windowId.c_str() );        }        else if( !pLayout )        {            msg_Err( getIntf(), "unknown layout (%s)", layoutId.c_str() );        }        // Check that the layout doesn't correspond to another window        else if( pWin != pLayout->getWindow() )        {            msg_Err( getIntf(), "layout %s is not associated to window %s",                     layoutId.c_str(), windowId.c_str() );        }        else        {            pCommand = new CmdLayout( getIntf(), *pWin, *pLayout );        }    }    else if( rAction.find( ".maximize()" ) != string::npos )    {        int leftPos = rAction.find( ".maximize()" );        string windowId = rAction.substr( 0, leftPos );        TopWindow *pWin = pTheme->getWindowById( windowId );        if( !pWin )        {            msg_Err( getIntf(), "unknown window (%s)", windowId.c_str() );        }        else        {            pCommand = new CmdMaximize( getIntf(),                                        pTheme->getWindowManager(),                                        *pWin );        }    }    else if( rAction.find( ".unmaximize()" ) != string::npos )    {        int leftPos = rAction.find( ".unmaximize()" );        string windowId = rAction.substr( 0, leftPos );        TopWindow *pWin = pTheme->getWindowById( windowId );        if( !pWin )        {            msg_Err( getIntf(), "unknown window (%s)", windowId.c_str() );        }        else        {            pCommand = new CmdUnmaximize( getIntf(),                                          pTheme->getWindowManager(),                                          *pWin );        }    }    else if( rAction.find( ".show()" ) != string::npos )    {        int leftPos = rAction.find( ".show()" );        string windowId = rAction.substr( 0, leftPos );        if( windowId == "playlist_window" &&            !config_GetInt( getIntf(), "skinned-playlist") )        {            list<CmdGeneric *> list;            list.push_back( new CmdDlgPlaylist( getIntf() ) );            TopWindow *pWin = pTheme->getWindowById( windowId );            if( pWin )                list.push_back( new CmdHideWindow( getIntf(),                                                   pTheme->getWindowManager(),                                                   *pWin ) );            pCommand = new CmdMuxer( getIntf(), list );        }

⌨️ 快捷键说明

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