aboutsummaryrefslogtreecommitdiff
path: root/tbext/source/tbfft2.cpp
blob: 1ab08dbb897ac6219a5c4b1bc36aa85474bebd3a (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* Copyright (c) 2003 Tim Blechmann.                                            */
/* For information on usage and redistribution, and for a DISCLAIMER OF ALL     */
/* WARRANTIES, see the file, "COPYING"  in this distribution.                   */
/*                                                                              */
/*                                                                              */
/* tbfft2~ transforms the fft spectrum. it reverses the order of the samples in */
/* the fft spectrum. see the help file for further instruction...               */
/*                                                                              */
/*                                                                              */
/* tbfft2~ uses the flext C++ layer for Max/MSP and PD externals.               */
/* get it at http://www.parasitaere-kapazitaeten.de/PD/ext                      */
/* thanks to Thomas Grill                                                       */
/*                                                                              */
/*                                                                              */
/*                                                                              */
/* 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.                       */
/*                                                                              */
/* See file LICENSE for further informations on licensing terms.                */
/*                                                                              */
/* 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.  */
/*                                                                              */
/* Based on PureData by Miller Puckette and others.                             */
/*                                                                              */
/*                                                                              */
/*                                                                              */
/* coded while listening to: Naked City: Heretic, Jeux Des Dames Cruelles       */
/*                           Bob Ostertag: Attention Span                       */
/*                                                                              */
/*                                                                              */



#include <flext.h>

#if !defined(FLEXT_VERSION) || (FLEXT_VERSION < 401)
#error upgrade your flext version!!!!!!
#endif


class tbfft2: public flext_dsp
{
    FLEXT_HEADER(tbfft2,flext_dsp);
    
public: // constructor
    tbfft2();
    ~tbfft2();

protected:
    virtual void m_signal (int n, float *const *in, float *const *out);
    virtual void m_dsp (int n, float *const *in, float *const *out);
    void set_freq(t_float);
    void set_width(t_float);
    
private:
    FLEXT_CALLBACK_1(set_freq,t_float);
    FLEXT_CALLBACK_1(set_width,t_float);
  
    t_int center;
    t_int width;
    
    t_float * tmp;
    
    t_int n0;
};


FLEXT_LIB_DSP("tbfft2~",tbfft2)

tbfft2::tbfft2()
{
  AddInSignal();
  AddOutSignal();
  FLEXT_ADDMETHOD_F(0,"center",set_freq);
  FLEXT_ADDMETHOD_F(0,"width",set_width);
} 

tbfft2::~tbfft2()
{
    free(tmp);
}

void tbfft2::m_dsp(int n, t_float *const *in, t_float *const *out)
{
    free(tmp);
    tmp=(t_float*)malloc(n*sizeof(t_float));
}



void tbfft2::m_signal(int n, t_float *const *in, t_float *const *out)
{
    t_float * ins = in[0];
    t_float * outs = out[0];

    CopySamples(tmp,ins,n);
    
    n0=n/2;  
    
    if (center-width>0)
    {
	n=center-width;
    }
    else
	n=0;
    
    while (n<center+width)
    {
	tmp[n]=*(ins+2*center-n);
	++n;
    }
    

    
    //memcpy
    CopySamples(outs,tmp,n0*2);
  
}

void tbfft2::set_freq(t_float freq)
{
    center=freq;
    set_width(width);
}

void tbfft2::set_width(t_float w)
{

  if (w+center>n0)
    {
      width=n0-center;
      return;
    }
  if (center-w<0)
    {
      width=center;
      return;
    }

  width=w;
}