// Copyright (C) 2001 Charles Samuels // Copyright (C) 2001 Neil Stevens #include "tyler.h" #include #include #include #include #include #include #include #include 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"