vlcpeer.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:7k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlcpeer.cpp: scriptable peer descriptor
  3.  *****************************************************************************
  4.  * Copyright (C) 2002 VideoLAN
  5.  * $Id: vlcpeer.cpp 8839 2004-09-28 13:55:00Z zorglub $
  6.  *
  7.  * Authors: Samuel Hocevar <sam@zoy.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include "config.h"
  27. #include <vlc/vlc.h>
  28. #ifdef DEBUG
  29. /* We do not want to use nsDebug.h */
  30. #   undef DEBUG
  31. #endif
  32. #ifdef HAVE_MOZILLA_CONFIG_H
  33. #   include <mozilla-config.h>
  34. #endif
  35. #include <nsISupports.h>
  36. #include <nsMemory.h>
  37. #include <npapi.h>
  38. #if !defined(XP_MACOSX) && !defined(XP_UNIX) && !defined(XP_WIN)
  39. #define XP_UNIX 1
  40. #elif defined(XP_MACOSX)
  41. #undef XP_UNIX
  42. #endif
  43. #include "vlcpeer.h"
  44. #include "vlcplugin.h"
  45. NS_IMPL_ISUPPORTS2( VlcPeer, VlcIntf, nsIClassInfo )
  46. /*****************************************************************************
  47.  * Scriptable peer constructor and destructor
  48.  *****************************************************************************/
  49. VlcPeer::VlcPeer()
  50. {
  51.     NS_INIT_ISUPPORTS();
  52. }
  53. VlcPeer::VlcPeer( VlcPlugin * plugin )
  54. {
  55.     NS_INIT_ISUPPORTS();
  56.     p_plugin = plugin;
  57. }
  58. VlcPeer::~VlcPeer()
  59. {
  60.     ;
  61. }
  62. /*****************************************************************************
  63.  * Scriptable peer methods
  64.  *****************************************************************************/
  65. void VlcPeer::Disable()
  66. {
  67.     p_plugin = NULL;
  68. }
  69. /*****************************************************************************
  70.  * Scriptable peer plugin methods
  71.  *****************************************************************************/
  72. NS_IMETHODIMP VlcPeer::Play()
  73. {
  74.     if( p_plugin )
  75.     {
  76.         if( !p_plugin->b_stream && p_plugin->psz_target )
  77.         {
  78.             VLC_AddTarget( p_plugin->i_vlc, p_plugin->psz_target, 0, 0,
  79.                            PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
  80.             p_plugin->b_stream = 1;
  81.         }
  82.         VLC_Play( p_plugin->i_vlc );
  83.     }
  84.     return NS_OK;
  85. }
  86. NS_IMETHODIMP VlcPeer::Pause()
  87. {
  88.     if( p_plugin )
  89.     {
  90.         VLC_Pause( p_plugin->i_vlc );
  91.     }
  92.     return NS_OK;
  93. }
  94. NS_IMETHODIMP VlcPeer::Stop()
  95. {
  96.     if( p_plugin )
  97.     {
  98.         VLC_Stop( p_plugin->i_vlc );
  99.         p_plugin->b_stream = 0;
  100.     }
  101.     return NS_OK;
  102. }
  103. NS_IMETHODIMP VlcPeer::Fullscreen()
  104. {
  105.     if( p_plugin )
  106.     {
  107. #ifdef XP_MACOSX
  108. #else
  109.         VLC_FullScreen( p_plugin->i_vlc );
  110. #endif
  111.     }
  112.     return NS_OK;
  113. }
  114. /* Set/Get vlc variables */
  115. NS_IMETHODIMP VlcPeer::Set_int_variable(const char *psz_var, PRInt64 value )
  116. {
  117.     vlc_value_t val;
  118.     val.i_int = value;
  119.     if( p_plugin )
  120.     {
  121.         VLC_VariableSet( p_plugin->i_vlc, psz_var, val );
  122.     }
  123.     return NS_OK;
  124. }
  125. NS_IMETHODIMP VlcPeer::Set_str_variable(const char *psz_var, const char *value )
  126. {
  127.     vlc_value_t val;
  128.     val.psz_string = strdup( value );
  129.     if( p_plugin )
  130.     {
  131.         VLC_VariableSet( p_plugin->i_vlc, psz_var, val );
  132.     }
  133.     return NS_OK;
  134. }
  135. NS_IMETHODIMP VlcPeer::Set_bool_variable(const char *psz_var, PRBool value )
  136. {
  137.     vlc_value_t val;
  138.     val.b_bool = value >= 1 ? VLC_TRUE : VLC_FALSE;
  139.     if( p_plugin )
  140.     {
  141.         VLC_VariableSet( p_plugin->i_vlc, psz_var, val );
  142.     }
  143.     return NS_OK;
  144. }
  145. NS_IMETHODIMP VlcPeer::Get_int_variable( const char *psz_var, PRInt64 *result )
  146. {
  147.     vlc_value_t val;
  148.     if( p_plugin )
  149.     {
  150.         fprintf(stderr, "Choppage de %sn", psz_var );
  151.         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
  152.         fprintf(stderr, "Valeur %in", val.i_int );
  153.         *result = (PRInt64)val.i_int;
  154.     }
  155.     return NS_OK;
  156. }
  157. NS_IMETHODIMP VlcPeer::Get_bool_variable(  const char *psz_var,PRBool *result )
  158. {
  159.     vlc_value_t val;
  160.     if( p_plugin )
  161.     {
  162.         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
  163.         *result = (PRBool)val.b_bool;
  164.     }
  165.     return NS_OK;
  166. }
  167. NS_IMETHODIMP VlcPeer::Get_str_variable( const char *psz_var, char **result )
  168. {
  169.     vlc_value_t val;
  170.     if( p_plugin )
  171.     {
  172.         fprintf(stderr, "Choppage de %sn", psz_var );
  173.         VLC_VariableGet( p_plugin->i_vlc, psz_var, &val );
  174.         if( val.psz_string )
  175.         {
  176.             *result = strdup( val.psz_string );
  177.         }
  178.         else
  179.         {
  180.             *result = strdup( "" );
  181.         }
  182.     }
  183.     return NS_OK;
  184. }
  185. /* Playlist control */
  186. NS_IMETHODIMP VlcPeer::Clear_playlist()
  187. {
  188.     if( p_plugin )
  189.     {
  190.         VLC_PlaylistClear( p_plugin->i_vlc );
  191.     }
  192.     return NS_OK;
  193. }
  194. NS_IMETHODIMP VlcPeer::Add_item( const char *psz_item )
  195. {
  196.      if( p_plugin )
  197.      {
  198.           VLC_AddTarget( p_plugin->i_vlc, psz_item, NULL, 0,
  199.                          PLAYLIST_APPEND, PLAYLIST_END);
  200.      }
  201.      return NS_OK;
  202. }
  203. NS_IMETHODIMP VlcPeer::Isplaying( PRBool *b_playing )
  204. {
  205.     if( p_plugin->i_vlc )
  206.     {
  207.         *b_playing = VLC_IsPlaying( p_plugin->i_vlc );
  208.     }
  209.     return NS_OK;
  210. }
  211. NS_IMETHODIMP VlcPeer::Get_position( PRInt64 *i_position )
  212. {
  213.     if( p_plugin->i_vlc )
  214.     {
  215.         *i_position = (PRInt64)VLC_PositionGet( p_plugin->i_vlc );
  216.     }
  217.     return NS_OK;
  218. }
  219. NS_IMETHODIMP VlcPeer::Get_time( PRInt64 *i_time )
  220. {
  221.     if( p_plugin->i_vlc )
  222.     {
  223.         *i_time = VLC_TimeGet( p_plugin->i_vlc );
  224.     }
  225.     return NS_OK;
  226. }
  227. NS_IMETHODIMP VlcPeer::Get_length( PRInt64 *i_length )
  228. {
  229.     if( p_plugin->i_vlc )
  230.     {
  231.         *i_length = VLC_LengthGet( p_plugin->i_vlc );
  232.     }
  233.     return NS_OK;
  234. }
  235. NS_IMETHODIMP VlcPeer::Seek( PRInt64 i_secs, PRInt64 b_relative )
  236. {
  237.     if( p_plugin->i_vlc )
  238.     {
  239.         VLC_TimeSet( p_plugin->i_vlc, i_secs, b_relative );
  240.     }
  241.     return NS_OK;
  242. }
  243. NS_IMETHODIMP VlcPeer::Next()
  244. {
  245.     if( p_plugin->i_vlc )
  246.     {
  247.         VLC_PlaylistNext( p_plugin->i_vlc);
  248.     }
  249.     return NS_OK;
  250. }
  251. NS_IMETHODIMP VlcPeer::Previous()
  252. {
  253.     if( p_plugin->i_vlc )
  254.     {
  255.         VLC_PlaylistPrev( p_plugin->i_vlc );
  256.     }
  257.     return NS_OK;
  258. }
  259. NS_IMETHODIMP VlcPeer::Set_volume( PRInt64 i_volume )
  260. {
  261.     if( p_plugin->i_vlc )
  262.     {
  263.         VLC_VolumeSet( p_plugin->i_vlc, i_volume );
  264.     }
  265.     return NS_OK;
  266. }
  267. NS_IMETHODIMP VlcPeer::Get_volume( PRInt64 *i_volume )
  268. {
  269.     if( p_plugin->i_vlc )
  270.     {
  271.         *i_volume = VLC_VolumeGet( p_plugin->i_vlc );
  272.     }
  273.     return NS_OK;
  274. }
  275. NS_IMETHODIMP VlcPeer::Mute()
  276. {
  277.     if( p_plugin->i_vlc )
  278.     {
  279.         VLC_VolumeMute( p_plugin->i_vlc );
  280.     }
  281.     return NS_OK;
  282. }