home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 December / maximum-cd-2009-12.iso / DiscContents / blender-2.49b-windows.exe / $_4_ / plugins / include / iff.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-08-31  |  8.4 KB  |  220 lines

  1. /* Copyright (c) 1999, Not a Number / NeoGeo b.v. 
  2.  * $Id: iff.h 19211 2009-03-06 15:46:13Z sirdude $
  3.  * 
  4.  * All rights reserved.
  5.  * 
  6.  * Contact:      info@blender.org   
  7.  * Information:  http://www.blender.org
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  *
  18.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  19.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  22.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28.  * SUCH DAMAGE.
  29.  */
  30.  
  31. #ifndef IFF_H
  32. #define IFF_H
  33.  
  34. #include <sys/types.h>
  35. #include "util.h"
  36. #include "externdef.h"
  37.  
  38. #define IB_rect            (1 << 0)
  39. #define IB_planes        (1 << 1)
  40. #define IB_cmap            (1 << 2)
  41. #define IB_test            (1 << 7)
  42.  
  43. #define IB_fields        (1 << 11)
  44. #define IB_yuv            (1 << 12)
  45. #define IB_zbuf            (1 << 13)
  46. #define IB_rgba            (1 << 14)
  47.  
  48. #define JP2             (1 << 18)
  49.  
  50. #define AMI             (1 << 31)
  51. #define PNG             (1 << 30)
  52. #define Anim            (1 << 29)
  53. #define TGA             (1 << 28)
  54. #define JPG             (1 << 27)
  55. #define BMP             (1 << 26)
  56. #ifdef WITH_QUICKTIME
  57. #define QUICKTIME       (1 << 25)
  58. #endif
  59. #define RADHDR  (1<<24)
  60.  
  61. #define RAWTGA    (TGA | 1)
  62.  
  63. #define JPG_STD    (JPG | (0 << 8))
  64. #define JPG_VID    (JPG | (1 << 8))
  65. #define JPG_JST    (JPG | (2 << 8))
  66. #define JPG_MAX    (JPG | (3 << 8))
  67. #define JPG_MSK    (0xffffff00)
  68.  
  69. #define AM_ham        (0x0800 | AMI)
  70. #define AM_hbrite   (0x0080 | AMI)
  71. #define AM_lace        (0x0004 | AMI)
  72. #define AM_hires    (0x8000 | AMI)
  73. #define AM_hblace   (AM_hbrite | AM_lace)
  74. #define AM_hilace   (AM_hires | AM_lace)
  75. #define AM_hamlace  (AM_ham | AM_lace)
  76.  
  77. #define RGB888    1
  78. #define RGB555    2
  79. #define DYUV    3
  80. #define CLUT8    4
  81. #define CLUT7    5
  82. #define CLUT4    6
  83. #define CLUT3    7
  84. #define RL7    8
  85. #define RL3    9
  86. #define MPLTE    10
  87.  
  88. #define DYUV1    0
  89. #define C233    1
  90. #define YUVX    2
  91. #define HAMX    3
  92. #define TANX    4
  93.  
  94. #define AN_c233            (Anim | C233)
  95. #define AN_yuvx            (Anim | YUVX)
  96. #define AN_hamx            (Anim | HAMX)
  97. #define AN_tanx            (Anim | TANX)
  98.  
  99. #define IS_amiga(x)        (x->ftype & AMI)
  100. #define IS_ham(x)        ((x->ftype & AM_ham) == AM_ham)
  101. #define IS_hbrite(x)    ((x->ftype & AM_hbrite) == AM_hbrite)
  102.  
  103. #define IS_lace(x)        ((x->ftype & AM_lace) == AM_lace)
  104. #define IS_hires(x)        ((x->ftype & AM_hires) == AM_hires)
  105. #define IS_hblace(x)    ((x->ftype & AM_hblace) == AM_hblace)
  106. #define IS_hilace(x)    ((x->ftype & AM_hilace) == AM_hilace)
  107. #define IS_hamlace(x)    ((x->ftype & AM_hamlace) == AM_hamlace)
  108.  
  109. #define IS_anim(x)        (x->ftype & Anim)
  110. #define IS_hamx(x)        (x->ftype == AN_hamx)
  111. #define IS_tga(x)        (x->ftype & TGA)
  112. #define IS_png(x)               (x->ftype & PNG)
  113. #define IS_bmp(x)               (x->ftype & BMP)
  114. #define IS_radhdr(x)        (x->ftype & RADHDR)
  115. #define IS_tim(x)        (x->ftype & TIM)
  116. #define IS_tiff(x)        (x->ftype & TIFF)
  117. #define IS_openexr(x)           (x->ftype & OPENEXR)
  118. #define IS_jp2(x)           (x->ftype & JP2)
  119.  
  120.  
  121. #define IMAGIC     0732
  122. #define IS_iris(x)        (x->ftype == IMAGIC)
  123.  
  124. #define IS_jpg(x)        (x->ftype & JPG)
  125. #define IS_stdjpg(x)    ((x->ftype & JPG_MSK) == JPG_STD)
  126. #define IS_vidjpg(x)    ((x->ftype & JPG_MSK) == JPG_VID)
  127. #define IS_jstjpg(x)    ((x->ftype & JPG_MSK) == JPG_JST)
  128. #define IS_maxjpg(x)    ((x->ftype & JPG_MSK) == JPG_MAX)
  129.  
  130. #define AN_INIT an_stringdec = stringdec; an_stringenc = stringenc;
  131.  
  132. #define IB_MIPMAP_LEVELS    10
  133.  
  134. struct MEM_CacheLimiterHandle_s;
  135.  
  136. typedef struct ImBuf {
  137.     struct ImBuf *next, *prev;    /**< allow lists of ImBufs, for caches or flipbooks */
  138.     short    x, y;                /**< width and Height of our image buffer */
  139.     short    skipx;                /**< Width in ints to get to the next scanline */
  140.     unsigned char    depth;        /**< Active amount of bits/bitplanes */
  141.     unsigned char    cbits;        /**< Amount of active bits in cmap */
  142.     unsigned short    mincol;        /**< smallest color in colormap */
  143.     unsigned short    maxcol;        /**< Largest color in colormap */
  144.     int    type;                    /**< 0=abgr, 1=bitplanes */
  145.     int    ftype;                    /**< File type we are going to save as */
  146.     unsigned int    *cmap;        /**< Color map data. */
  147.     unsigned int    *rect;        /**< pixel values stored here */
  148.     unsigned int    **planes;    /**< bitplanes */
  149.     int    flags;                /**< Controls which components should exist. */
  150.     int    mall;                /**< what is malloced internal, and can be freed */
  151.     short    xorig, yorig;        /**< Cordinates of first pixel of an image used in some formats (example: targa) */
  152.     char    name[1023];        /**< The file name assocated with this image */
  153.     char    namenull;        /**< Unused don't want to remove it thought messes things up */
  154.     int    userflags;            /**< Used to set imbuf to Dirty and other stuff */
  155.     int    *zbuf;                /**< z buffer data, original zbuffer */
  156.     float *zbuf_float;        /**< z buffer data, camera coordinates */
  157.     void *userdata;            /**< temporary storage, only used by baking at the moment */
  158.     unsigned char *encodedbuffer;     /**< Compressed image only used with png currently */
  159.     unsigned int   encodedsize;       /**< Size of data written to encodedbuffer */
  160.     unsigned int   encodedbuffersize; /**< Size of encodedbuffer */
  161.  
  162.     float *rect_float;        /**< floating point Rect equivilant */
  163.     int channels;            /**< amount of channels in rect_float (0 = 4 channel default) */
  164.     float dither;            /**< random dither value, for conversion from float -> byte rect */
  165.     
  166.     struct MEM_CacheLimiterHandle_s * c_handle; /**< handle for cache limiter */
  167.     struct ImgInfo * img_info;
  168.     int refcounter;            /**< Refcounter for multiple users */
  169.     int index;                /**< reference index for ImBuf lists */
  170.     
  171.     struct ImBuf *mipmap[IB_MIPMAP_LEVELS]; /**< MipMap levels, a series of halved images */
  172. } ImBuf;
  173.  
  174. LIBIMPORT struct ImBuf *allocImBuf(short,short,uchar,uint,uchar);
  175. LIBIMPORT struct ImBuf *dupImBuf(struct ImBuf *);
  176. LIBIMPORT void freeImBuf(struct ImBuf*);
  177.  
  178. LIBIMPORT short converttocmap(struct ImBuf* ibuf);
  179.  
  180. LIBIMPORT short saveiff(struct ImBuf *,char *,int);
  181.  
  182. LIBIMPORT struct ImBuf *loadiffmem(int *,int);
  183. LIBIMPORT struct ImBuf *loadifffile(int,int);
  184. LIBIMPORT struct ImBuf *loadiffname(char *,int);
  185. LIBIMPORT struct ImBuf *testiffname(char *,int);
  186.  
  187. LIBIMPORT struct ImBuf *onehalf(struct ImBuf *);
  188. LIBIMPORT struct ImBuf *onethird(struct ImBuf *);
  189. LIBIMPORT struct ImBuf *halflace(struct ImBuf *);
  190. LIBIMPORT struct ImBuf *half_x(struct ImBuf *);
  191. LIBIMPORT struct ImBuf *half_y(struct ImBuf *);
  192. LIBIMPORT struct ImBuf *double_x(struct ImBuf *);
  193. LIBIMPORT struct ImBuf *double_y(struct ImBuf *);
  194. LIBIMPORT struct ImBuf *double_fast_x(struct ImBuf *);
  195. LIBIMPORT struct ImBuf *double_fast_y(struct ImBuf *);
  196.  
  197. LIBIMPORT int ispic(char *);
  198.  
  199. LIBIMPORT void dit2(struct ImBuf *, short, short);
  200. LIBIMPORT void dit0(struct ImBuf *, short, short);
  201.  
  202. LIBIMPORT struct ImBuf *scaleImBuf(struct ImBuf *, short, short);
  203. LIBIMPORT struct ImBuf *scalefastImBuf(struct ImBuf *, short, short);
  204. LIBIMPORT struct ImBuf *scalefieldImBuf(struct ImBuf *, short, short);
  205. LIBIMPORT struct ImBuf *scalefastfieldImBuf(struct ImBuf *, short, short);
  206.  
  207. LIBIMPORT void de_interlace(struct ImBuf *ib);
  208. LIBIMPORT void interlace(struct ImBuf *ib);
  209. LIBIMPORT void gamwarp(struct ImBuf *ibuf, double gamma);
  210.  
  211. LIBIMPORT void IMB_rectcpy(struct ImBuf *dbuf, struct ImBuf *sbuf, 
  212.     int destx, int desty, int srcx, int srcy, int width, int height);
  213.  
  214. LIBIMPORT void IMB_rectfill(struct ImBuf *drect, float col[4]);
  215. LIBIMPORT void IMB_rectfill_area(struct ImBuf *ibuf, float *col, int x1, int y1, int x2, int y2);
  216. LIBIMPORT void buf_rectfill_area(unsigned char *rect, float *rectf, int width, int height, float *col, int x1, int y1, int x2, int y2);
  217.  
  218. #endif /* IFF_H */
  219.  
  220.