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.
tdeaddons/noatun-plugins/tyler/tyler.cpp

76 lines
1.7 KiB

// Copyright (C) 2001 Charles Samuels <charles@kde.org>
// Copyright (C) 2001 Neil Stevens <neil@qualityassistant.com>
#include "tyler.h"
#include <noatun/conversion.h>
#include <kiconloader.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
#include <kprocess.h>
#include <kstandarddirs.h>
#include <noatun/app.h>
#include <kdebug.h>
extern "C"
{
KDE_EXPORT Plugin* create_plugin()
{
TDEGlobal::locale()->insertCatalogue("tyler");
return new Tyler();
}
}
const int Tyler::bufferSize = 512;
Tyler::Tyler()
: TQObject()
, StereoScope(25)
, Plugin()
{
setSamples(bufferSize*2);
mBuffer = new char[bufferSize * 16 * 2];
}
Tyler::~Tyler()
{
delete [] mBuffer;
}
void Tyler::init()
{
process << TDEStandardDirs::findExe("noatuntyler.bin");
connect(&process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(processExited(TDEProcess *)));
// Note that process.start() will fail if findExe fails, so there's no real need
// for two separate checks.
if(!process.start(TDEProcess::NotifyOnExit, (TDEProcess::Communication)(TDEProcess::Stdin | TDEProcess::Stdout)))
{
KMessageBox::error(0, i18n("Unable to start noatuntyler.bin. Check your installation."));
unload();
}
else
start();
}
void Tyler::scopeEvent(float *left, float *right, int size)
{
if(process.isRunning())
{
Conversion::convertMonoFloatTo16le((unsigned long)size, right,
(unsigned char*)mBuffer);
Conversion::convertMonoFloatTo16le((unsigned long)size, left,
((unsigned char*)mBuffer)+bufferSize*2);
process.writeStdin((char *)mBuffer, bufferSize*2*2);
}
}
void Tyler::processExited(TDEProcess *)
{
unload();
}
#include "tyler.moc"