You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/plugins/nowlistening/nlkscd.cpp

120 lines
3.5 KiB

/*
nlkscd.cpp
Kopete Now Listening To plugin
Copyright (c) 2002,2003,2004 by Will Stephenson <will@stevello.free-online.co.uk>
Kopete (c) 2002,2003,2004 by the Kopete developers <kopete-devel@kde.org>
Purpose:
This class abstracts the interface to KsCD 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 <tqstringlist.h>
#include "nlmediaplayer.h"
#include "nlkscd.h"
NLKscd::NLKscd( DCOPClient *client ) : NLMediaPlayer()
{
m_client = client;
m_type = Audio;
m_name = "KsCD";
}
void NLKscd::update()
{
m_playing = false;
TQString newTrack;
// see if it's registered with DCOP
if ( m_client->isApplicationRegistered( "kscd" ) )
{
// see if it's playing
TQByteArray data, replyData;
TQCString replyType;
if ( !m_client->call( "kscd", "CDPlayer", "playing()", data,
replyType, replyData ) )
{
// we're talking to a KsCD without the playing() method
m_playing = true;
// kdDebug( 14307 ) << "NLKscd::update() - KsCD without playing()"
// << endl;
}
else
{
TQDataStream reply( replyData, IO_ReadOnly );
if ( replyType == "bool" ) {
reply >> m_playing;
// kdDebug( 14307 ) << "NLKscd::update() - KsCD is " <<
// ( m_playing ? "" : "not " ) << "playing!" << endl;
}
}
// poll it for its current artist
if ( !m_client->call( "kscd", "CDPlayer",
"currentArtist()", data, replyType, replyData ) )
kdDebug( 14307 ) << "NLKscd::update() DCOP error"
<< endl;
else {
TQDataStream reply( replyData, IO_ReadOnly );
if ( replyType == "TQString" )
reply >> m_artist;
else
kdDebug( 14307 ) << "NLKscd::update() trackList returned unexpected reply type!" << endl;
}
//album
if ( !m_client->call( "kscd", "CDPlayer",
"currentAlbum()", data, replyType, replyData ) )
kdDebug( 14307 ) << "NLKscd::update() DCOP error"
<< endl;
else {
TQDataStream reply( replyData, IO_ReadOnly );
if ( replyType == "TQString" )
reply >> m_album;
else
kdDebug( 14307 ) << "NLKscd::update() trackList returned unexpected reply type!" << endl;
}
// Get the current track title
if ( !m_client->call( "kscd", "CDPlayer",
"currentTrackTitle()", data, replyType, replyData ) )
kdDebug( 14307 ) << "NLKscd::update() - there was some error using DCOP." << endl;
else {
TQDataStream reply( replyData, IO_ReadOnly );
if ( replyType == "TQString" ) {
reply >> newTrack;
//kdDebug( 14307 ) << "the result is: " << newTrack.latin1()
// << endl;
} else
kdDebug( 14307 ) << "NLKscd::update()- currentTrackTitle "
<< "returned unexpected reply type!" << endl;
}
// if the current track title has changed
if ( newTrack != m_track )
{
m_newTrack = true;
m_track = newTrack;
}
else
m_newTrack = false;
// kdDebug( 14307 ) << "NLKscd::update() - found kscd - "
// << m_track << endl;
}
// else
// kdDebug( 14307 ) << "NLKscd::update() - kscd not found" << endl;
}