|  | /*  SpiralSound
 *  Copyleft (C) 2003 Andy Preston <andy@clublinux.co.uk>
 *
 *  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.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "TransposePlugin.h"
#include "TransposePluginGUI.h"
#include "SpiralIcon.xpm"
#include "../../NoteTable.h"
extern "C" {
SpiralPlugin* SpiralPlugin_CreateInstance () {
    return new TransposePlugin;
}
char** SpiralPlugin_GetIcon () {
    return SpiralIcon_xpm;
}
int SpiralPlugin_GetID () {
    return 122;
}
string SpiralPlugin_GetGroupName() {
    return "Control";
}
}
///////////////////////////////////////////////////////
TransposePlugin::TransposePlugin () :
m_Amount(0),
m_Out(0.0)
{
    m_PluginInfo.Name = "Transpose";
    m_PluginInfo.Width = 80;
    m_PluginInfo.Height = 60;
    m_PluginInfo.NumInputs = 2;
    m_PluginInfo.NumOutputs = 1;
    m_PluginInfo.PortTips.push_back ("Input");
    m_PluginInfo.PortTips.push_back ("Transpose CV");
    m_PluginInfo.PortTips.push_back ("Output");
    m_AudioCH->Register ("Amount", &m_Amount);
}
TransposePlugin::~TransposePlugin () {
}
PluginInfo &TransposePlugin::Initialise (const HostInfo *Host) {
    return SpiralPlugin::Initialise (Host);
}
SpiralGUIType *TransposePlugin::CreateGUI() {
    return new TransposePluginGUI (m_PluginInfo.Width, m_PluginInfo.Height, this, m_AudioCH, m_HostInfo);
}
void TransposePlugin::Execute () {
     int Match [2];
     for (int n=0; n<m_HostInfo->BUFSIZE; n++) {
         Match[0]=0;
         Match[1]=0;
         for (int i=0; i<2 && InputExists(i); i++) {
             float Freq, Dif, MinDif = 30000;
             Freq = GetInputPitch (i, n);
             for (int c=0; c<131; c++) {
                 Dif = fabs (NoteTable[c] - Freq);
                 if (Dif > MinDif) break;
                 MinDif=Dif;
                 Match[i]=c;
             }
         }
         if (! InputExists (1)) Match[1] = m_Amount;
         m_Out = NoteTable [(Match[0] + Match[1]) % 132];
         SetOutputPitch (0, n, m_Out);
     }
}
void TransposePlugin::StreamOut (ostream &s) {
     s << m_Version << endl;
     s << m_Amount;
}
void TransposePlugin::StreamIn (istream &s) {
     int version;
     s >> version;
     s >> m_Amount;
}
 |