--- ray/src/rt/colortab.c 1989/10/04 09:23:38 1.6 +++ ray/src/rt/colortab.c 1990/01/16 16:00:00 1.10 @@ -28,8 +28,6 @@ static char SCCSid[] = "$SunId$ LBL"; #define MINSAMP 7 /* maximum distance^2 before color reassign */ #define MAXDST2 12 - /* maximum frame buffer depth */ -#define FBDEPTH 8 /* map a color */ #define map_col(c,p) clrmap[p][ colval(c,p)<1. ? \ (int)(colval(c,p)*256.) : 255 ] @@ -37,6 +35,7 @@ static char SCCSid[] = "$SunId$ LBL"; #define CNODE short #define set_branch(p,c) ((c)<<2|(p)) #define set_pval(pv) ((pv)<<2|3) +#define is_branch(cn) (((cn)&3)!=3) #define is_pval(cn) (((cn)&3)==3) #define part(cn) ((cn)>>2) #define prim(cn) ((cn)&3) @@ -46,29 +45,40 @@ static struct tabent { long sum[3]; /* sum of colors using this entry */ long n; /* number of colors */ short ent[3]; /* current table value */ -} clrtab[1< 1< 0; h--) { - if (is_pval(*p.t)) - break; - if (cv[prim(*p.t)] < part(*p.t)) - p.t++; /* left branch */ + for (tp = ctree, h = 0; is_branch(*tp); h++) + if (cv[prim(*tp)] < part(*tp)) + tp += 1<sum[RED] += r; - p.e->sum[GRN] += g; - p.e->sum[BLU] += b; - p.e->n++; + clrtab[h].sum[RED] += r; + clrtab[h].sum[GRN] += g; + clrtab[h].sum[BLU] += b; + clrtab[h].n++; /* recompute average */ - r = p.e->sum[RED] / p.e->n; - g = p.e->sum[GRN] / p.e->n; - b = p.e->sum[BLU] / p.e->n; + r = clrtab[h].sum[RED] / clrtab[h].n; + g = clrtab[h].sum[GRN] / clrtab[h].n; + b = clrtab[h].sum[BLU] / clrtab[h].n; /* check for movement */ - if (p.e->n == 1 || - (r-p.e->ent[RED])*(r-p.e->ent[RED]) + - (g-p.e->ent[GRN])*(g-p.e->ent[GRN]) + - (b-p.e->ent[BLU])*(b-p.e->ent[BLU]) > MAXDST2) { - p.e->ent[RED] = r; - p.e->ent[GRN] = g; /* reassign pixel */ - p.e->ent[BLU] = b; + if (clrtab[h].n == 1 || + (r-clrtab[h].ent[RED])*(r-clrtab[h].ent[RED]) + + (g-clrtab[h].ent[GRN])*(g-clrtab[h].ent[GRN]) + + (b-clrtab[h].ent[BLU])*(b-clrtab[h].ent[BLU]) > MAXDST2) { + clrtab[h].ent[RED] = r; + clrtab[h].ent[GRN] = g; /* reassign pixel */ + clrtab[h].ent[BLU] = b; #ifdef notdef printf("pixel %d = (%d,%d,%d) (%d refs)\n", - h, r, g, b, p.e->n); + h, r, g, b, clrtab[h].n); #endif (*set_pixel)(h, r, g, b); } @@ -158,9 +162,9 @@ BYTE *rmap, *gmap, *bmap; static -cut(tree, height, box, c0, c1) /* partition color space */ +cut(tree, level, box, c0, c1) /* partition color space */ register CNODE *tree; -int height; +int level; register int box[3][2]; int c0, c1; { @@ -175,11 +179,11 @@ int c0, c1; bcopy(box, kb, sizeof(kb)); /* do left (lesser) branch */ kb[prim(*tree)][1] = part(*tree); - cut(tree+1, height-1, kb, c0, (c0+c1)>>1); + cut(tree+(1<>1); /* do right branch */ kb[prim(*tree)][0] = part(*tree); kb[prim(*tree)][1] = box[prim(*tree)][1]; - cut(tree+(1<>1, c1); + cut(tree+(1<<(level+1)), level+1, kb, (c0+c1)>>1, c1); }