home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d7xx / d754 / xpk.lha / XPK / ReadMe < prev    next >
Text File  |  1992-11-05  |  4KB  |  124 lines

  1.                    ======================================
  2.                    XPK - The external compression library
  3.                    ======================================
  4.  
  5.  
  6. This is distribution 2.4 of the xpk compression package. The following 
  7. files are part of this archive:
  8.  
  9.  
  10.  LIESMICH
  11.  README
  12.  
  13. Overview of files in archive, German and English.
  14.  
  15.  libs/xpkmaster.library
  16.  libs/powerpacker.library
  17.  libs/iff.library
  18.  
  19. xpkmaster.library is the main library. It's the interface between programs
  20. and compression libs. Using powerpacker.library, the masterlib can also
  21. decompress powerpacker files. iff.library has been adapted to XPK so 
  22. programs that use it will automatically decompress XPK files. Copy these
  23. files to LIBS: using the Install script from Workbench or CLI.
  24.  
  25.  libs/compressors/xpkBLZW.library
  26.  libs/compressors/xpkNONE.library
  27.  libs/compressors/xpkNUKE.library
  28.  libs/compressors/xpkRLEN.library
  29.  libs/compressors/xpkIMPL.library
  30.  libs/compressors/xpkENCO.library
  31.  
  32. These are the compression libs. You must create a compressors/ directory
  33. withing LIBS: and copy them there. Here's a quick overview of their
  34. properties:
  35.     +---------------------------------------------------------+
  36.     |             CF        CSpeed      USpeed        Modes   |
  37.     | NUKE        +           +           ++            n     |
  38.     | IMPL        +           0           +             y     |
  39.     | BLZW        0           ++          +             y     |
  40.     | RLEN        -           ++          ++            n     |
  41.     | NONE        --          ++          ++            n     |
  42.     +---------------------------------------------------------+
  43. ENCO is a very simple encoding library, RLEN very simple compression
  44. (both mainly programming examples) and NONE does just nothing.
  45.  
  46.  
  47.  Docs/BLZW.doc
  48.  Docs/FEAL.doc
  49.  Docs/HUFF.doc
  50.  Docs/IDEA.doc
  51.  Docs/NUKE.doc
  52.  
  53. Descriptions of those compressors.
  54.  
  55.  
  56.  Shell/README
  57.  Shell/xDir
  58.  Shell/xDisk
  59.  Shell/xLoadSeg
  60.  Shell/xPK
  61.  Shell/xQuery
  62.  Shell/xType
  63.  Shell/xUP
  64.  
  65. The shell-based XPK programs. See README inside
  66.  
  67.  
  68.  Workbench/xDrop
  69.  Workbench/xDrop.doc
  70.  Workbench/ShowIFF
  71.  Workbench/ShowIFF.doc
  72.  Workbench/MoviePRO
  73.  Workbench/MoviePRO.doc
  74.  
  75. xDrop requires OS 2.0. It opens an App-Icon on the WB screen which you can
  76. drag files on. They get compressed and their uncompressed original gets
  77. deleted. Double-click on the app-icon to get a control panel. ShowIFF
  78. is the well-known IFF displayer, now can decompress XPK-files thanks to
  79. the new iff.library. MoviePro does the same for anims.
  80.  
  81.  
  82.  XFH/
  83.  
  84. XFH is a decompressing file handle for XPK. It makes the files on a 
  85. partition appear as though they were uncompressed. The way to go
  86. (decompression only):
  87.       Assign XFH0: DH1:
  88.       Mount XH0: from Mountlist
  89. After that you can use XH0: just like DH1:, but files are decompressed
  90. on the fly. You may of course use several XFH partitions, read the
  91. documentation.
  92.  
  93.  
  94.                                   ---------
  95.                                   COPYRIGHT
  96.                                   ---------
  97.  
  98. XPK is copyrighted by its authors. It may be used for non-commercial
  99. purposes. For further questions refer to
  100.  
  101.    Urban Dominik Müller
  102.    Schulhausstrasse 83
  103. CH-6312 Steinhausen
  104.    SCHWEIZ
  105.  
  106.    umueller@amiga.physik.unizh.ch
  107.  
  108.  
  109.  
  110.                                    -------
  111.                                    AUTHORS
  112.                                    -------
  113.  
  114. U. Dominik Mueller  XPK concept, xpkmaster.library, NUKE, RLEN, NONE, ENCO
  115. Bryan Ford          XPK concept, xpkmaster.library, BLZW
  116. Peter Struijk       Imploder, IMPL
  117. Nico Francois       PowerPacker
  118. Kristian Nielsen    XFH
  119. Martin A. Blatter   xDrop
  120. Christian Schneider XPK concept, xLoadSeg
  121. Christian Weber     iff.library adaptation, ShowIFF, MoviePro
  122. Markus Wild         GCC interface & examples
  123. Hartmut Goebel      Oberon interface & examples
  124.