home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1996 May / buyer-0596.iso / games / quantik / example.son < prev    next >
Text File  |  1995-05-08  |  1KB  |  68 lines

  1. $ A comment starts at a dollar sign and ends at the next dollar sign.$
  2.  
  3. $
  4. You must give the description of 3 sound sequences:
  5.     - the first is used when a line is destroyed;
  6.     - the second is used when you have made the required number of lines;
  7.     - the third is used when a piece appears;
  8.  
  9. If you want to disable any of sounds, replace its description by 'END'.
  10.  
  11. Symbols used:
  12.     END: end of the sound sequence;
  13.     SO: change octaves;
  14.     C  Cs  Db  D  Ds   Eb  E  F  Fs  Gb   G   Gs   Ab  A  As  Bb  B
  15.     are notes in English notation ('s' for sharp and 'b' for bemol or
  16.     flat);
  17.     do do# reb re re#  mib mi fa fa# solb sol sol# lab la la# sib si
  18.     are notes in French notation;
  19.     R(elease) is the silence time after the note;
  20.     Letters below are for the duration (0 is the smallest and not the
  21.     same as no sound);
  22.     U: 0;
  23.     S: 1;
  24.     EI: 2;
  25.     Q: 4;
  26.     H: 8
  27.     W: 16;
  28.     DW: 32.
  29.  
  30. Writing a song:
  31.     - first, 'SO'(switch octave) plus a number (from 0 to 5);
  32.     - then, notes followed by a letter (U, S...) or an integer which
  33.       gives (divided by 18.2) the duration in second.
  34.     - finally, 'END'.
  35. $
  36.  
  37.  
  38. $ Sound sequence for when a line is destroyed $
  39. SO 3
  40. C 0
  41. D 0
  42. E 0
  43. F 0
  44. G 0
  45. A 0
  46. B 0
  47. END
  48.  
  49. $ Sound sequence for when you have made the required number of lines $
  50. SO 3
  51. C 0
  52. D 0
  53. E 0
  54. F 0
  55. G 0
  56. A 0
  57. B 0 R 2
  58. SO 4
  59. C 2 R 2
  60. F 8
  61. END
  62.  
  63. $ Sound sequence for when a piece appears $
  64. SO 1
  65. C 0
  66. END
  67.  
  68.