home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / Audio / Score / CoventryCarol.score < prev    next >
Text File  |  1993-08-08  |  9KB  |  363 lines

  1. /*   
  2.    The Coventry Carol
  3.    
  4.    as rendered by Christopher Kane
  5.    11/13/90
  6.    
  7.     This is the original version of the Coventry Carol, from a manuscript dated 1591.
  8.     It is taken from The Oxford Book of Carols, copyright 1964, Oxford University Press, London.
  9.     The text attributes the carol to Pageant of the Shearmen and Tailors, 15th century.
  10.    
  11.    I have spiced it up a bit (one note changed), but have tried to remain faithful to the original.
  12.    
  13.    Note that the notes are formatted here so that the time command 't' for the next note is associated
  14.    with the part commands of the previous.  This makes it a little easier to read the note lengths.
  15. */
  16.  
  17. info tempo:100, headroom:0.33;
  18.  
  19. noteTagRange = 1 to 10;
  20.  
  21. part sop,ten,bass;
  22.  
  23. sop synthPatchCount:1, synthPatch:"Pluck";
  24. ten synthPatchCount:1, synthPatch:"Pluck";
  25. bass synthPatchCount:1, synthPatch:"Pluck";
  26.  
  27. var start = 0.01;
  28. var whole = 2.0;
  29. var half = whole / 2;
  30. var quart = whole / 4;
  31.  
  32. BEGIN;
  33.  
  34. sop (noteUpdate) sustain:0.97, decay:15, bright:0.37, bearing:0.0, amp:1.0;
  35. ten (noteUpdate) sustain:0.97, decay:15, bright:0.37, bearing:0.0, amp:1.0;
  36. bass (noteUpdate) sustain:0.97, decay:15, bright:0.37, bearing:0.0, amp:0.9;
  37.  
  38. t start;
  39.  
  40. /*---------------------------------*/
  41. sop (noteOn 1) freq:g4, amp:1.0;
  42. ten (noteOn 3) freq:d4, amp:1.0;
  43. bass (noteOn 4) freq:g3, amp:0.9;
  44. t +whole;
  45.  
  46. sop (noteOn 1) freq:g4, amp:1.0;
  47. ten (noteOn 3) freq:d4, amp:1.0;
  48. bass (noteOn 4) freq:g3, amp:0.9;
  49. t +half;
  50.  
  51. sop (noteOn 1) freq:fs4, amp:1.0;
  52. ten (noteOn 3) freq:d4, amp:1.0;
  53. bass (noteOn 4) freq:d3, amp:0.9;
  54. t +half;
  55.  
  56. /*---------------------------------*/
  57. sop (noteOn 1) freq:g4, amp:1.0;
  58. ten (noteOn 3) freq:b3, amp:1.0;
  59. bass (noteOn 4) freq:g2, amp:0.9;
  60. t +whole;
  61.  
  62. sop (noteOn 1) freq:bf4, amp:1.0;
  63. ten (noteOn 3) freq:d4, amp:1.0;
  64. bass (noteOn 4) freq:g3, amp:0.9;
  65. t +half;
  66.  
  67. /*---------------------------------*/
  68. sop (noteOn 1) freq:a4, amp:1.0;
  69. ten (noteOn 3) freq:f4, amp:1.0;
  70. bass (noteOn 4) freq:f3, amp:0.9;
  71. t +(half+quart);
  72.  
  73. sop (noteOn 1) freq:a4, amp:1.0;
  74. ten (noteOn 3) freq:f4, amp:1.0;
  75. bass (noteOn 4) freq:f3, amp:0.9;
  76. t +quart;
  77.  
  78. sop (noteOn 1) freq:g4, amp:1.0;
  79. ten (noteOn 3) freq:bf3, amp:1.0;
  80. bass (noteOn 4) freq:g3, amp:0.9;
  81. t +quart;
  82.  
  83. ten (noteOn 3) freq:c4, amp:1.0;
  84. t +quart;
  85.  
  86. /*---------------------------------*/
  87. sop (noteOn 1) freq:fs4, amp:1.0;
  88. ten (noteOn 3) freq:d4, amp:1.0;
  89. bass (noteOn 4) freq:d3, amp:0.9;
  90. t +(whole+half);
  91.  
  92. /*---------------------------------*/
  93. sop (noteOn 1) freq:g4, amp:1.0;
  94. ten (noteOn 3) freq:d4, amp:1.0;
  95. bass (noteOn 4) freq:g3, amp:0.9;
  96. t +half;
  97.  
  98. sop (noteOn 1) freq:a4, amp:1.0;
  99. ten (noteOn 3) freq:f4, amp:1.0;
  100. bass (noteOn 4) freq:f3, amp:0.9;
  101. t +half;
  102.  
  103. sop (noteOn 1) freq:bf4, amp:1.0;
  104. ten (noteOn 3) freq:d4, amp:1.0;
  105. bass (noteOn 4) freq:g3, amp:0.9;
  106. t +half;
  107.  
  108. /*---------------------------------*/
  109. sop (noteOn 1) freq:c5, amp:1.0;
  110. ten (noteOn 3) freq:ef4, amp:1.0;
  111. bass (noteOn 4) freq:c3, amp:0.9;
  112. t +half;
  113.  
  114. sop (noteOn 1) freq:a4, amp:1.0;
  115. ten (noteOn 3) freq:d4, amp:1.0;
  116. bass (noteOn 4) freq:d3, amp:0.9;
  117. t +quart;
  118.  
  119. ten (noteOn 3) freq:c4, amp:1.0;
  120. t +quart;
  121.  
  122. /*---------------------------------*/
  123. sop (noteOn 1) freq:g4, amp:1.0;
  124. ten (noteOn 3) freq:b3, amp:1.0;
  125. bass (noteOn 4) freq:g2, amp:0.9;
  126. t +whole;
  127.  
  128. sop (noteOn 1) freq:d5, amp:1.0;
  129. ten (noteOn 3) freq:f4, amp:1.0;
  130. bass (noteOn 4) freq:bf2, amp:0.9;
  131. t +half;
  132.  
  133. /*---------------------------------*/
  134. sop (noteOn 1) freq:c5, amp:1.0;
  135. ten (noteOn 3) freq:f4, amp:1.0;
  136. bass (noteOn 4) freq:f3, amp:0.9;
  137. t +(half+quart);
  138.  
  139. sop (noteOn 1) freq:c5, amp:1.0;
  140. ten (noteOn 3) freq:f4, amp:1.0;
  141. bass (noteOn 4) freq:f3, amp:0.9;
  142. t +quart;
  143.  
  144. sop (noteOn 1) freq:bf4, amp:1.0;
  145. ten (noteOn 3) freq:d4, amp:1.0;
  146. bass (noteOn 4) freq:g3, amp:0.9;
  147. t +half;
  148.  
  149. /*---------------------------------*/
  150. sop (noteOn 1) freq:a4, amp:1.0;
  151. ten (noteOn 3) freq:d4, amp:1.0;
  152. bass (noteOn 4) freq:d3, amp:0.9;
  153. t +(whole+half);
  154.  
  155. /*---------------------------------*/
  156. sop (noteOn 1) freq:g4, amp:1.0;
  157. ten (noteOn 3) freq:d4, amp:1.0;
  158. bass (noteOn 4) freq:g3, amp:0.9;
  159. t +half;
  160.  
  161. sop (noteOn 1) freq:fs4, amp:1.0;
  162. ten (noteOn 3) freq:d4, amp:1.0;
  163. bass (noteOn 4) freq:d3, amp:0.9;
  164. t +half;
  165.  
  166. sop (noteOn 1) freq:g4, amp:1.0;
  167. ten (noteOn 3) freq:bf3, amp:1.0;
  168. bass (noteOn 4) freq:g3, amp:0.9;
  169. t +half;
  170.  
  171. /*---------------------------------*/
  172. sop (noteOn 1) freq:c5, amp:1.0;
  173. ten (noteOn 3) freq:ef4, amp:1.0;
  174. bass (noteOn 4) freq:c3, amp:0.9;
  175. t +half;
  176.  
  177. sop (noteOn 1) freq:a4, amp:1.0;
  178. ten (noteOn 3) freq:d4, amp:1.0;
  179. bass (noteOn 4) freq:d3, amp:0.9;
  180. t +half;
  181.  
  182. /*---------------------------------*/
  183. sop (noteOn 1) freq:b4, amp:1.0;
  184. ten (noteOn 3) freq:d4, amp:1.0;
  185. bass (noteOn 4) freq:g3, amp:0.9;
  186. t +(whole+half+half);
  187.  
  188.  
  189. /*=====================================*/
  190.  
  191. /*---------------------------------*/
  192. sop (noteOn 1) freq:g4, amp:1.0;
  193. ten (noteOn 3) freq:d4, amp:1.0;
  194. bass (noteOn 4) freq:g3, amp:0.9;
  195. t +whole;
  196.  
  197. sop (noteOn 1) freq:g4, amp:1.0;
  198. ten (noteOn 3) freq:d4, amp:1.0;
  199. bass (noteOn 4) freq:g3, amp:0.9;
  200. t +half;
  201.  
  202. sop (noteOn 1) freq:fs4, amp:1.0;
  203. ten (noteOn 3) freq:d4, amp:1.0;
  204. bass (noteOn 4) freq:d3, amp:0.9;
  205. t +half;
  206.  
  207. /*---------------------------------*/
  208. sop (noteOn 1) freq:g4, amp:1.0;
  209. ten (noteOn 3) freq:d4, amp:1.0;
  210. bass (noteOn 4) freq:g2, amp:0.9;
  211. t +whole;
  212.  
  213. sop (noteOn 1) freq:bf4, amp:1.0;
  214. ten (noteOn 3) freq:d4, amp:1.0;
  215. bass (noteOn 4) freq:g3, amp:0.9;
  216. t +half;
  217.  
  218. /*---------------------------------*/
  219. sop (noteOn 1) freq:a4, amp:1.0;
  220. ten (noteOn 3) freq:f4, amp:1.0;
  221. bass (noteOn 4) freq:f3, amp:0.9;
  222. t +(whole);
  223.  
  224. sop (noteOn 1) freq:g4, amp:1.0;
  225. ten (noteOn 3) freq:bf3, amp:1.0;
  226. bass (noteOn 4) freq:ef3, amp:0.9;
  227. t +quart;
  228.  
  229. ten (noteOn 3) freq:c4, amp:1.0;
  230. t +quart;
  231.  
  232. /*---------------------------------*/
  233. sop (noteOn 1) freq:fs4, amp:1.0;
  234. ten (noteOn 3) freq:d4, amp:1.0;
  235. bass (noteOn 4) freq:d3, amp:0.9;
  236. t +(whole+half);
  237.  
  238. /*---------------------------------*/
  239. sop (noteOn 1) freq:g4, amp:1.0;
  240. ten (noteOn 3) freq:d4, amp:1.0;
  241. bass (noteOn 4) freq:g3, amp:0.9;
  242. t +half;
  243.  
  244. sop (noteOn 1) freq:a4, amp:1.0;
  245. ten (noteOn 3) freq:f4, amp:1.0;
  246. bass (noteOn 4) freq:f3, amp:0.9;
  247. t +half;
  248.  
  249. sop (noteOn 1) freq:bf4, amp:1.0;
  250. ten (noteOn 3) freq:d4, amp:1.0;
  251. bass (noteOn 4) freq:g3, amp:0.9;
  252. t +half;
  253.  
  254. /*---------------------------------*/
  255. sop (noteOn 1) freq:c5, amp:1.0;
  256. ten (noteOn 3) freq:ef4, amp:1.0;
  257. bass (noteOn 4) freq:c3, amp:0.9;
  258. t +half;
  259.  
  260. sop (noteOn 1) freq:a4, amp:1.0;
  261. ten (noteOn 3) freq:d4, amp:1.0;
  262. bass (noteOn 4) freq:d3, amp:0.9;
  263. t +quart;
  264.  
  265. ten (noteOn 3) freq:c4, amp:1.0;
  266. t +quart;
  267.  
  268. /*---------------------------------*/
  269. sop (noteOn 1) freq:g4, amp:1.0;
  270. ten (noteOn 3) freq:b3, amp:1.0;
  271. bass (noteOn 4) freq:g2, amp:0.9;
  272. t +whole;
  273.  
  274. sop (noteOn 1) freq:d5, amp:1.0;
  275. ten (noteOn 3) freq:f4, amp:1.0;
  276. bass (noteOn 4) freq:bf2, amp:0.9;
  277. t +half;
  278.  
  279. /*---------------------------------*/
  280. sop (noteOn 1) freq:c5, amp:1.0;
  281. ten (noteOn 3) freq:f4, amp:1.0;
  282. bass (noteOn 4) freq:f3, amp:0.9;
  283. t +whole;
  284.  
  285. sop (noteOn 1) freq:bf4, amp:1.0;
  286. ten (noteOn 3) freq:d4, amp:1.0;
  287. bass (noteOn 4) freq:g3, amp:0.9;
  288. t +half;
  289.  
  290. /*---------------------------------*/
  291. sop (noteOn 1) freq:a4, amp:1.0;
  292. ten (noteOn 3) freq:d4, amp:1.0;
  293. bass (noteOn 4) freq:d3, amp:0.9;
  294. t +(whole);
  295.  
  296. sop (noteOn 1) freq:bf4, amp:1.0;
  297. ten (noteOn 3) freq:d4, amp:1.0;
  298. bass (noteOn 4) freq:g3, amp:0.9;
  299. t +(half);
  300.  
  301. /*---------------------------------*/
  302. sop (noteOn 1) freq:a4, amp:1.0;
  303. ten (noteOn 3) freq:f4, amp:1.0;
  304. bass (noteOn 4) freq:f3, amp:0.9;
  305. t +(half+quart);
  306.  
  307. sop (noteOn 1) freq:a4, amp:1.0;
  308. bass (noteOn 4) freq:f3, amp:0.9;
  309. t +quart;
  310.  
  311. sop (noteOn 1) freq:g4, amp:1.0;
  312. ten (noteOn 3) freq:bf3, amp:1.0;
  313. bass (noteOn 4) freq:ef3, amp:0.9;
  314. t +quart;
  315.  
  316. ten (noteOn 3) freq:c4, amp:1.0;
  317. t +quart;
  318.  
  319. /*---------------------------------*/
  320. sop (noteOn 1) freq:fs4, amp:1.0;       /* Here's the one note change.  Original text: f4, not fs4 */
  321. ten (noteOn 3) freq:d4, amp:1.0;
  322. bass (noteOn 4) freq:d3, amp:0.9;
  323. t +(whole+half);
  324.  
  325. /*---------------------------------*/
  326. sop (noteOn 1) freq:g4, amp:1.0;
  327. ten (noteOn 3) freq:bf3, amp:1.0;
  328. bass (noteOn 4) freq:g3, amp:0.9;
  329. t +half;
  330.  
  331. sop (noteOn 1) freq:fs4, amp:1.0;
  332. ten (noteOn 3) freq:d4, amp:1.0;
  333. bass (noteOn 4) freq:d3, amp:0.9;
  334. t +half;
  335.  
  336. sop (noteOn 1) freq:g4, amp:1.0;
  337. ten (noteOn 3) freq:bf3, amp:1.0;
  338. bass (noteOn 4) freq:g3, amp:0.9;
  339. t +half;
  340.  
  341. /*---------------------------------*/
  342. sop (noteOn 1) freq:c5, amp:1.0;
  343. ten (noteOn 3) freq:ef4, amp:1.0;
  344. bass (noteOn 4) freq:c3, amp:0.9;
  345. t +half;
  346.  
  347. sop (noteOn 1) freq:a4, amp:1.0;
  348. ten (noteOn 3) freq:d4, amp:1.0;
  349. bass (noteOn 4) freq:d3, amp:0.9;
  350. t +half;
  351.  
  352. /*---------------------------------*/
  353. sop (noteOn 1) freq:b4, amp:1.0;
  354. ten (noteOn 3) freq:d4, amp:1.0;
  355. bass (noteOn 4) freq:g2, amp:0.9;
  356. t +(whole+whole);
  357.  
  358. sop (noteOff 1);
  359. ten (noteOff 3);
  360. bass (noteOff 4);
  361. END;
  362.  
  363.