X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=blobdiff_plain;f=pctb%2Fstructure.c;h=1665211df8358d6820bc11ceb6c1e51c1887cfa3;hp=139180878012d92ae6b0589c19d262c370a02a21;hb=4570580037d7b3a259eae0263f0941f62cafb1cf;hpb=710699382b7be70ce8fb067a7d64102fa5153754 diff --git a/pctb/structure.c b/pctb/structure.c index 1391808..1665211 100644 --- a/pctb/structure.c +++ b/pctb/structure.c @@ -112,7 +112,7 @@ void canon_colour_prepare(void) { CanonColourInfoBlues *blues= greens->green2[g]; if (!blues) { blues= greens->green2[g]= mmalloc(sizeof(*blues)); - memset(blues, '?', sizeof(blues)); + memset(blues, '?', sizeof(*blues)); } blues->blue2[b]= cci->c; @@ -128,7 +128,6 @@ static void mustfail1(const char *file, int line, const char *what) { " * YPP client is showing commodity listing screen\n" " * YPP client window is on top (we try to raise it but your window\n" " manager might have prevented that from succeeding)\n" - " * Your X display is 24bpp (NB some VNC servers use 16bpp by default)\n" "\n" "If all of these are true, please report this as a fault.\n\n" "Technical details:" @@ -486,11 +485,16 @@ static double find_aa_density(const RgbImage *ri, Point p, long background, double alpha_max= alpha_mean + thresh; for (i=0; i<3; i++) MUST( alpha_min <= alpha[i] && alpha[i] <= alpha_max, + MP(p); MRGB(here);MRGB(background);MRGB(foreground);MI(fg_extra); MF(alpha_min); MI(i);MF(alpha[i]);MF(alpha_max) ); + if ( -1e-5 < alpha_mean && alpha_mean <= 0.0 ) alpha_mean= 0.0; + if (1.0 <= alpha_mean && alpha_mean <= 1.0+1e-5) alpha_mean= 1.0; + MUST( 0 <= alpha_mean && - (fg_extra ? alpha_mean < 0.999 : alpha_mean >= 1.0), + (fg_extra ? (alpha_mean < 0.999) : (alpha_mean <= 1.0)), + MP(p); MRGB(here);MRGB(background);MRGB(foreground);MI(fg_extra); MF(alpha_mean); MF(alpha[0]);MF(alpha[1]);MF(alpha[2]); ); @@ -521,39 +525,52 @@ static void find_table_entry(Rect commod, int colno, Rect *cell) { const RgbImage *ri= cim->rgb; - Rgb background= ri_rgb(ri, cell->br.x, cell->br.y); + Rgb background; + unsigned char chanbg[3]; long bg_count=0, light_count=0, dark_count=0; Point p; + + background= ri_rgb(ri, cell->br.x, cell->br.y); + memcpy(chanbg, RI_PIXEL(ri, cell->br.x, cell->br.y), 3); + FOR_P_RECT(p,*cell) { - Rgb here= ri_rgb(ri, p.x, p.y); - if (here == background) bg_count++; - else if (here < background) dark_count++; - else if (here > background) light_count++; + const unsigned char *here_pixel= RI_PIXEL(ri, p.x, p.y); + int i; + for (i=0; i<3; i++) { + unsigned here= here_pixel[i]; + if (here == chanbg[i]) bg_count++; + else if (here < chanbg[i]) dark_count += (chanbg[i] - here)/4 + 1; + else if (here > chanbg[i]) light_count += (here - chanbg[i])/4 + 1; + } } - long total_count= RECT_W(*cell) * RECT_H(*cell); + long total_count= RECT_W(*cell) * RECT_H(*cell) * 3; + MUST( bg_count > total_count / 2, MR(*cell);MIL(total_count);MIL(bg_count); MIL(light_count);MIL(dark_count) ); + if (bg_count == total_count) return; - MUST( !!dark_count != !!light_count, - MR(*cell);MIL(total_count);MIL(bg_count); - MIL(light_count);MIL(dark_count) ); - - debugf("TABLEENTRY col=%d %d,%d..%d,%d bg=%ld light=%ld dark=%ld\n", - colno, cell->tl.x,cell->tl.y, cell->br.x,cell->br.y, - bg_count, light_count, dark_count); - Rgb foreground; double fg_extra; - if (light_count) { + + if (light_count/16 > dark_count) { foreground= 0xffffffU; fg_extra= +1; - } else { + } else if (dark_count/16 > light_count) { foreground= 0; fg_extra= -1; + } else { + MUST( !"tell light from dark", + MR(*cell);MIL(total_count);MIL(bg_count); + MIL(light_count);MIL(dark_count);MRGB(background); ); } + + debugf("TABLEENTRY col=%d %d,%d..%d,%d bg=%ld light=%ld dark=%ld\n", + colno, cell->tl.x,cell->tl.y, cell->br.x,cell->br.y, + bg_count, light_count, dark_count); + int monochrome= 1; FOR_P_RECT(p,*cell) { @@ -659,9 +676,13 @@ Rect find_sunshine_widget(void) { return sunshiner; } -void find_islandname(RgbImage *ri) { +void find_islandname(void) { find_structure(page_images[0], 0); + RgbImage *ri= alloc_rgb_image(page_images[0]->rgb->w, + page_images[0]->rgb->h); + memcpy(ri->data, page_images[0]->rgb->data, ri->w * ri->h * 3); + Rect sunshiner= find_sunshine_widget(); char sunshine[MAXIMGIDENT], archisland[MAXIMGIDENT]; @@ -760,10 +781,15 @@ void find_islandname(RgbImage *ri) { for (p.y=islandnamer.tl.y; p.y<=islandnamer.br.y; p.y++) { pattern <<= 1; - switch (get_p(p)) { - case '*': if (runs[nruns]) { nruns++; runs[nruns]=0; } break; - case 'O': runs[nruns]++; pattern |= 1u; break; - default: pattern |= 1UL<<31; break; + double alpha= find_aa_density(ri,p, 0xCCCCAA,0x002255,0); + if (alpha >= 0.49) { + runs[nruns]++; + pattern |= 1u; + } else { + if (runs[nruns]) { + nruns++; + runs[nruns]=0; + } } } @@ -777,7 +803,7 @@ void find_islandname(RgbImage *ri) { nspaces++; might_be_colon=0; } else { - if (!(pattern & 1UL<<31) && nruns==2 && runs[1]==runs[0]) { + if (nruns==2 && runs[1]==runs[0]) { if (!nspaces) { if (pattern==colon_pattern) goto ok_might_be_colon;