home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / MM1 / SOUNDUTILS / mm1_tracker.lzh / TRACKER4.6 / Docs / technotes < prev    next >
Text File  |  1994-11-24  |  2KB  |  46 lines

  1. These notes are extracted from the protracker 1.2 source.
  2.  
  3. Counter goes 1 .. 2 ... currentspeed ? -> 0
  4. Actual commands occur for counter = 0
  5.  
  6. Finetune:
  7. it seems the stored frequencies are actually notes, i.e., they
  8. always correspond to the base frequency table.
  9. So what you do is convert the frequency to notes as usual, then
  10. use another frequency table according to the finetune setting.
  11.  
  12. Arpeggio 1: on Counter % 3 ,
  13.     0 normal
  14.     1 +HI
  15.     2 +LO
  16.  
  17. Portamento up 1/down 2: there is NO default value. Accordingly, 0 does nothing.
  18. Note that we ensure $71 <= period <= $358. And 0 <= volume <= 64
  19.  
  20. Tone portamento 3/Tone porta+ vol slide 5: work exactly the same way except that
  21. 5 doesn't have a rate, but use the previous rate.
  22. Various cases:
  23. - new note: porta to the new note with the given (or previous) rate.
  24. Start with the current period, not any previous goal or anything.
  25. - no new note: go on tone portamento, unless already finished. If needed,
  26. adjust rate on the fly.
  27. Gliss funk E3: snap the actual pitch to the nearest note. Don't store it.
  28.  
  29.  
  30. Fine porta up E1/Fine porta down E2/Fine volume up EA/Fine volume down EB:
  31. do just one change, on setup.
  32.  
  33. Set speed: under protracker, 0 does stop.
  34. < 32 does a normal set counter.
  35. >=32 is a factor to get real speed from (default is 125)
  36.  
  37. Change volume B: the value is pure binary.
  38. Volume Slide A: delta = HI - LOW. No default value.
  39. The actual code does: HI == 0 ? -LOW : +HI
  40.  
  41. Sample offset 9: take parameter x 256 and start from there (if
  42. para x 256 >= length, just don't play sample).
  43.  
  44. Note cut EC/ Note Delay ED: occurs when counter= para
  45.  
  46.