summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nlxmms.cpp
blob: a2d3637d4817d640e00cba78b6656e1e0e25fde9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
    nlxmms.cpp

    Kopete Now Listening To plugin

    Copyright (c) 2002 by Will Stephenson <will@stevello.free-online.co.uk>

    Kopete    (c) 2002 by the Kopete developers  <kopete-devel@kde.org>
	
	Purpose: 
	This class abstracts the interface to the X Multimedia System (xmms) by
	implementing NLMediaPlayer

    *************************************************************************
    *                                                                       *
    * 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.                                   *
    *                                                                       *
    *************************************************************************
*/
#include "config.h"

#ifdef HAVE_XMMS

#include <dlfcn.h>
#include <kdebug.h>
#include <xmmsctrl.h> // need to fix Makefile.am for this?
#include "nlmediaplayer.h"
#include "nlxmms.h"

NLXmms::NLXmms() : NLMediaPlayer()
{
	m_name = "Xmms";

	xmmslib = dlopen("libxmms.so.1", RTLD_LAZY | RTLD_GLOBAL);
}

NLXmms::~NLXmms()
{
	if (xmmslib)
		dlclose(xmmslib);
}

void NLXmms::update()
{
	//look for running xmms
	if ( xmmslib &&
		 xmms_remote_get_version( 0 ) )
	{
		QString newTrack;
		// see if it's playing
		if ( xmms_remote_is_playing( 0 ) && !xmms_remote_is_paused( 0 ) )
		{
			m_playing = true;

			// get the artist and album title
			// get the song title
			newTrack = xmms_remote_get_playlist_title( 0, xmms_remote_get_playlist_pos( 0 ) );
			//kdDebug( 14307 ) << "NLXmms::update() - track is: " << m_track << endl;
			m_artist = newTrack.section( " - ", 0, 0 );
			newTrack = newTrack.section( " - ", -1, -1 );
		}
		else
			m_playing = false;
		// check if it's a new song
		if ( newTrack != m_track )
		{
			m_newTrack = true;
			m_track = newTrack;
		}
		else
			m_newTrack = false;
		kdDebug( 14307 ) << k_funcinfo << " - found xmms - " << m_track << endl;
	}
	else
		kdDebug( 14307 ) << k_funcinfo << " - xmms not found" << endl;
}

#endif 
// vim: set noet ts=4 sts=4 sw=4: