home *** CD-ROM | disk | FTP | other *** search
/ Quake 'em / QUAKEEM.BIN / quake / docs / mnlith11 / monolith.mzm < prev    next >
Encoding:
Text File  |  1996-06-19  |  1.8 KB  |  31 lines

  1. // Monolith Zoom-in / Fisheye lens
  2.   //===========================================================================
  3.   // Zoom! Wow. This is a pretty cool feature, great for all you snipers out
  4.   // there. There are three levels of normal Zoom available, and two levels of
  5.   // "Extreme". The first three rely on restricting your "Field Of View" <FOV>
  6.   // to what is far away, in progressive steps. The "Extreme" levels of zoom
  7.   // are based on actually shifting your viewpoint forward in space. There are
  8.   // some inherent problems with this, however, the most blatant being that
  9.   // sometimes your view goes right through walls. That is not good, and
  10.   // sometimes gets VERY confusing. To use Zoom, press the zoom key. To reset
  11.   // the view, hit the fisheye key.
  12.   //===========================================================================
  13.  
  14. ALIAS MZM_INRSET ";ALIAS MZM_IN ZOOMIN_1;"
  15. ALIAS MZM_OUTRSET ";ALIAS MZM_OUT ZOOMOUT_1;"
  16. ALIAS FOV_EX ";SIZEUP;SIZEDOWN;"
  17. ALIAS MZM_RSET ";FOV 20;FOV_EX;MZM_INRSET;MZM_OUTRSET;scr_ofsx 0;SENS_RSET;ECHO DISPLAY RESTORED;"
  18.  
  19. ALIAS ZOOMIN_1 ";FOV 15;FOV_EX;ECHO ZOOM LEVEL 1;ALIAS MZM_IN ZOOMIN_2;ALIAS MZM_OUT MZM_RSET;"
  20. ALIAS ZOOMIN_2 ";FOV 10;FOV_EX;ECHO ZOOM LEVEL 2;ALIAS MZM_IN ZOOMIN_3;"
  21. ALIAS ZOOMIN_3 ";FOV 5;FOV_EX;ECHO ZOOM LEVEL 3;ALIAS MZM_IN ZOOMIN_4;sensitivity 10;"
  22. ALIAS ZOOMIN_4 ";scr_ofsx 200;ECHO -E-X-T-R-E-M-E- ZOOM LEVEL 1;ALIAS MZM_IN ZOOMIN_5;sensitivity 5;"
  23. ALIAS ZOOMIN_5 ";scr_ofsx 400;ECHO -E-X-T-R-E-M-E- ZOOM LEVEL 2;"
  24.  
  25. ALIAS ZOOMOUT_1 ";FOV 40;FOV_EX;ECHO FISHEYE LEVEL 1;ALIAS MZM_OUT ZOOMOUT_2;ALIAS MZM_IN MZM_RSET;"
  26. ALIAS ZOOMOUT_2 ";FOV 60;FOV_EX;ECHO FISHEYE LEVEL 2;ALIAS MZM_OUT ZOOMOUT_3;"
  27. ALIAS ZOOMOUT_3 ";FOV 80;FOV_EX;ECHO FISHEYE LEVEL 3;"
  28.  
  29. ALIAS MZM_IN ";ZOOMIN_1;"
  30. ALIAS MZM_OUT ";ZOOMOUT_1;"
  31.