home *** CD-ROM | disk | FTP | other *** search
/ AMIGA PD 1 / AMIGA-PD-1.iso / Programme_zum_Heft / Programmieren / Kurztests / PascalPCQ / Include / Libraries / IFF.i < prev    next >
Text File  |  1991-09-01  |  4KB  |  156 lines

  1. {
  2.     IFF.i for PCQ Pascal
  3.  
  4.  
  5.     This file defines the constants, procedures and functions used
  6.     to work with Christian Weber's iff.library.
  7. }
  8.  
  9. {$I "Include:Graphics/GFX.i"}
  10.  
  11.  
  12. Var
  13.     IFFBase    : Address;
  14.  
  15. const
  16.     IFFNAME        = "iff.library";
  17.     IFFVERSION        = 19;            { Current library version }
  18.  
  19. type
  20.     IFFFILE    = Address;        { The IFF 'FileHandle' structure }
  21.  
  22.  
  23. {************* ERROR-CODES ********************************************}
  24.  
  25. Const
  26.     IFF_BADTASK        = -1;        { IFFError() called by wrong task }
  27.     IFF_CANTOPENFILE    = 16;        { File not found }
  28.     IFF_READERROR    = 17;        { Error reading file }
  29.     IFF_NOMEM        = 18;        { Not enough memory }
  30.     IFF_NOTIFF        = 19;        { File is not an IFF file }
  31.     IFF_WRITEERROR    = 20;        { Error writing file }
  32.  
  33.     IFF_NOILBM        = 24;        { IFF file is not of type ILBM }
  34.     IFF_NOBMHD        = 25;        { BMHD chunk not found }
  35.     IFF_NOBODY        = 26;        { BODY chunk not found }
  36.     IFF_TOOMANYPLANES    = 27;        { Obsolete since V18.6 }
  37.     IFF_UNKNOWNCOMPRESSION = 28;    { Unknown compression type }
  38.  
  39.     IFF_NOANHD        = 29;        { ANHD chunk not found (since V18.1) }
  40.     IFF_NODLTA        = 30;        { DLTA chunk not found (since V18.1) }
  41.  
  42.  
  43. {************* COMMON IFF IDs *****************************************}
  44.  
  45. { List of the most useful IDs, NOT complete, to be continued }
  46.  
  47.     ID_FORM    = $46798277; { FORM }
  48.     ID_PROP    = $80827980; { PROP }
  49.     ID_LIST    = $76738384; { LIST }
  50.     ID_CAT    = $67658420; { CAT  }
  51.  
  52.     ID_ANIM    = $65787377; { ANIM }
  53.     ID_ANHD    = $65787268; { ANHD }
  54.     ID_BMHD    = $66777268; { BMHD }
  55.     ID_BODY    = $66796889; { BODY }
  56.     ID_CAMG    = $67657771; { CAMG }
  57.     ID_CLUT    = $67768584; { CLUT }
  58.     ID_CMAP    = $67776580; { CMAP }
  59.     ID_CRNG    = $67827871; { CRNG }
  60.     ID_CTBL    = $67846676; { CTBL }
  61.     ID_DLTA    = $68768465; { DLTA }
  62.     ID_ILBM    = $73766677; { ILBM }
  63.     ID_SHAM    = $83726577; { SHAM }
  64.  
  65.     ID_8SVX    = $38838688; { 8SVX }
  66.     ID_ATAK    = $65846575; { ATAK }
  67.     ID_NAME    = $78657769; { NAME }
  68.     ID_RLSE    = $82768369; { RLSE }
  69.     ID_VHDR    = $86726882; { VHDR }
  70.  
  71.  
  72. {************* STRUCTURES *********************************************}
  73.  
  74. Type
  75.  
  76.     Chunk = record        { Generic IFF chunk structure }
  77.     ckID    : Integer;
  78.     ckSize    : Integer;
  79.  
  80.     ckData    : Array [0..1] of Byte; { variable sized data }
  81.     end;
  82.     ChunkPtr = ^Chunk;
  83.  
  84.     BitMapHeader = record    { BMHD chunk for ILBM files }
  85.     w,h    : Short;
  86.     x,y    : Short;
  87.     nPlanes    : Byte;
  88.     masking    : Byte;
  89.     compression    : Byte;
  90.     pad1    : Byte;
  91.     transparentColor    : Short;
  92.     xAspect,yAspect        : Byte;
  93.     pageWidth,pageHeight    : Short;
  94.     end;
  95.     BitMapHeaderPtr = ^BitMapHeader;
  96.  
  97.     AnimHeader = record            { ANHD chunk for ANIM files }
  98.     Operation    : Byte;
  99.     Mask        : Byte;
  100.     W        : Short;
  101.     H        : Short;
  102.     X        : Short;
  103.     Y        : Short;
  104.     AbsTime        : Integer;
  105.     RelTime        : Integer;
  106.     Interleave    : Byte;
  107.     pad0        : Byte;
  108.     Bits        : Integer;
  109.     pad        : Array [0..15] of Byte;
  110.     end;
  111.     AnimHeaderPtr = ^AnimHeader;
  112.  
  113.  
  114.  
  115. {************* FUNCTION DECLARATIONS **********************************}
  116.  
  117. Function OpenIFF(FileName : String) : IFFFILE;
  118.     External;
  119.  
  120. Procedure CloseIFF(IFile : IFFFILE);
  121.     External;
  122.  
  123. Function FindChunk(IFile : IFFFILE; ChunkName : Integer) : Address;
  124.     External;
  125.  
  126. Function GetBMHD(IFile : IFFFILE) : BitMapHeaderPtr;
  127.     External;
  128.  
  129. Function GetColorTab(IFile : IFFFILE; ColorTable : Address) : Integer;
  130.     External;
  131.  
  132. Function DecodePic(IFile : IFFFILE; BMP : BitMapPtr) : Boolean;
  133.     External;
  134.  
  135. Function SaveBitMap(FileName : String; BMP : BitMapPtr;
  136.             ColorTable : Address; Flags : Integer) : Boolean;
  137.     External;
  138.  
  139. Function SaveClip(FileName : String; BMP : BitMapPtr;
  140.           ColorTable : Address; Flags : Integer;
  141.           Xoffset, Yoffset, Width, Height : Integer) : Boolean;
  142.     External;
  143.  
  144. Function IFFError : Integer;
  145.     External;
  146.  
  147. Function GetViewModes(IFile : IFFFILE) : Integer;
  148.     External;                { Integer since V18.1 }
  149.  
  150. Function NewOpenIFF(FileName : String; MemAttr : Integer) : IFFFILE;
  151.     External;                { Since V16.1 }
  152.  
  153. Function ModifyFrame(ModForm : Address; BMP : BitMapPtr) : Boolean;
  154.     External;                { Since V18.1 }
  155.  
  156.