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