home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 148.lha / MouseZoom / readme < prev   
Encoding:
Text File  |  1980-11-15  |  1.2 KB  |  36 lines

  1. This is MouseZoom, a mouse accelerator for the Amiga. It doesn't try to 
  2. do everything under the sun (ala Mach16), it only speeds up the mouse.
  3.  
  4. Mouse speed increases exponentially. The faster you move the mouse, the 
  5. faster the mouse moves faster. This gives you good resolution at slow 
  6. speeds and still allows very fast mouse movement when you want it. 
  7. Basically, it multiplies the mouse speed by its original speed divided 
  8. by 8 (or 1, whichever is larger). I think the formula that results is
  9.  
  10. Y = X * (ABS(X) / 8)  
  11.  or
  12. Y = X
  13.  
  14. whichever is larger. Anyway, the algorithm was picked because it is very 
  15. quick, using a shift and in-line multiply.
  16.  
  17. To install MouseZoom, just execute it by typing "MouseZoom". It will 
  18. quietly install itself and return control to you.
  19.  
  20. To get rid of the MouseZoom, just execute it again.
  21.  
  22. The source is included. Use it as an example of an input event handler. 
  23. Modify it do do more stuff if you want. The terminate function is set up 
  24. using message passing in case you want to expand it to, say, adjust the 
  25. mouse acceleration factor.
  26.  
  27. Built using Lattice 4.0 or later.
  28.  
  29. A Special thanks to John Toebes for CBack.o, which makes this sort of
  30. program especially easy.
  31.  
  32. Enjoy,
  33. John Meissen
  34.  
  35.  
  36.