home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / IX / MIDI_Wobulator < prev    next >
Text File  |  2007-12-03  |  4KB  |  137 lines

  1. /*
  2. Copyright 2007, Philip S. Considine
  3. All rights reserved.
  4.  
  5. Redistribution and use in source and binary forms, with or without modification, are permitted 
  6. provided that the following conditions are met:
  7.  
  8. Redistributions of source code must retain the above copyright notice, this list of conditions 
  9. and the following disclaimer. 
  10.  
  11. Redistributions in binary form must reproduce the above copyright notice, this list of conditions 
  12. and the following disclaimer in the documentation and/or other materials provided with the distribution. 
  13.  
  14. The name of Philip S. Considine may not be used to endorse or promote products derived from this
  15. software without specific prior written permission.
  16.  
  17. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 
  18. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
  19. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 
  20. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  21. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  22. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
  23. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
  24. THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26.  
  27. ////////////////////////////////////////////////////////////////////////////////////////////
  28. desc:LFO Controlled MIDI Pitch Wheel Generator
  29.  
  30. ////////////////////////////////////////////////////////////////////////////////////////////
  31. slider1:0<0,15,1{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}>MIDI Channel
  32. slider2:0<0,100,1>Max Bend (%)
  33. slider3:1<0,24,0.1>LFO Frequency
  34. slider4:0<0,1,1{Hertz,Beats}>LFO Units
  35. slider5:6<0,9,1{1,2,4,8,16,32,64,128,256,512}>Updates Per Beat
  36. slider6:1<0,1,1{Off,On}>On/Off
  37.  
  38. ////////////////////////////////////////////////////////////////////////////////////////////
  39. @init
  40. statPitch = 14 * 16;
  41. pitchCentre = 16384;
  42. updateCounter = 0;
  43. t = 0;
  44.  
  45. divs[0] = 1;
  46. divs[1] = 2;
  47. divs[2] = 4;
  48. divs[3] = 8;
  49. divs[4] = 16;
  50. divs[5] = 32;
  51. divs[6] = 64;
  52. divs[7] = 128;
  53. divs[8] = 256;
  54. divs[9] = 512;
  55.  
  56. ////////////////////////////////////////////////////////////////////////////////////////////
  57. @slider
  58. slider2 < 0 ? slider2 = 0; slider2 > 100 ? slider2 = 100;
  59. slider3 < 0 ? slider3 = 0; slider3 > 50 ? slider3 = 50;
  60.  
  61. channel = slider1;
  62. valMax = pitchCentre * (slider2/100);
  63. freq = slider3;
  64. units = slider4;
  65. updateFreq = divs[slider5];
  66.  
  67. slider6 != on ?
  68. (
  69.     on = slider6;
  70.     t = 0;
  71.     updateCounter = 0;
  72. );
  73.  
  74. ////////////////////////////////////////////////////////////////////////////////////////////
  75. @block
  76. updateSamples = ((srate * 60) / tempo) / updateFreq;
  77.  
  78. units == 0 ? sinTemp = 2*$pi*freq; //Hz
  79. units == 1 ? sinTemp = 2*$pi*((tempo/60)/freq); //Beats
  80.  
  81. on == 1 ?
  82. (
  83.     active = 1;
  84.  
  85.     updateCounter + samplesblock >= updateSamples ?
  86.     (    
  87.         updateSamples <= samplesblock ?
  88.         (            
  89.             //Possibly more than one update in the block
  90.             samplesLeft = samplesblock;
  91.             offset = 0;
  92.             while
  93.             (
  94.                 offset += updateSamples - updateCounter;
  95.             
  96.                 t += (updateSamples - updateCounter)/srate;
  97.                 value = pitchCentre + floor(valMax * sin(sinTemp*t));
  98.                 
  99.                 midisend(offset,statPitch+channel,value);
  100.                 samplesLeft -= updateSamples - updateCounter;
  101.                 updateCounter = 0;
  102.                 samplesLeft >= updateSamples;
  103.             );
  104.             updateCounter = samplesLeft;
  105.             t += updateCounter/srate;
  106.         
  107.         )
  108.         :
  109.         (            
  110.             //Block is smaller than updateSamples, just one update
  111.             offset = updateCounter + samplesblock - updateSamples;
  112.                         
  113.             t += offset/srate;
  114.             value = pitchCentre + floor(valMax * sin(sinTemp*t));
  115.  
  116.             midisend(offset,statPitch+channel,value);
  117.             updateCounter = samplesblock - offset;
  118.             t += updateCounter/srate;
  119.         );
  120.     )
  121.     :
  122.     (
  123.         //Just update counters
  124.         updateCounter += samplesblock;
  125.         t += samplesblock /srate;
  126.     );
  127. )
  128. :
  129. (
  130.     //send off value only if not already sent
  131.     active == 1 ?
  132.     (
  133.         midisend(offset,statController+channel,target|(offValue*256));
  134.         active = 0;
  135.     );
  136. );
  137.