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_Router < prev    next >
Text File  |  2007-12-03  |  5KB  |  126 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: MIDI Router. Click edit for more info.
  29.  
  30. ////////////////////////////////////////////////////////////////////////////////////////////
  31.  
  32. //I/O Channels
  33. slider1:0<0,15,1{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}>Input Channel
  34. slider2:0<0,15,1{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16}>Output Channel
  35. slider3:3<0,3,1{Off, Notes, Non-Notes, Both}>Mode
  36.  
  37. /*----------- NOTE MIN/MAX You can change these if you want! --------------*/
  38. //Sliders
  39. slider4:0<0,127,1>Note Min
  40. slider5:127<0,127,1>Note Max
  41.  
  42. //Drop-downs with note names (disabled)
  43. //slider4:0<0,127,1{C0,C#0,D0,D#0,E0,F0,F#0,G0,G#0,A0,A#0,B0,C1,C#1,D1,D#1,E1,F1,F#1,G1,G#1,A1,A#1,B1,C2,C#2,D2,D#2,E2,F2,F#2,G2,G#2,A2,A#2,B2,C3,C#3,D3,D#3,E3,F3,F#3,G3,G#3,A3,A#3,B3,C4,C#4,D4,D#4,E4,F4,F#4,G4,G#4,A4,A#4,B4,C5,C#5,D5,D#5,E5,F5,F#5,G5,G#5,A5,A#5,B5,C6,C#6,D6,D#6,E6,F6,F#6,G6,G#6,A6,A#6,B6,C7,C#7,D7,D#7,E7,F7,F#7,G7,G#7,A7,A#7,B7,C8,C#8,D8,D#8,E8,F8,F#8,G8,G#8,A8,A#8,B8,C9,C#9,D9,D#9,E9,F9,F#9,G9,G#9,A9,A#9,B9,C10,C#10,D10,D#10,E10,F10,F#10,G10}>Note Min
  44. //slider5:127<0,127,1{C0,C#0,D0,D#0,E0,F0,F#0,G0,G#0,A0,A#0,B0,C1,C#1,D1,D#1,E1,F1,F#1,G1,G#1,A1,A#1,B1,C2,C#2,D2,D#2,E2,F2,F#2,G2,G#2,A2,A#2,B2,C3,C#3,D3,D#3,E3,F3,F#3,G3,G#3,A3,A#3,B3,C4,C#4,D4,D#4,E4,F4,F#4,G4,G#4,A4,A#4,B4,C5,C#5,D5,D#5,E5,F5,F#5,G5,G#5,A5,A#5,B5,C6,C#6,D6,D#6,E6,F6,F#6,G6,G#6,A6,A#6,B6,C7,C#7,D7,D#7,E7,F7,F#7,G7,G#7,A7,A#7,B7,C8,C#8,D8,D#8,E8,F8,F#8,G8,G#8,A8,A#8,B8,C9,C#9,D9,D#9,E9,F9,F#9,G9,G#9,A9,A#9,B9,C10,C#10,D10,D#10,E10,F10,F#10,G10}>Note Max
  45. /*-------------------------------------------------------------------------*/
  46.  
  47. //Transpose
  48. slider6:0<-60,60,1>Transpose
  49.  
  50. ////////////////////////////////////////////////////////////////////////////////////////////
  51. @init
  52.  
  53. statNoteOn = 9 * 16;
  54. statNoteOff = 8 * 16;
  55. status = channel = note = velocity = 0;
  56.  
  57. ////////////////////////////////////////////////////////////////////////////////////////////
  58. @slider
  59.  
  60. slider4 = floor(slider4);
  61. slider4 < 0 ? slider4 = 0;
  62. slider4 > 127 ? slider4 = 127;
  63.  
  64. slider5 = floor(slider5);
  65. slider5 < 0 ? slider5 = 0;
  66. slider5 > 127 ? slider5 = 127;
  67.  
  68. slider6 = floor(slider6);
  69. slider6 < -60 ? slider6 = -60;
  70. slider6 > 60 ? slider6 = 60;
  71.  
  72. inChannel = slider1;
  73. outChannel = slider2;
  74. mode = slider3;
  75. noteMin = slider4;
  76. noteMax = slider5;
  77. transpose = slider6;
  78.  
  79. ////////////////////////////////////////////////////////////////////////////////////////////
  80. @block
  81. while
  82. (
  83.     midirecv(offset,msg1,msg23) ?
  84.     (    
  85.         //Check status byte
  86.         status = msg1 & 240;    //High four bits is message type (240 == 11110000)
  87.         channel = msg1 & 15;    //Low four bits is channel number (15 == 00001111)
  88.             
  89.         //Is it on our channel?
  90.         channel == inChannel ? 
  91.         (
  92.             //Route note events
  93.             (status == statNoteOn || status == statNoteOff) ?
  94.             (
  95.                 //get note number
  96.                 note = msg23 & 127;
  97.                     
  98.                 //Is it within our note range?
  99.                 mode & 1 ?
  100.                 (
  101.                     note >= noteMin && note <= noteMax ?
  102.                     (    
  103.                         //Transpose and clamp
  104.                         note += transpose;
  105.                         note < 0 ? note = 0; note > 127 ? note = 127;
  106.                         
  107.                         //Get velocity
  108.                         velocity = ((msg23/256) & 127);
  109.                         
  110.                         //Set up messages
  111.                         msg1 = status + outChannel;
  112.                         msg23 = note|(velocity*256);
  113.                     );
  114.                 );
  115.             )
  116.             :
  117.             (
  118.                 //Route non-note events
  119.                 mode & 2 ? msg1 = status + outChannel;
  120.             );
  121.         );
  122.         //Send messages
  123.         midisend(offset,msg1,msg23);
  124.     );
  125. );
  126.