home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Homebrewer's Handbook / vr.iso / brender / spacerig / runme.bat < prev    next >
DOS Batch File  |  1996-03-21  |  1KB  |  45 lines

  1. @echo off
  2. rem This a batch file for launching the ROOM DEMO
  3. rem in various resolution modes at command line go hires
  4. rem to operate demo in hires mode
  5.  
  6. if %1==hires goto hires
  7. if %1==HIRES goto hires
  8. if %1==lowres goto lowres
  9. if %1==LOWRES goto lowres
  10. if %1==megares goto megares
  11. if %1==megares goto megares
  12.  
  13. echo ERROR screen mode not specified
  14. echo default mode selected automatically will run in lowres (320x200)
  15.  
  16. echo runme megares [enter] to run application in (1024x768) resolution
  17. echo runme hires   [enter] to run application in (640x480) resolution
  18. echo runme lowres  [enter] to run application in (320x200) resolution
  19. pause
  20.  
  21. goto lowres
  22.  
  23. :hires
  24. rem  medium resolution/256 colours
  25.      SET BRENDER_DOS_GFX=VESA,W:640,H:480,B:8
  26.      echo Medium Resolution Mode   (640,480)
  27. goto end
  28.  
  29. :lowres
  30. rem low resolution
  31.     SET BRENDER_DOS_GFX=MCGA
  32.     echo Low Resolution Mode  (320,200)
  33. goto end
  34.  
  35. :megares
  36. rem  high resolution/256 colours
  37.     SET BRENDER_DOS_GFX=VESA,W:1024,H:768,B:8
  38.     echo  High Resolution Mode  (1024,768)
  39. goto end
  40.  
  41. :end
  42. rem run program
  43.  
  44. spacerig
  45.