home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / fly8112o.zip / readme.txt < prev    next >
Text File  |  1997-09-01  |  2KB  |  84 lines

  1. # readme.txt
  2. #
  3. # This is part of the flight simulator 'fly8'.
  4. # Author: Eyal Lebedinsky (eyal@eyal.emu.id.au).
  5. #
  6. # OS/2 port by: Michael Taylor (miket@pcug.org.au)
  7.  
  8. Last Modification: 28th August 1996
  9.  
  10.  
  11. To install:
  12.  
  13. Extract the files into a subdirectory e.g. c:\games\fly8\os2 Add
  14. a new program item in a group or on the desktop (for example -
  15. open the templates group and drag the program template to the
  16. desktop). Set the default directory to be where you have the
  17. fly.ini and other files. (NOTE fly8 has no icon so it will get
  18. the default icon).
  19.  
  20. Now double click on the icon to run Fly8.
  21.  
  22. If Fly8 fails to run check the file fly.log in the fly8 directory for
  23. diagnostic information. 
  24.  
  25.  
  26. IMPORTANT: keep all the files together otherwise fly8 will not be able to
  27. find its support files.
  28.  
  29. VIDEO DRIVERS ARE:
  30.  
  31. GrDive        uses the Dive library for no flicker and better performance
  32. GrGPI        uses standard OS/2 API and flickers
  33. GrBitBlt    uses standard OS/2 API and BitBlt for no flicker
  34.  
  35. If building this from the source release then the OS2\config.cmd
  36. takes two parameters. Adding a second parameter builds the
  37. Dive version.
  38.  
  39. NOTE: to use emx you will need to build the mmpm2.a
  40. e.g.
  41.     emxomf -o c:\emx\lib\mmpm2.a d:\toolkit\lib\mmpm2.lib
  42. or
  43.     emxomf -o c:\emx\lib\mmpm2.a d:\ibmcpp\lib\mmpm2.lib
  44. Also add the directory for the OS/2 toolkit (dive.h etc) includes
  45. to C_INCLUDE_PATH. See example setup for EMX below.
  46.  
  47. Also required: 
  48. To use a joystick you will need the IBM OS/2 joystick drivers. 
  49. To use the emx compiled version you will need to get emxrt.zip for the
  50. emx runtime DLLs.
  51.  
  52. NOTES: as at 2/Apr/96
  53. The emx/gcc port has network support (udp) but the VisualAge C++ port
  54. does not.
  55.  
  56. Example script to setup emx
  57.  
  58. REM
  59. REM EMX 0.9A setup
  60. REM
  61. SET PATH=c:\EMX\BIN;%OLDPATH%
  62. SET DPATH=c:\EMX\BOOK;%OLDDPATH%
  63. rem SET BOOKSHELF=c:\EMX\BOOK;%bookshelf%
  64. set C_INCLUDE_PATH=c:/emx/include;d:/toolkit/h
  65. set LIBRARY_PATH=c:/emx/lib
  66. set CPLUS_INCLUDE_PATH=c:/emx/include/cpp;c:/emx/include
  67. set PROTODIR=c:/emx/include/cpp/gen
  68. set OBJC_INCLUDE_PATH=c:/emx/include
  69. set GCCLOAD=5
  70. set GCCOPT=-pipe
  71. set INFOPATH=c:/emx/info
  72. set EMXBOOK=emxdev.inf+libref.inf+gnudev.inf+bsddev.inf
  73.  
  74. set HELPNDX=emxbook.ndx
  75.  
  76. set MANPATH=c:/man
  77. set PAGER=list
  78.  
  79. set GROFF_FONT_PATH=c:/lib/groff/font
  80. set GROFF_TMAC_PATH=c:/lib/groff/tmac
  81. set REFER=c:/lib/groff/dict/papers/ind
  82.  
  83.  
  84.