home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / tracker-4.13.lha / tracker / Docs / tracker.doc < prev    next >
Encoding:
Text File  |  1995-02-09  |  8.3 KB  |  217 lines

  1. History:
  2. -------
  3. soundtracker was originally written by Karsten Obarsky for the amiga, a
  4. loong time ago. There have been numerous variants built upon it, the
  5. latest being protracker.
  6.  
  7. Liam Corner had the original idea of a player for the sunstation, and
  8. proved that it was possible. 
  9. I wouldn't have thought of writing it myself, but armed with his original code, 
  10. I used my knowledge of the amiga tracker format to `add some improvements'. 
  11. Of course, I ended up rewriting the whole code. At that point, it ran on 
  12. silicon graphics indigos and suns.
  13.  
  14. Steve Haehnichen wrote a soundblaster variant of that program which I have 
  15. finally added to the other versions. I did not have any news from him for
  16. sometime now, so I've decided to distribute it all. If it doesn't work as it is,
  17. it shouldn't be difficult to fix. 
  18.  
  19. Hannu Savolainen sent me the linux version and helped me put it up to date.
  20. This one should work.
  21.  
  22. Bjoern Stabell and Markus Gyger sent me some support for hpux, Andrew Leahy 
  23. for decs.
  24. Thomas R. Lawrence is still updating his port for the macintosh.
  25.  
  26. Dave Tiller sent me the fix for solaris 2.2
  27.  
  28. I finally got to port it BACK to the amiga. Full circle !
  29. Cyrille Micheneau and Pascal Rullier have volunteered to help me with that.
  30. Reinhard Katzmann succesfully compiled the preliminary release of tracker for
  31. the amiga.
  32.  
  33. Some other people have helped me recently. 
  34. Mike Battersby sent me some interim bug-fixes for linux and a much better
  35. design for the makefile.
  36. Andrew A. Chernov is the guy behind the FreeBSD port.
  37.  
  38. Rolf Grossman (grossman@informatik.tu-muenchen.de) did the NeXTstep port.
  39.  
  40. Many thanks also to Matthew Donaldson, Joerg-Cyril Hoehle and Lukas Wunner 
  41. for sending me very useful bug reports and giving us an ever better 
  42. sounding player !
  43.  
  44. Also, thanks to Loic Grenie, whose unix expertise I used extensively to
  45. get bg/fg routines to `work' (remaining bugs are mine, of course).
  46.  
  47. There are obviously some people I may have forgotten or incorrectly cited in
  48. this text. I hope this is not too dire a problem.
  49.  
  50. If you want to modify tracker or make it run on another machine, or correct
  51. problems, please do so.
  52. HOWEVER, IF YOU INTEND TO PORT IT TO ANOTHER MACHINE, I WOULD VERY MUCH
  53. APPRECIATE THAT YOU CHECK UP WITH ME FIRST. 
  54. There just might already be a port in progress, or I might have a newer
  55. version. Even so, I'd like to be able to maintain one source instead of
  56. a bazillion of version. My e-mail is Marc.Espie@ens.fr, not liable to change
  57. for some time.
  58.  
  59. PRELIMINARY
  60. -----------
  61. As I am a lazy person, this file tends to change more slowly than the tracker
  62. program itself.  Some options may no longer exist, some may have been added.
  63. Many things may be different.  I mainly try to get out a working, efficient
  64. reasonably bug-free program.  If I manage to write corresponding docs, fine !
  65. If I don't, tough luck ! Anyhow, looking at the source file should provide
  66. you with enough insight for everything.
  67. --
  68.  
  69. To build tracker, you should have a good look at the Makefile.
  70. Usually, just changing the install dir, and machine, then
  71. make install should be enough.  You may want to install tracker by hand,
  72. as it is trivial. 
  73.  
  74. tracker is a giftware program, it is not guaranteed to do anything
  75. at all, either useful or useless. You've been warned, use it at your own risk. 
  76. This said, there doesn't seem to be any relevant bugs left in the current
  77. revision of code, and it is getting more and more stable.
  78.  
  79. ``Soundtracker'' is a family of music composition programs
  80. that exists on the amiga. The resulting data files (modules)
  81. have been appearing on ftp sites for some time now.
  82.  
  83. For a machine with sufficient horsepower and some audio capability,
  84. it is possible to emulate the amiga audio hardware in real time,
  85. and play those modules.
  86. After that, you're only limited by the machine's capabilities. The
  87. sparc is a bit poor (8Khz sampling), in contrast with the indigo,
  88. which gives an almost perfect rendition of most modules.
  89.  
  90. This release of tracker supports most amiga soundtracker file formats,
  91. and plays most of the existing effects, so that about 99% of the modules
  92. are output correctly.
  93.  
  94. Here is some supplementary information.
  95.  
  96. Compression:
  97. various compression methods are supported through pipes. There is a 
  98. simple-minded compression_methods file (check Makefile to see where you want
  99. to install it). Its format is:
  100. extension    command line in printf format.
  101.  
  102. For instance, 
  103. .gz    gzip -dc %s
  104. (simple, isn't it ?)
  105.  
  106. Environment variables:
  107. OVERSAMPLE can be used to control the accuracy of the reproduction.
  108. (The number of samples used to output one audio word).
  109. The higher, the better, but the more CPU it will use. The default
  110. value (1) is quite good at high frequencies, but not so for, for instance
  111. a poor sparc station's 8000 Hz. You can try, say, 2 or 3. After that,
  112. there won't be any noticeable improvement, and anyway, the program won't
  113. be fast enough to keep up with the output rate. Note that the program is
  114. special-cased for the default value (1), which should be significantly faster
  115. on some architectures.
  116.  
  117. FREQUENCY can be used to set the audio output at a specific frequency
  118. (if the hardware supports it). The hardware will decide which frequency
  119. to actually use, according to other external parameters.
  120.  
  121. MONO can be used to force mono output, which uses less
  122. cpu power.
  123.  
  124. TRANSPOSE is the number of halftones to transpose each note (>0 is higher).
  125. Useful for low frequency sparcs which can't play some tunes accurately, or
  126. when you get bored...
  127.  
  128. MODPATH can be set to be a path where you wish to look for mod files. This
  129. is a sh-styled path: setenv MODPATH dir1:dir2:...
  130.  
  131. Command line switches:
  132. -stereo/-mono: 
  133.     switch between stereo/mono output
  134. -mix <percent>: 
  135.     for stereo output, decide how to mix left/right channels.
  136.     0 is spatial stereo, 100 is mono. The change tends to
  137.     be exponential, so you may want to experiment with values 
  138.     around 90+.
  139. -frequency <freq>:
  140.     ask for a given output frequency (in kHz). The normal output frequency
  141.     is a `normal' frequency for your machine. <freq> will be rounded
  142.     to a near available value.
  143. -oversample <n>:
  144.     where n is usually 1, 2 or 3. Try to use 1,2 or 3 sample values
  145.     to accurately render a given sample. Changing the frequency 
  146.     usually works better, but there might be cases where 2 or 3 gives
  147.     you a better rendering for a given module. Big cpu-eater.
  148.     0 is a special mode, called linear resampling. As a rule, if you have
  149.     a sufficient output frequency, resampling is not really necessary.
  150. -new/old/both:
  151.     select a soundtracker format, between new (31 instr), old (15 instr)
  152.     and both (auto-detect what's going on). You should only use it if
  153.     tracker gets very confused on a module.
  154. -picky:
  155.     do not allow for any problems in a module.
  156. -tolerant:
  157.     allow for many problems that would normally stop a module
  158. -repeats / -repeats <n>:
  159.     repeat each module n times. With no value (or a 0), repeat the
  160.     module forever.
  161. -looping
  162.     make the whole module list loop.
  163. -verbose:
  164.     show a sample listing for the module.
  165. -scroll:
  166.     scroll-display the module being played.
  167. -color:
  168.     use with terminals with color-ansi capability (e.g., kterm)
  169.     to get a colorful scroll.
  170. -sync:
  171.     try to synchronize that scroll display with what you hear.
  172.     Needs much cpu power to work correctly. Not implemented for many
  173.     architectures.
  174. -speed <n>:
  175.     change the base tempo to n. The normal value is 50 (PAL video
  176.     frequency). Some modules have been written on a buggy NTSC composer,
  177.     so you may wish to use -speed 60. Weird values like -speed 10 or
  178.     -speed 2000 are allowable. 
  179.     Note that the samples may sound a bit strange since you only change
  180.     the tempo there.
  181. -speedmode (normal|old|finefirst|normalfirst):
  182.     compatibily hack for old soundtracker tunes and various variants.
  183. -transpose <k>:
  184.     transpose the song up k half-notes. Doesn't work all the time.
  185.     Doesn't work right most of the time. For fun only. If k is
  186.     negative, it obviously transposes the song down.
  187. -start n:
  188.     start the module at pattern number n instead of number 0
  189.  
  190.         Sample control:
  191.         --------------
  192. -cut 012...abcd:
  193.     suppress samples from the audio output.
  194. -add 012..abcd 
  195.     add samples to the audio output (exclusive with cut).
  196.  
  197.  
  198. Runtime control:
  199.     n: go to next song
  200.     p: restart current song/go to previous song
  201.     >: fast forward
  202.     <: rewind
  203.     S: NTSC tempo (60)
  204.     s: PAL tempo (50)
  205.     q
  206.     x
  207.     e: quit right away
  208.  
  209. Send bug reports to Marc.Espie@ens.fr,
  210.  
  211. encouragements and nice things to espie@ens.fr, zenith@dcs.warwick.ac.uk, 
  212. shaehnic@ucsd.edu, hsavolai@cc.helsinki.fi 
  213. --
  214.  
  215.     Marc Espie, Paris, february 1995
  216.  
  217.