summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/nowlistening/nljuk.cpp
blob: 78d6914bc08bc850473b875bf54a530bce4dad1d (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
    nljuk.cpp

    Kopete Now Listening To plugin

    Copyright (c) 2002,2003,2004 by Will Stephenson <will@stevello.free-online.co.uk>
    Copyright (c) 2003 by Ismail Donmez <ismail.donmez@boun.edu.tr>
    Copyright (c) 2002,2003 by the Kopete developers  <kopete-devel@kde.org>
	
	Purpose: 
	This class abstracts the interface to JuK 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 <kdebug.h>
#include <tqstring.h>

#include "nlmediaplayer.h"
#include "nljuk.h"

NLJuk::NLJuk( DCOPClient *client ) : NLMediaPlayer()
{
	m_client = client;
	m_type = Audio;
	m_name = "JuK";
}

void NLJuk::update()
{
	m_playing = false;
	TQString newTrack;

	// see if JuK is  registered with DCOP
	if (  m_client->isApplicationRegistered( "juk" ) )
	{
		// see if it's playing
		TQByteArray data, replyData;
		TQCString replyType;
		TQString result;

		if ( m_client->call( "juk", "Player", "playing()", data, 
					replyType, replyData ) )
		{
			TQDataStream reply( replyData, IO_ReadOnly );
			if ( replyType == "bool" ) {
				reply >> m_playing;
			}
		}
		
		{
			TQDataStream arg( data, IO_WriteOnly );
			arg << TQString::fromLatin1("Album");
			if ( m_client->call( "juk", "Player", "trackProperty(TQString)", data,
						replyType, replyData ) )
			{
				TQDataStream reply( replyData, IO_ReadOnly );
	
				if ( replyType == TQSTRING_OBJECT_NAME_STRING ) {
					reply >> m_album;
				}
			}
		}
		
		{
			TQDataStream arg( data, IO_WriteOnly );
			arg << TQString::fromLatin1("Artist");
			if ( m_client->call( "juk", "Player", "trackProperty(TQString)", data,
						replyType, replyData ) )
			{
				TQDataStream reply( replyData, IO_ReadOnly );
	
				if ( replyType == TQSTRING_OBJECT_NAME_STRING ) {
					reply >> m_artist;
				}
			}
		}

		{
			TQDataStream arg( data, IO_WriteOnly );
			arg << TQString::fromLatin1("Title");
			if ( m_client->call( "juk", "Player", "trackProperty(TQString)", data,
						replyType, replyData ) )
			{
				TQDataStream reply( replyData, IO_ReadOnly );
	
				if ( replyType == TQSTRING_OBJECT_NAME_STRING ) {
					reply >> newTrack;
				}
			}
		}
		
		if ( newTrack != m_track )
		{
			m_newTrack = true;
			m_track = newTrack;
		}
		else
			m_newTrack = false;
	}
	else
		kdDebug( 14307 ) << "Juk is not running!\n" << endl;
}