home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 10: Diskmags / nf_archive_10.iso / MAGS / LEDGERS / LEDG_07B.MSA / SOURCE / MR_MUSIC.V2 / MR_MUSIC.TXT < prev    next >
Text File  |  1985-11-20  |  10KB  |  210 lines

  1.  
  2. He's back, and he's wearing a skirt!  THE PHANTOM has awoken and stepped out 
  3. of his coffin yet again to bestow unto his fellow comrades the new, cleaner, 
  4. greener...
  5.  
  6.                       *\*\*\*\**  MR MUSIC  **/*/*/*/*
  7.                                  Version  2
  8.  
  9. Mr music and all its affiliated programs are public domain as long as it is 
  10. in an unmodified form and the following files are supplied with it.
  11.  
  12. MR_MUSIC.XRT            The actual player.
  13. MR_MUSIC.TXT            This text file.
  14. PLAY_MR.S               Example player program.
  15.  
  16. The Quartet to Mr Music convertors are available through CONTACT BBS, London 
  17. England on +44 081 646 0746, running from 9PM to 9AM (UK time) with speeds 
  18. from 300/300 to 2400/2400 (and 9600 on request), as well as example .EIT and 
  19. .SNG files.  They have been excluded from this version in case anyone wants 
  20. to upgrade from the old version and not want to download the convertors 
  21. AGAIN!  If you do not have a modem and want the convertors, please contact 
  22. THE PHANTOM at the address at the end of this document (with an enclosed 
  23. disk) and he will send them to you.  Please note that you do not have to pay 
  24. for reply postage - just as long as you send a disk though!
  25.  
  26.  
  27.  
  28.     SO WHAT IS NEW IN VERSION 2?
  29.  
  30. Basically, version two is 5% faster (Jee, I can do 3D in a frame now!) and is 
  31. a lot more cleaner with the sample handling.  Matrixx of ST Squad was playing 
  32. about with a certain technique and so Griff developed on that and improved 
  33. the clarity of the player (you can hardly tell it from version 1, but this 
  34. one's 100% accurate).  Using this technique, Griff knocked down the register 
  35. usage down to D7 and USP.  So now, only D7 and the user stack pointer are 
  36. used in the sample player interrupt.  It also means a saving of about 4% from 
  37. the old player.  Also, The Phantom sped up his music driver so now it does 
  38. not jump about (in CPU time) as much and in general is about 1% faster (how 
  39. fast CAN you get?!).  The driver took very little time anyway, but we thought 
  40. we might as well!  In all, it is WAY better than the original, and offers 
  41. much more refined features too.  Also, ole Uncle Phanty improved the sound 
  42. tables so now a much more crisper and basy sound will emerge from your 
  43. loudspeaker.
  44.  
  45.  
  46.  
  47. SECTION 1 - PLAYING BACK A MR_MUSIC FILE.
  48.  
  49.   First of all, a Quartet song and voice set need to be converted.  For 
  50. anyone there groaning about no Soundtracker convertors, there will be one, as 
  51. soon as we find someone who will be willing to do one (Griff might, but he's 
  52. a right lazy bastard!).
  53.   The example .S file will demonstrate how to play back a Mr Music song, but 
  54. here's how it is done:
  55.  
  56. 'Offset' is the offset (in bytes) from the start of the MR_MUSIC.XRT playback 
  57. routine, and in DECIMAL.
  58.  
  59. Firstly, we place the (LONGWORD) address of the .SNG file into the player at 
  60. offset 24.
  61. Secondly we place the (LONGWORD) address of the .EIT file into the player at 
  62. offset 28.
  63. Thirdly we place the (LONGWORD) address of 32768 bytes of free space.  This 
  64. space is needed for Mr Music to generate some tables.  Please DO NOT alter 
  65. any of these values in these tables (after they are generated) or you wil get 
  66. some WEIRD sounds!
  67.  
  68. Now make sure you have installed your VBL with the call routine in it (see 
  69. below).
  70.  
  71. Now we initialise Mr Music with a JSR or BSR at offset 0.
  72.  
  73. Now you HAVE to call Mr Music every VBL with a JSR or BSR at offset 12.  If 
  74. you don't do this, it will not play!
  75.  
  76. To stop playing Mr Music, just JSR or BSR at offset 8.  It is best that you 
  77. switch off interrupts (a MOVE to SR will do this) before you do this.
  78.  
  79.  
  80. More offsets...  The Mr Music interrupt automatically sets SR to $2500 every 
  81. time it plays so you can have flicker-free rasters or whatever.  If you want 
  82. to grab that extra CPU time and don't want this feature, just JSR or BSR at 
  83. offset 16.  To enable it back on, a JSR or BSR at offset 20 will do this. 
  84. Please note that as a default it lowers the SR to $2500.
  85. If you want a new tune to be played while Mr Music is playing, then store the 
  86. new tunes' address at offset 24 (as above) and then JSR or BSR at offset 4. 
  87. Note that this takes a fair amount of CPU (about 20 screenlines worth) to do 
  88. its work before actually playing the new tune.
  89.  
  90. So here is an overview of the offsets:
  91.  
  92.           OFFSET        FUNCTION
  93.           ------        --------
  94. * ROUTINES *
  95.                0        Initialise Mr Music and start player.
  96.                4        New tune.  When a new tune is to be played.
  97.               12        The sequencer itself.
  98.               16        The SR is NOT lowered to $2500.
  99.               20        The SR is lowered to $2500.
  100. * STORAGE *
  101.               24        Address of tune (longword).
  102.               28        Address of voice set (longword).
  103.               32        Address of 32768 bytes of free space (longword).
  104.  
  105.  
  106.  
  107. SECTION 2 - TECHNICAL NOTES.
  108.  
  109. The VBL handler in Mr Music takes an extortionate amount of CPU time and uses 
  110. every single register.  Make sure that any interrupts above IPL $2300 
  111. occuring between the VBL and sreenline 16 (see paragraph below) do not use 
  112. these registers.  You can save these registers in your interrupt if it is 
  113. needed in that area.  The actual sample interrupt uses D7 and USP and you 
  114. must NOT touch these registers at any point unless a higher priority 
  115. interrupt saves them and restores them.  The sample interrupt, as in the old 
  116. version of Mr Music uses TIMER D, so it leaves you with a host of other 
  117. higher priority timers to work with.
  118.  
  119. If you ARE doing rasters with Mr Music playing in the background, then we 
  120. suggest that you do not use any registers (in the HBL interrupt) in the first 
  121. 16 lines of the screen (actually it is less but make it 16 to be safe).  This 
  122. is because the VBL sequencer is still enabled at that point, and it uses all 
  123. registers it can for speed.  If you want fast rasters, then make the first 16 
  124. rasters use no registers, then the rest can use any registers you like (with 
  125. the exception of D7 and USP).
  126.  
  127. The old Mr Music had a limitation to how much other interrupts can take. 
  128. Version two (this one!) has no such problem - well, if you DO go overboard on 
  129. your interrupts then it WILL have a problem, but generally it can tolerate 
  130. quite an amazing amount of interrupts (the ego-trippers intro The Phantom did 
  131. is an example of this).
  132.  
  133. The Quartet songs knacker the player (I.E. play all out of time) at certain 
  134. tempo values.  The ones we have found to work perfectly with Mr Music are 
  135. 187,230,250 and 300.  We don't know if there are any others, since these are 
  136. the only speeds we use anyway!!  Also beware of empty voices.  Griff left out 
  137. a safety feature in the convertor so that means you have to check for this: 
  138. if there are any voices you are not using, then put a rest in them.  I.E. if 
  139. you are not using voice 3, then shove a rest in it instead of leaving it 
  140. emplty (any length rest will do).  Failure to do this will make Mr Music 
  141. crash.
  142.  
  143. It is best to have your original Quartet song file at 11Khz.  Griff's 
  144. convertor is really quite shit at converting sample frequencies down, so it's 
  145. best to use Quartet's excellent DIGITAL to convert down to 11Khz.
  146.  
  147. '40%??  That's a LOT!'  No it isn't!  40% is piddly compared to the registers 
  148. you have left and the quality of the sound.  Other 'soundtrackers' use up 60% 
  149. or more, and that is at a lesser quality too!!  If you STILL think that is 
  150. too much, then you are not trying hard enough.  Why?  Well, just have a look 
  151. at the ego trippers intro, or the Things Not To Do Demo (Yup!  The main tune 
  152. uses Mr Music) or the example Mr Music Demoette The Phantom did to show that 
  153. all is not lost at 60% CPU left!
  154.  
  155.  
  156.  
  157. SECTION 3 - THE END and things.
  158.  
  159. The Phantom here:
  160. Evening everyone!  I might as well say that with the advent of MSC (Monster 
  161. Sound Cartridge) I was very tempted to write an output routine for it.  But I 
  162. didn't.  It's shit.  I mean, it is!  The only output device I find good (and 
  163. fastest) is the replay cartridge.  The Stereo Replay cartridge is nice, but 
  164. it's shit slow to output to, but much better than MSC.  I will do a Replay 
  165. output version soon (and MV16 - I like that!), but no specific MSC (sorry, 
  166. but there I was, wide-eyed and looking forward to the MSC specs and they let 
  167. me down).
  168. Also, for all those grumpy bastards that can't do anything in 60% (!!) I have 
  169. done a demo program with nice parallax scrolling and all that!  So there!
  170. You can obtain this demo from me or Contact BBS (details above).
  171.   For all those fans of SPX I have some good news.  The creator is all nicely 
  172. GEMmed up and almost complete.  So be patient it WILL arrive soon.  I am 
  173. still working on the 512 colour 640x552 mode, but at the moment we're 
  174. wondering wether or not to go ahead with it (since we have limited colour 
  175. resolution per line).  Also, Gizmo has his hands on two 24-bit colour 
  176. scanners (!) so get ready for some fab all-new SPX's!
  177.  
  178. Right, if you want any more information/programs to do with any of the above, 
  179. or more, contact The Phantom at the address below:
  180.  
  181.  
  182. The Phantom,
  183. 21 Bledlow House,
  184. Capland Street,
  185. LONDON,
  186. NW8 8RU
  187. England.
  188.  
  189.   If you want any programs (like the convertors etc etc) please enclose the 
  190. required disk/s.
  191.  
  192.  
  193. Right, that's it, so enjoy Mr Music and may your inner ear burst with the 
  194. funkadelic sounds from your throbbing speaker!
  195.  
  196.  
  197. Members of Electronic Images are:
  198.  
  199. Gizmo
  200.   The Phantom
  201.     Nightowl
  202.       Count Zero
  203.         Griff
  204.           Master
  205.  
  206.  
  207. This has been an Electronic Images production!
  208.  
  209.  
  210.