~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to arts/modules/synth_fm_source_impl.cc

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
    /*
 
2
 
 
3
    Copyright (C) 2000 Jeff Tranter
 
4
                       tranter@pobox.com
 
5
 
 
6
    This library is free software; you can redistribute it and/or
 
7
    modify it under the terms of the GNU Library General Public
 
8
    License as published by the Free Software Foundation; either
 
9
    version 2 of the License, or (at your option) any later version.
 
10
  
 
11
    This library is distributed in the hope that it will be useful,
 
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
    Library General Public License for more details.
 
15
   
 
16
    You should have received a copy of the GNU Library General Public License
 
17
    along with this library; see the file COPYING.LIB.  If not, write to
 
18
    the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
19
    Boston, MA 02111-1307, USA.
 
20
 
 
21
    */
 
22
 
 
23
#include "artsmodules.h"
 
24
#include "stdsynthmodule.h"
 
25
 
 
26
using namespace Arts;
 
27
 
 
28
// This is used for frequency modulation. Put your frequency to the
 
29
// frequency input and put another signal on the modulator input. Then
 
30
// set modlevel to something, say 0.3. The frequency will be modulated
 
31
// with modulator then. Just try it. Works nice when you put a
 
32
// feedback in there, that means take a combination of the delayed
 
33
// output signal from the Synth_FM_SOURCE (you need to put it to some
 
34
// oscillator as it only takes the role of Synth_FREQUENCY) and some
 
35
// other signal to get good results. Works nicely in combination with
 
36
// Synth_WAVE_SIN oscillators.
 
37
 
 
38
class Synth_FM_SOURCE_impl : virtual public Synth_FM_SOURCE_skel,
 
39
                                                        virtual public StdSynthModule
 
40
{
 
41
protected:
 
42
        static const int SAMPLINGRATE = 44100;
 
43
        float posn;
 
44
 
 
45
public:
 
46
        void streamInit() { posn = 0; }
 
47
 
 
48
        void calculateBlock(unsigned long samples)
 
49
        {
 
50
                for (unsigned long i=0; i<samples; i++)
 
51
                {
 
52
                        float pinc = frequency[i] / (float) SAMPLINGRATE;
 
53
                        posn += pinc;
 
54
                        if (posn > 1)
 
55
                                posn -= 1;
 
56
                        pos[i] = posn + modulator[i] * modlevel[i];
 
57
                }
 
58
        }
 
59
};
 
60
 
 
61
REGISTER_IMPLEMENTATION(Synth_FM_SOURCE_impl);