msn.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * msn.c : msn title plugin
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  * $Id: f177f1d0fd8e97e65aa9052db8744c3f381b5ebf $
  6.  *
  7.  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_interface.h>
  32. #include <vlc_meta.h>
  33. #include <vlc_playlist.h>
  34. #include <vlc_strings.h>
  35. /*****************************************************************************
  36.  * intf_sys_t: description and status of log interface
  37.  *****************************************************************************/
  38. struct intf_sys_t
  39. {
  40.     char *psz_format;
  41. };
  42. /*****************************************************************************
  43.  * Local prototypes
  44.  *****************************************************************************/
  45. static int  Open    ( vlc_object_t * );
  46. static void Close   ( vlc_object_t * );
  47. static int ItemChange( vlc_object_t *, const char *,
  48.                        vlc_value_t, vlc_value_t, void * );
  49. static int SendToMSN( const char * psz_msg );
  50. #define MSN_MAX_LENGTH 256
  51. /*****************************************************************************
  52.  * Module descriptor
  53.  *****************************************************************************
  54.  * This module should be used on windows with MSN (i think that you need to
  55.  * have MSN 7 or newer) to "advertise" what you are playing in VLC.
  56.  * You need to enable the "What I'm Listening To" option in MSN.
  57.  *****************************************************************************/
  58. #define FORMAT_DEFAULT "{0} - {1}"
  59. #define FORMAT_TEXT N_("Title format string")
  60. #define FORMAT_LONGTEXT N_("Format of the string to send to MSN " 
  61. "{0} Artist, {1} Title, {2} Album. Defaults to "Artist - Title" ({0} - {1}).")
  62. vlc_module_begin ()
  63.     set_category( CAT_INTERFACE )
  64.     set_subcategory( SUBCAT_INTERFACE_CONTROL )
  65.     set_shortname( "MSN" )
  66.     set_description( N_("MSN Now-Playing") )
  67.     add_string( "msn-format", FORMAT_DEFAULT, NULL,
  68.                 FORMAT_TEXT, FORMAT_LONGTEXT, false )
  69.     set_capability( "interface", 0 )
  70.     set_callbacks( Open, Close )
  71. vlc_module_end ()
  72. /*****************************************************************************
  73.  * Open: initialize and create stuff
  74.  *****************************************************************************/
  75. static int Open( vlc_object_t *p_this )
  76. {
  77.     intf_thread_t *p_intf = (intf_thread_t *)p_this;
  78.     playlist_t *p_playlist;
  79.     p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
  80.     if( !p_intf->p_sys )
  81.         return VLC_ENOMEM;
  82.     p_intf->p_sys->psz_format = config_GetPsz( p_intf, "msn-format" );
  83.     if( !p_intf->p_sys->psz_format )
  84.     {
  85.         msg_Dbg( p_intf, "no format provided" );
  86.         p_intf->p_sys->psz_format = strdup( FORMAT_DEFAULT );
  87.     }
  88.     msg_Dbg( p_intf, "using format: %s", p_intf->p_sys->psz_format );
  89.     p_playlist = pl_Hold( p_intf );
  90.     var_AddCallback( p_playlist, "item-change", ItemChange, p_intf );
  91.     var_AddCallback( p_playlist, "item-current", ItemChange, p_intf );
  92.     pl_Release( p_intf );
  93.     return VLC_SUCCESS;
  94. }
  95. /*****************************************************************************
  96.  * Close: destroy interface stuff
  97.  *****************************************************************************/
  98. static void Close( vlc_object_t *p_this )
  99. {
  100.     intf_thread_t *p_intf = (intf_thread_t *)p_this;
  101.     playlist_t *p_playlist = pl_Hold( p_this );
  102.     /* clear the MSN stuff ... else it looks like we're still playing
  103.      * something although VLC (or the MSN plugin) is closed */
  104.     SendToMSN( "\0Music\01\0\0\0\0\0\0\0" );
  105.     var_DelCallback( p_playlist, "item-change", ItemChange, p_intf );
  106.     var_DelCallback( p_playlist, "item-current", ItemChange, p_intf );
  107.     pl_Release( p_this );
  108.     /* Destroy structure */
  109.     free( p_intf->p_sys->psz_format );
  110.     free( p_intf->p_sys );
  111. }
  112. /*****************************************************************************
  113.  * ItemChange: Playlist item change callback
  114.  *****************************************************************************/
  115. static int ItemChange( vlc_object_t *p_this, const char *psz_var,
  116.                        vlc_value_t oldval, vlc_value_t newval, void *param )
  117. {
  118.     (void)psz_var;    (void)oldval;    (void)newval;
  119.     intf_thread_t *p_intf = (intf_thread_t *)param;
  120.     char psz_tmp[MSN_MAX_LENGTH];
  121.     char *psz_title = NULL;
  122.     char *psz_artist = NULL;
  123.     char *psz_album = NULL;
  124.     char *psz_buf = NULL;
  125.     input_thread_t *p_input =  playlist_CurrentInput( (playlist_t *) p_this );
  126.     if( !p_input ) return VLC_SUCCESS;
  127.     if( p_input->b_dead || !input_GetItem(p_input)->psz_name )
  128.     {
  129.         /* Not playing anything ... */
  130.         SendToMSN( "\0Music\01\0\0\0\0\0\0\0" );
  131.         vlc_object_release( p_input );
  132.         return VLC_SUCCESS;
  133.     }
  134.     /* Playing something ... */
  135.     psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
  136.     psz_album = input_item_GetAlbum( input_GetItem( p_input ) );
  137.     psz_title = input_item_GetTitleFbName( input_GetItem( p_input ) );
  138.     if( !psz_artist ) psz_artist = strdup( "" );
  139.     if( !psz_album ) psz_album = strdup( "" );
  140.     psz_buf = str_format_meta( p_this, p_intf->p_sys->psz_format );
  141.     snprintf( psz_tmp,
  142.               MSN_MAX_LENGTH,
  143.               "\0Music\01\0%s\0%s\0%s\0%s\0\0\0",
  144.               psz_buf,
  145.               psz_artist,
  146.               psz_title,
  147.               psz_album );
  148.     free( psz_buf );
  149.     free( psz_title );
  150.     free( psz_artist );
  151.     free( psz_album );
  152.     SendToMSN( (const char*)psz_tmp );
  153.     vlc_object_release( p_input );
  154.     return VLC_SUCCESS;
  155. }
  156. /*****************************************************************************
  157.  * SendToMSN
  158.  *****************************************************************************/
  159. static int SendToMSN( const char *psz_msg )
  160. {
  161.     COPYDATASTRUCT msndata;
  162.     HWND msnui = NULL;
  163.     wchar_t buffer[MSN_MAX_LENGTH];
  164.     //mbstowcs( buffer, psz_msg, MSN_MAX_LENGTH );
  165.     int nLen = MultiByteToWideChar(CP_ACP, 0, psz_msg, -1, NULL, NULL);
  166.     MultiByteToWideChar(CP_ACP, 0, psz_msg, -1, &buffer, nLen);
  167.     msndata.dwData = 0x547;
  168.     msndata.lpData = &buffer;
  169.     msndata.cbData = (lstrlenW(buffer)*2)+2;
  170.     while( ( msnui = FindWindowEx( NULL, msnui, "MsnMsgrUIManager", NULL ) ) )
  171.     {
  172.         SendMessage(msnui, WM_COPYDATA, (WPARAM)NULL, (LPARAM)&msndata);
  173.     }
  174.     return VLC_SUCCESS;
  175. }