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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/* xbm.c
* portable bitmap format (xbm) decoder
* (c) 2002 Petr 'Brain' Kulhavy
* This file is a part of the Links program, released under GPL
*/
#include "cfg.h"
#ifdef G
#include "links.h"
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define XBM_BUFFER_LEN 1024
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
#define min(a,b) (a<b?a:b)
#define max(a,b) (a>b?a:b)
struct xbm_decoder{
int width, height; /* rozmery obrazku */
int partnum; /* buffer skoncil uprostred cisla */
int *numdest; /* kam se ma ukladat to cislo kdyz je partnum */
int in_data_block; /* jsme v bloku dat (uz jsme precetli otviraci slozenou zavorku) */
int image_pos; /* pixelova pozice v cimg->buffer */
int pixels; /* velikost cimg->buffer v pixelech */
int state; /* stav automatu na zrani komentaru */
int actual_eight; /* aktualni cislo, ktere se ma putnout do cimg */
int line_pos; /* aktualni pozice pixelu na radce (kolik pixelu v cimg->buffer je platnych na momentalne zpracovavane radce) */
unsigned char barvicky[6]; /* 0-2 background, 3-5 foreground */
/*
* stavy:
* 0 - mimo komentar
* 1 - za 1. lomitkem
* 2 - za 1. lomitkem a hvezdickou
* 3 - za 2. hvezdickou
*/
int buffer_pos; /* delka platnych dat v bufferu */
unsigned char buffer[XBM_BUFFER_LEN];
};
static unsigned char *my_memmem(unsigned char *h, int hl, unsigned char *n, int nl)
{
for (;hl>=nl;hl--,h++)
if (*h==*n&&!memcmp(h,n,nl))return h;
return NULL;
}
void xbm_start(struct cached_image *cimg)
{
struct xbm_decoder *deco;
unsigned short r,g,b;
deco=mem_alloc(sizeof(struct xbm_decoder));
cimg->decoder=deco;
deco->state=0;
deco->width=-1;
deco->height=-1;
deco->buffer_pos=0;
deco->partnum=0;
deco->in_data_block=0;
round_color_sRGB_to_48(&r,&g,&b,cimg->background_color);
deco->barvicky[0]=ags_16_to_8(r,(float)(display_red_gamma tcc_hack));
deco->barvicky[1]=ags_16_to_8(g,(float)(display_green_gamma tcc_hack));
deco->barvicky[2]=ags_16_to_8(b,(float)(display_blue_gamma tcc_hack));
round_color_sRGB_to_48(&r,&g,&b,get_foreground(cimg->background_color));
deco->barvicky[3]=ags_16_to_8(r,(float)(display_red_gamma tcc_hack));
deco->barvicky[4]=ags_16_to_8(g,(float)(display_green_gamma tcc_hack));
deco->barvicky[5]=ags_16_to_8(b,(float)(display_blue_gamma tcc_hack));
}
/* vrati cislo, nebo -1, kdyz to neni cislo, a nastavi p a l na posledni necislici */
static inline int xbm_read_num(unsigned char **p,int *l,int *partnum,int *digits, int *base)
{
static int a=-1;
static int b=10;
static int d=0;
int retval;
int was_partnum=*partnum;
*partnum=0;
dalsi_runda:
if (!(*l))return a;
**p=tolower(**p);
if (!was_partnum&&b==10&&((**p)<'0'||(**p)>'9'))goto smitec; /* tohle neni cislo, to si strc nekam... */
if (b==16&&((**p)<'a'||(**p>'f'))&&((**p)<'0'||(**p)>'9'))goto smitec;
if (a==-1)a=0;
for (;*l&&(((**p)>='0'&&(**p)<='9')||(b==16&&(**p)>='a'&&(**p)<='f'));(*l)--,(*p)++){d++;a*=b;a+=((**p)>='a'?10+(**p)-'a':(**p)-'0');}
if (b==10&&!a&&(*l)&&((**p)|32)=='x'){b=16;d=0;(*p)++;(*l)--;if (!*l)*partnum=1;goto dalsi_runda;}
smitec:
retval=a;
if (!*l)*partnum=1;
else a=-1,*base=b,b=10,*digits=d,d=0;
return retval;
}
static inline void xbm_skip_space_tab(unsigned char **p, int *l)
{
for (;*l&&(**p==' '||**p==9);(*l)--,(*p)++)
;
}
static inline void xbm_skip_whitespace(unsigned char **p, int *l)
{
for (;*l&&((**p)>'9'||(**p)<'0');(*l)--,(*p)++)
;
}
static inline void put_eight(struct cached_image *cimg,int bits)
{
struct xbm_decoder *deco=(struct xbm_decoder *)cimg->decoder;
int ten_napis_v_s3_nekecal;
for (ten_napis_v_s3_nekecal=0;ten_napis_v_s3_nekecal<bits&&deco->image_pos<deco->pixels&&deco->line_pos<cimg->width;ten_napis_v_s3_nekecal++,deco->image_pos++,deco->line_pos++)
{
memcpy(cimg->buffer+deco->image_pos*3,deco->barvicky+((deco->actual_eight)&1)*3,3);
deco->actual_eight>>=1;
cimg->rows_added=1;
}
if (deco->line_pos==cimg->width)
deco->line_pos=0,deco->actual_eight=0;
}
/* opravdovy dekoder xbm, data jsou bez komentaru */
/* length is always !=NULL */
static int xbm_decode(struct cached_image *cimg, unsigned char *data, int length)
{
struct xbm_decoder *deco=(struct xbm_decoder *)cimg->decoder;
/* okurky v decu ;-) */
int a;
int must_return=0;
restart_again:
if (must_return&&!length)return 0;
must_return=0;
a=min(length,XBM_BUFFER_LEN-deco->buffer_pos);
memcpy(deco->buffer+deco->buffer_pos,data,a);
length-=a;
deco->buffer_pos+=a;
if (!deco->buffer_pos)return 0; /* z toho nic plodnyho nevznikne */
data+=a;
if (!deco->in_data_block&&deco->partnum)
{
unsigned char *p;
int a;
int b,d;
p=deco->buffer;
a=deco->buffer_pos;
*(deco->numdest)=xbm_read_num(&p,&a,&(deco->partnum),&d,&b);
/* p i a ukazuje na 1. neciselnej znak (at uz za mezerama bylo cislo nebo nebylo) */
memmove(deco->buffer,p,a);
deco->buffer_pos=a;
if (deco->partnum){must_return=1;goto restart_again;} /* zase konec bufferu */
}
if (deco->width<0||deco->height<0) /* decoding header */
{
unsigned char *p,*q;
int *d;
int a;
int base, digits;
p=my_memmem(deco->buffer,deco->buffer_pos,cast_uchar "width",5);
q=my_memmem(deco->buffer,deco->buffer_pos,cast_uchar "height",6);
if (!p&&!q) /* sezereme zacatek */
{
int a=deco->buffer_pos>5?deco->buffer_pos:0; /* nesmime ukrast kus width/height */
memmove(deco->buffer,deco->buffer+deco->buffer_pos-a,deco->buffer_pos-a); /* sezereme to pred width/height */
deco->buffer_pos-=a;
must_return=1;
goto restart_again;
}
p=p&&q?min(p,q):max(p,q); /* bereme vetsi, protoze ten 2. je NULL */
memmove(deco->buffer,p,(deco->buffer_pos)+(deco->buffer)-p); /* sezereme to pred width/height */
deco->buffer_pos-=(int)(p-deco->buffer);
/* deco->buffer zacina height/width */
if (deco->buffer[0]=='w'){p=deco->buffer+5;d=&(deco->width);}
else {p=deco->buffer+6;d=&(deco->height);}
a=(int)(deco->buffer_pos+deco->buffer-p);
xbm_skip_space_tab(&p,&a);
if (!a){must_return=1;goto restart_again;} /* v bufferu je: width/height, whitespace, konec */
*d=xbm_read_num(&p,&a,&(deco->partnum),&digits, &base);
if (deco->partnum)deco->numdest=d,must_return=1;
/* p i a ukazuje na 1. neciselnej znak (at uz za mezerama bylo cislo nebo nebylo) */
memmove(deco->buffer,p,a);
deco->buffer_pos=a;
goto restart_again;
}
else /* decoding data */
{
unsigned char *p;
int a;
int d=0,b=10;
if (!deco->in_data_block)
{
p=memchr(deco->buffer,'{',deco->buffer_pos);
if (!p){deco->buffer_pos=0;must_return=1;goto restart_again;} /* sezerem celej blok a cekame na zavorku */
cimg->width=deco->width;
cimg->height=deco->height;
cimg->buffer_bytes_per_pixel=3;
cimg->red_gamma=(float)(display_red_gamma tcc_hack);
cimg->green_gamma=(float)(display_green_gamma tcc_hack);
cimg->blue_gamma=(float)(display_blue_gamma tcc_hack);
cimg->strip_optimized=0;
if (header_dimensions_known(cimg)) {img_end(cimg);return 1;}
deco->in_data_block=1;
p++;
memmove(deco->buffer,p,deco->buffer_pos+deco->buffer-p); /* sezereme to pred width/height */
deco->buffer_pos-=(int)(p-deco->buffer);
deco->image_pos=0;
deco->pixels=deco->width*deco->height;
deco->line_pos=0;
}
p=deco->buffer;
a=deco->buffer_pos;
if (!deco->partnum) xbm_skip_whitespace(&p,&a);
if (!a){must_return=1; goto restart_again;}
deco->actual_eight=xbm_read_num(&p,&a,&(deco->partnum),&d,&b);
memmove(deco->buffer,p,a);
deco->buffer_pos=a;
if (deco->partnum)must_return=1;
else put_eight(cimg,(b==16&&d>2)||(b==10&&deco->actual_eight>255)?16:8);
if (deco->image_pos>=deco->pixels) {img_end(cimg);return 1;}
goto restart_again;
}
}
/* skip comments and call real decoding function */
void xbm_restart(struct cached_image *cimg, unsigned char *data, int length)
{
struct xbm_decoder *deco=(struct xbm_decoder*)cimg->decoder;
cycle_again:
if (!length)return;
switch(deco->state)
{
case 0: /* mimo komentar */
{
unsigned char *p;
p=memchr(data,'/',length);
if (!p){xbm_decode(cimg, data, length);return;}
if (xbm_decode(cimg, data, (int)(p-data))) return;
length-=(int)(p-data+1);
data=p+1; /* preskocim lomitko */
deco->state=1;
goto cycle_again;
}
case 1: /* za 1. lomitkem */
{
if (*data=='*'){deco->state=2;data++;length--;goto cycle_again;} /* zacal komentar */
if (xbm_decode(cimg, cast_uchar "/", 1)) return;
deco->state=0; /* to nebyl komentar */
goto cycle_again;
}
case 2: /* za lomeno hvezdicka (uvnitr komentare) */
{
unsigned char *p;
p=memchr(data,'*',length);
if (!p)return; /* furt komentar */
length-=(int)(p-data+1);
data=p+1; /* preskocim hvezdicku */
deco->state=3;
goto cycle_again;
}
case 3: /* za 2. hvezdickou */
{
if (*data=='/'){data++;length--;deco->state=0;goto cycle_again;} /* skoncil komentar */
deco->state=2;
data++;
length--;
goto cycle_again;
}
}
}
#endif /* G */
|