1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
/* new.c:
*
* functions to allocate and deallocate structures and structure data
*
* jim frost 09.29.89
*
* Copyright 1989, 1991 Jim Frost.
* See included file "copyright.h" for complete copyright information.
*/
#include "copyright.h"
#include "image.h"
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
extern int _Xdebug;
/* this table is useful for quick conversions between depth and ncolors
*/
unsigned long DepthToColorsTable[] = {
/* 0 */ 1,
/* 1 */ 2,
/* 2 */ 4,
/* 3 */ 8,
/* 4 */ 16,
/* 5 */ 32,
/* 6 */ 64,
/* 7 */ 128,
/* 8 */ 256,
/* 9 */ 512,
/* 10 */ 1024,
/* 11 */ 2048,
/* 12 */ 4096,
/* 13 */ 8192,
/* 14 */ 16384,
/* 15 */ 32768,
/* 16 */ 65536,
/* 17 */ 131072,
/* 18 */ 262144,
/* 19 */ 524288,
/* 20 */ 1048576,
/* 21 */ 2097152,
/* 22 */ 4194304,
/* 23 */ 8388608,
/* 24 */ 16777216,
/* 25 */ 33554432,
/* 26 */ 67108864,
/* 27 */ 134217728,
/* 28 */ 268435456,
/* 29 */ 536870912,
/* 30 */ 1073741824,
/* 31 */ 2147483648UL,
/* 32 */ 2147483648UL /* bigger than unsigned int; this is good enough */
};
unsigned long colorsToDepth(ncolors)
unsigned long ncolors;
{ unsigned long a;
for (a= 0; (a < 32) && (DepthToColorsTable[a] < ncolors); a++)
/* EMPTY */
;
return(a);
}
static unsigned int ovmul(unsigned int a, unsigned int b)
{
unsigned int r;
r = a * b;
if (r / a != b) {
memoryExhausted();
}
return r;
}
void goodImage(image, func)
Image *image;
char *func;
{
if (!image) {
printf("%s: nil image\n", func);
exit(0);
}
switch (image->type) {
case IBITMAP:
case IRGB:
case ITRUE:
break;
default:
printf("%s: bad destination image\n", func);
exit(0);
}
}
char *dupString(s)
char *s;
{ char *d;
if (!s)
return(NULL);
d= (char *)lmalloc(strlen(s) + 1);
strcpy(d, s);
return(d);
}
void newRGBMapData(rgb, size)
RGBMap *rgb;
unsigned int size;
{
rgb->used= 0;
rgb->size= size;
rgb->compressed= 0;
rgb->red= (Intensity *)lmalloc(sizeof(Intensity) * size);
rgb->green= (Intensity *)lmalloc(sizeof(Intensity) * size);
rgb->blue= (Intensity *)lmalloc(sizeof(Intensity) * size);
}
void freeRGBMapData(rgb)
RGBMap *rgb;
{
lfree((byte *)rgb->red);
lfree((byte *)rgb->green);
lfree((byte *)rgb->blue);
}
Image *newBitImage(width, height)
unsigned int width, height;
{ Image *image;
unsigned int linelen;
image= (Image *)lmalloc(sizeof(Image));
image->type= IBITMAP;
image->title= NULL;
newRGBMapData(&(image->rgb), (unsigned int)2);
*(image->rgb.red)= *(image->rgb.green)= *(image->rgb.blue)= 65535;
*(image->rgb.red + 1)= *(image->rgb.green + 1)= *(image->rgb.blue + 1)= 0;
image->rgb.used= 2;
image->width= width;
image->height= height;
image->depth= 1;
linelen= (width / 8) + (width % 8 ? 1 : 0); /* thanx johnh@amcc.com */
image->data= (unsigned char *)lcalloc(ovmul(linelen, height));
return(image);
}
Image *newRGBImage(width, height, depth)
unsigned int width, height, depth;
{ Image *image;
unsigned int pixlen, numcolors;
pixlen= (depth / 8) + (depth % 8 ? 1 : 0);
if (pixlen == 0) /* special case for `zero' depth image, which is */
pixlen= 1; /* sometimes interpreted as `one color' */
numcolors = depthToColors(depth);
image= (Image *)lmalloc(sizeof(Image));
image->type= IRGB;
image->title= NULL;
newRGBMapData(&(image->rgb), numcolors);
image->width= width;
image->height= height;
image->depth= depth;
image->pixlen= pixlen;
image->data= (unsigned char *)lmalloc(ovmul(ovmul(width, height), pixlen));
return(image);
}
Image *newTrueImage(width, height)
unsigned int width, height;
{ Image *image;
image= (Image *)lmalloc(sizeof(Image));
image->type= ITRUE;
image->title= NULL;
image->rgb.used= image->rgb.size= 0;
image->width= width;
image->height= height;
image->depth= 24;
image->pixlen= 3;
image->data= (unsigned char *)lmalloc(ovmul(ovmul(width, height), 3));
image->data= (unsigned char *)lmalloc(width * height * 3);
return(image);
}
void freeImageData(image)
Image *image;
{
if (image->title) {
lfree((byte *)image->title);
image->title= NULL;
}
if (!TRUEP(image))
freeRGBMapData(&(image->rgb));
lfree(image->data);
}
void freeImage(image)
Image *image;
{
goodImage(image, "freeImage");
freeImageData(image);
image->type= IBAD;
lfree((byte *)image);
}
byte *lmalloc(size)
unsigned int size;
{ byte *area;
if (size == 0) {
size= 1;
if (_Xdebug)
fprintf(stderr, "lcalloc given zero size!\n");
}
if (!(area= (byte *)malloc(size))) {
memoryExhausted();
/* NOTREACHED */
}
return(area);
}
byte *lcalloc(size)
unsigned int size;
{ byte *area;
if (size == 0) {
size= 1;
if (_Xdebug)
fprintf(stderr, "lcalloc given zero size!\n");
}
if (!(area= (byte *)calloc(1, size))) {
memoryExhausted();
/* NOTREACHED */
}
return(area);
}
void lfree(area)
byte *area;
{
free(area);
}
|