home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / IX / PhaseAdjustingRouter < prev    next >
Text File  |  2007-12-03  |  3KB  |  100 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:Stereo Phase Inverter with selectable I/O
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. slider1:0<0,3,1{1+2,3+4,5+6,7+8}>Input
  32. slider2:0<0,3,1{Normal Phase,Invert Left,Invert Right,Invert Both}>Phase Mode
  33. slider3:0<0,3,1{1+2,3+4,5+6,7+8}>Output
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. @slider
  37. modL = slider2 & 1 ? -1 : 1;
  38. modR = slider2 & 2 ? -1 : 1;
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. @sample
  42. //Do input
  43. slider1 == 0 ?
  44. (
  45.     inL = spl0;
  46.     inR = spl1;
  47. )
  48. :
  49. slider1 == 1 ?
  50. (
  51.     inL = spl2;
  52.     inR = spl3;
  53. )
  54. :
  55. slider1 == 2 ?
  56. (
  57.     inL = spl4;
  58.     inR = spl5;
  59. )
  60. :
  61. slider1 == 3 ?
  62. (
  63.     inL = spl6;
  64.     inR = spl7;
  65. );
  66.  
  67. //Do phase
  68. inL *= modL ;
  69. inR *= modR ;
  70.  
  71. //Do output
  72. slider3 == 0 ?
  73. (
  74.     spl0 = inL;
  75.     spl1 = inR;
  76. )
  77. :
  78. slider3 == 1 ?
  79. (
  80.     spl2 = inL;
  81.     spl3 = inR;
  82. )
  83. :
  84. slider3 == 2 ?
  85. (
  86.     spl4 = inL;
  87.     spl5 = inR;
  88. )
  89. :
  90. slider3 == 3 ?
  91. (
  92.     spl6 = inL;
  93.     spl7 = inR;
  94. );
  95.  
  96.  
  97.  
  98.  
  99.  
  100.