~ubuntu-branches/ubuntu/breezy/muse/breezy

« back to all changes in this revision

Viewing changes to synti/stklib/PercFlut.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2004-02-07 15:18:22 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040207151822-es27xxkzbcxkebjm
Tags: 0.6.3-1
* New upstream version.
* Added patches:
  + [10_alsa_init_fix] New, from upstream CVS.
    Initialize direction variable when setting Alsa parameters.
  + [10_canvas_translation_fix] New, from upstream CVS.
    Do not translate tooltips twice in canvas popup.
  + [10_checkbox_fix] New, from upstream CVS.
    Use proper set/test methods on metronome checkboxes.
  + [10_html_doc_cleanup] New.
    Fix links and HTML errors in documentation.
  + [20_allow_system_timer] New.
    The new upstream version fails by default if the real-time clock
    could not be accessed (usually the case when not running suid-root).
    This patch reverts the old behaviour of falling back to the more
    inaccurate system timer.
* Updated patches:
  + [11_PIC_fixes_fixup] Rediffed.
* Removed patches:
  + [20_no_atomic_asm] Merged upstream.
* debian/compat: Splice out debhelper compatibility level from rules file.
* debian/control: Build-depend on latest jack release by default.
  Closes: #228788
* debian/control: Bump standards version.
* debian/control: Use auto-generated debconf dependency via misc:Depends.
* debian/control: Minor tweaks to the long description.
* debian/control: Tighten fluidsynth build dependency to sane version.
* debian/muse.doc-base: New. Register HTML documentation with doc-base.
* debian/templates: Tiny rewording, and typo fix.
* debian/templates, debian/po/*: Switch to po-debconf for translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/******************************************/
2
 
/*  Percussive Flute Subclass             */
3
 
/*  of Algorithm 4 (TX81Z) Subclass of    */ 
4
 
/*  4 Operator FM Synth                   */
5
 
/*  by Perry R. Cook, 1995-96             */ 
6
 
/******************************************/
7
 
 
8
 
#include "PercFlut.h"
9
 
 
10
 
PercFlut :: PercFlut() : FM4Alg4()
11
 
{
12
 
  // Concatenate the STK RAWWAVE_PATH to the rawwave file
13
 
  char file1[128];
14
 
  char file2[128];
15
 
  char file3[128];
16
 
  char file4[128];
17
 
  strcpy(file1, RAWWAVE_PATH);
18
 
  strcpy(file2, RAWWAVE_PATH);
19
 
  strcpy(file3, RAWWAVE_PATH);
20
 
  strcpy(file4, RAWWAVE_PATH);
21
 
  this->loadWaves(strcat(file1,"rawwaves/sinewave.raw"),
22
 
                  strcat(file2,"rawwaves/sinewave.raw"),
23
 
                  strcat(file3,"rawwaves/sinewave.raw"),
24
 
                  strcat(file4,"rawwaves/fwavblnk.raw"));
25
 
    
26
 
  this->setRatio(0,(MY_FLOAT) (1.50 * 1.000));
27
 
  this->setRatio(1,(MY_FLOAT) (3.00 * 0.995));
28
 
  this->setRatio(2,(MY_FLOAT) (2.99 * 1.005));
29
 
  this->setRatio(3,(MY_FLOAT) (6.00 * 0.997));
30
 
  gains[0] = __FM4Op_gains[99];
31
 
  gains[1] = __FM4Op_gains[71];
32
 
  gains[2] = __FM4Op_gains[93];
33
 
  gains[3] = __FM4Op_gains[85];
34
 
  adsr[0]->setAllTimes((MY_FLOAT) 0.05,(MY_FLOAT) 0.05,
35
 
                       __FM4Op_susLevels[14],(MY_FLOAT) 0.05);
36
 
  adsr[1]->setAllTimes((MY_FLOAT) 0.02,(MY_FLOAT) 0.50,
37
 
                       __FM4Op_susLevels[13],(MY_FLOAT) 0.5);
38
 
  adsr[2]->setAllTimes((MY_FLOAT) 0.02,(MY_FLOAT) 0.30,
39
 
                       __FM4Op_susLevels[11],(MY_FLOAT) 0.05);
40
 
  adsr[3]->setAllTimes((MY_FLOAT) 0.02,(MY_FLOAT) 0.05,
41
 
                       __FM4Op_susLevels[13],(MY_FLOAT) 0.01);
42
 
  twozero->setGain((MY_FLOAT) 0.0);
43
 
  modDepth = (MY_FLOAT) 0.005;
44
 
}  
45
 
 
46
 
void PercFlut :: setFreq(MY_FLOAT frequency)
47
 
{    
48
 
    baseFreq = frequency;
49
 
}
50
 
 
51
 
void PercFlut :: noteOn(MY_FLOAT freq, MY_FLOAT amp)
52
 
{
53
 
    gains[0] = amp * __FM4Op_gains[99] * 0.5;
54
 
    gains[1] = amp * __FM4Op_gains[71] * 0.5;
55
 
    gains[2] = amp * __FM4Op_gains[93] * 0.5;
56
 
    gains[3] = amp * __FM4Op_gains[85] * 0.5;
57
 
    this->setFreq(freq);
58
 
    this->keyOn();
59
 
#if defined(_debug_)        
60
 
    printf("PercFlut : NoteOn: Freq=%lf Amp=%lf\n",freq,amp);
61
 
#endif    
62
 
}
63