]> git.sesse.net Git - vlc/blob - modules/misc/msn.c
c1f803eb7bab176c16779fa7eac788923f238b52
[vlc] / modules / misc / msn.c
1 /*****************************************************************************
2  * msn.c : msn title plugin
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28
29 #include <vlc/vlc.h>
30 #include <vlc/intf.h>
31 #include <vlc_meta.h>
32
33
34 /*****************************************************************************
35  * intf_sys_t: description and status of log interface
36  *****************************************************************************/
37 struct intf_sys_t
38 {
39     char *psz_format;
40 };
41
42 /*****************************************************************************
43  * Local prototypes
44  *****************************************************************************/
45 static int  Open    ( vlc_object_t * );
46 static void Close   ( vlc_object_t * );
47 static void Run     ( intf_thread_t * );
48
49 static int ItemChange( vlc_object_t *, const char *,
50                        vlc_value_t, vlc_value_t, void * );
51 static int SendToMSN( char * psz_msg );
52
53 #define MSN_MAX_LENGTH 256
54
55 /*****************************************************************************
56  * Module descriptor
57  *****************************************************************************
58  * This module should be used on windows with MSN (i think that you need to
59  * have MSN 7 or newer) to "advertise" what you are playing in VLC.
60  * You need to enable the "What I'm Listening To" option in MSN.
61  *****************************************************************************/
62 #define FORMAT_DEFAULT "{0} - {1}"
63 #define FORMAT_TEXT N_("MSN Title format string")
64 #define FORMAT_LONGTEXT N_("MSN Title format string. " \
65 "{0} artist, {1} title, {2} album")
66
67 vlc_module_begin();
68     set_category( CAT_INTERFACE );
69     set_subcategory( SUBCAT_INTERFACE_CONTROL );
70     set_shortname( N_( "MSN" ) );
71     set_description( _("MSN Title Plugin") );
72
73     add_string( "msn-format", FORMAT_DEFAULT, NULL,
74                 FORMAT_TEXT, FORMAT_LONGTEXT, VLC_FALSE );
75
76     set_capability( "interface", 0 );
77     set_callbacks( Open, Close );
78 vlc_module_end();
79
80 /*****************************************************************************
81  * Open: initialize and create stuff
82  *****************************************************************************/
83 static int Open( vlc_object_t *p_this )
84 {
85     intf_thread_t *p_intf = (intf_thread_t *)p_this;
86     playlist_t *p_playlist;
87
88     /* Allocate instance and initialize some members */
89     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
90     if( p_intf->p_sys == NULL )
91     {
92         msg_Err( p_intf, "out of memory" );
93         return -1;
94     }
95
96     p_playlist = (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
97                                                 FIND_ANYWHERE );
98
99
100     p_intf->p_sys->psz_format = config_GetPsz( p_intf, "msn-format" );
101     if( !p_intf->p_sys->psz_format )
102     {
103         msg_Dbg( p_intf, "no format provided" );
104         p_intf->p_sys->psz_format = strdup( FORMAT_DEFAULT );
105     }
106     msg_Dbg( p_intf, "using format: %s", p_intf->p_sys->psz_format );
107
108     if( !p_playlist )
109     {
110         msg_Err( p_intf, "could not find playlist object" );
111         free( p_intf->p_sys->psz_format );
112         free( p_intf->p_sys );
113         return -1;
114     }
115
116     var_AddCallback( p_playlist, "item-change", ItemChange, p_intf );
117     vlc_object_release( p_playlist );
118
119     p_intf->pf_run = Run;
120
121     return 0;
122 }
123
124 /*****************************************************************************
125  * Close: destroy interface stuff
126  *****************************************************************************/
127 static void Close( vlc_object_t *p_this )
128 {
129     intf_thread_t *p_intf = (intf_thread_t *)p_this;
130
131     /* clear the MSN stuff ... else it looks like we're still playing
132      * something although VLC (or the MSN plugin) is closed */
133     SendToMSN( "\\0Music\\01\\0\\0\\0\\0\\0\\0\\0" );
134
135     /* Destroy structure */
136     free( p_intf->p_sys->psz_format );
137     free( p_intf->p_sys );
138 }
139
140 /*****************************************************************************
141  * Run
142  *****************************************************************************/
143 static void Run( intf_thread_t *p_intf )
144 {
145     msleep( INTF_IDLE_SLEEP );
146 }
147
148 /*****************************************************************************
149  * ItemChange: Playlist item change callback
150  *****************************************************************************/
151 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
152                        vlc_value_t oldval, vlc_value_t newval, void *param )
153 {
154     intf_thread_t *p_intf = (intf_thread_t *)param;
155
156     char psz_tmp[MSN_MAX_LENGTH];
157     char *psz_title = NULL;
158     char *psz_artist = NULL;
159     char *psz_album = NULL;
160
161     int i,j;
162
163     if( !p_intf->p_sys ) return VLC_SUCCESS;
164
165     input_thread_t *p_input =
166         (input_thread_t *)vlc_object_find( p_this, VLC_OBJECT_INPUT,
167                                            FIND_ANYWHERE );
168     if( !p_input || p_input->b_dead || !p_input->input.p_item->psz_name )
169     {
170         /* Not playing anything ... */
171         SendToMSN( "\\0Music\\01\\0\\0\\0\\0\\0\\0\\0" );
172         return VLC_SUCCESS;
173     }
174
175     /* Playing something ... */
176     psz_artist = vlc_input_item_GetInfo( p_input->input.p_item,
177                                          _("Meta-information"),
178                                          VLC_META_ARTIST);
179     psz_album = vlc_input_item_GetInfo( p_input->input.p_item,
180                                          _("Meta-information"),
181                                          _("Album/movie/show title" ) );
182     psz_title = strdup( p_input->input.p_item->psz_name );
183     if( psz_title == NULL ) psz_title = strdup( N_("(no title)") );
184     if( psz_artist == NULL ) psz_artist = strdup( N_("(no artist)") );
185     if( psz_album == NULL ) psz_album = strdup( N_("(no album)") );
186     snprintf( psz_tmp,
187               MSN_MAX_LENGTH,
188               "\\0Music\\01\\0%s\\0%s\\0%s\\0%s\\0\\0\\0",
189               p_intf->p_sys->psz_format,
190               //FORMAT_DEFAULT,
191               psz_title,
192               psz_artist,
193               psz_album );
194     free( psz_title );
195     free( psz_artist );
196     free( psz_album );
197
198     SendToMSN( psz_tmp );
199     vlc_object_release( p_input );
200
201     return VLC_SUCCESS;
202 }
203
204 /*****************************************************************************
205  * SendToMSN
206  *****************************************************************************/
207 static int SendToMSN( char *psz_msg )
208 {
209     COPYDATASTRUCT msndata;
210     HWND msnui = NULL;
211
212     wchar_t buffer[MSN_MAX_LENGTH];
213
214     mbstowcs( buffer, psz_msg, MSN_MAX_LENGTH );
215
216     msndata.dwData = 0x547;
217     msndata.lpData = &buffer;
218     msndata.cbData = (lstrlenW(buffer)*2)+2;
219
220     while( ( msnui = FindWindowEx( NULL, msnui, "MsnMsgrUIManager", NULL ) ) )
221     {
222         SendMessage(msnui, WM_COPYDATA, (WPARAM)NULL, (LPARAM)&msndata);
223     }
224
225     return VLC_SUCCESS;
226 }