home *** CD-ROM | disk | FTP | other *** search
/ No Fragments Archive 10: Diskmags / nf_archive_10.iso / MAGS / ST_USER / 1990 / USEROC90.MSA / TEXT_TRACKER.DOC < prev    next >
Text File  |  1990-08-19  |  3KB  |  94 lines

  1.                               TCB SOUND TRACKER
  2.  
  3.  
  4.              Make music with the ultimate sample player from the
  5.                 world renkowned The Care Bears programming team
  6.  
  7.  
  8. Sound Tracker is another stunning piece of software from The Care Bears, but
  9. this time it's not a demo - it's a four-channel stereo sound sample replay
  10. system that enables you to create your own songs. The sound quality is far
  11. better than anything heard before on the ST and what's more, it only takes up
  12. about 28 per cent of the ST's processor time. That means there is still plenty
  13. of processing power to drive fast arcade games with dozens of sprites,
  14. scrolling backgrounds and so on.
  15.  
  16.     To play the demo piece of music on the disk boot up Sound Tracker in low
  17. resolution then click on the Load Module button. Using the cursor keys select
  18. Vortex and then hit the Return key. Now click on the Play button. Sound
  19. channels one to four can be selected or deselected by clicking on the buttons
  20. 1, 2, 3 and 4 at the top of the screen. Click on Stop when you have had
  21. enough.
  22.  
  23.     Several samples are loaded with the module and these can be played from the
  24. keyboard. Click on the arrows next to the SAM# button to select the sample then
  25. hit a key on the keyboard. The replay speed and pitch depend on the key
  26. pressed.
  27.  
  28.     Sound Tracker is still being developed and more functions are constantly
  29. being added. Here are some to try:
  30.  
  31.          F1 = cut current channel
  32.          F2 = cut current pattern
  33.          F3 = paste current channel
  34.          F4 = paste current pattern
  35.          F5 = toggle monitor on/off
  36.          F6 = toggle write on/off
  37.          F7 = jump to 0
  38.          F8 = jump to 10
  39.          F9 = jump to 20
  40.         F10 = jump to 30
  41.           ( = fast loop set
  42.           ) = -
  43.      delete = start
  44.           \ = rec.
  45. right shift = stop
  46.      insert = patt
  47.     clrhome = -
  48.        help = pos
  49.        undo = -
  50.  
  51.     By pressing Insert in the file selector you can enter your own name (in
  52. this demo only upper case) and Undo to undo the save/load function. Press
  53. 'clrhome' to toggle the music on/off.
  54.  
  55.     The finished version of Sound Tracker will feature a built-in
  56. sampling-editor, suport for MIDI, more edit functions, drum edit screen, stereo
  57. mode, a replay routine and other stuff like how to use your music in your games
  58. or demos... There will be a file called REPLAY.ROT and you simply include a
  59. machine code routine like this to start the music:
  60.  
  61. ------------------------------------------------------------------------------
  62. x:
  63.      pea       0
  64.      move.w    #$20,-(sp)
  65.      trap      #1
  66.      addq.l    #6,sp
  67.  
  68.      moveq     #1,d0     ;replay mod
  69.      lea       my_music,a0
  70.      jsr       digi_rout
  71.  
  72.      move.w    #7,-(sp)
  73.      trap      #1
  74.      addq.l    #2,sp
  75.  
  76.      moveq     #0,d0
  77.      jsr       digi_rout
  78.      illegal
  79.  
  80. my_music:
  81.      incbin    mysong.mod
  82.      even
  83. digi_rout:
  84.     incbin     replay.rot
  85. ------------------------------------------------------------------------------
  86.  
  87.     The full version of this software will be be launched at the European
  88. Computer Entertainment show in September.  If you would like any more details
  89. about this software, then please contact: MPH, 10 Chandlers Court, Eaton,
  90. Norwich, Norfolk NR4 6EY.
  91.  
  92.  
  93. HARDWARE: 1Mb RAM, colour monitor
  94.