chiark / gitweb /
Cope if very few commodities on screen. Use ADJUST_BOX much more.
[ypp-sc-tools.web-live.git] / pctb / structure.c
1 /*
2  * Parsing of the structure of the YPP client's displayed image
3  */
4 /*
5  *  This is part of ypp-sc-tools, a set of third-party tools for assisting
6  *  players of Yohoho Puzzle Pirates.
7  * 
8  *  Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
9  * 
10  *  This program is free software: you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation, either version 3 of the License, or
13  *  (at your option) any later version.
14  * 
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  * 
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  * 
23  *  Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
24  *  are used without permission.  This program is not endorsed or
25  *  sponsored by Three Rings.
26  */
27
28 #include "structure.h"
29
30 static CanonImage *cim;
31
32 static inline char get(int x, int y) { return cim->d[y * cim->w + x]; }
33 static inline char get_p(Point p) { return get(p.x,p.y); }
34
35 DEBUG_DEFINE_DEBUGF(struct)
36
37 #define START_MAIN {200,200}
38 #define MIN_COLUMNS         6
39 #define INTERESTING_COLUMNS 7
40 #define TEXT_COLUMNS        2
41 #define MAX_COLUMNS         7
42
43 static Rect mainr;
44 static int commbasey, comminty;
45 static int colrightx[INTERESTING_COLUMNS];
46 static int text_h=-1, columns=-1;
47 static OcrReader *rd;
48
49 char *archipelago, *island;
50
51 #define OTHERCOORD_x y
52 #define OTHERCOORD_y x
53
54 typedef struct {
55   Rgb rgb; /* on screen */
56   char c; /* canonical */
57 } CanonColourInfo;
58
59 const CanonColourInfo canoncolourinfo_table[]= {
60   { 0x475A5E, '*' }, /* edge */
61   { 0x2C5F7A, '*' }, /* edge just under box heading shadow */
62   { 0xC5C7AE, '*' }, /* blank area of partial commodities list */
63   { 0x6B828C, '*' }, /* background of ship status meter area */
64   { 0x934405, '*' }, /* border of ship meter area */
65   { 0x7D9094, '+' }, /* interbox */
66   { 0x022158, 'O' }, /* ahoy /w output foreground */
67   { 0xB5B686, 'H' }, /* ahoy /w output heading background */
68
69   { 0xBDC5BF, ' ' }, /* background - pale  Sugar cane, etc. */
70   { 0xADB5AF, ' ' }, /* background - dark                   */
71   { 0xC7E1C3, ' ' }, /* background - pale  Swill, etc.      */
72   { 0xB5CFB1, ' ' }, /* background - dark                   */
73   { 0xD6CEB0, ' ' }, /* background - pale  Madder, etc.     */
74   { 0xC8C0A2, ' ' }, /* background - dark                   */
75   { 0xE0E1D3, ' ' }, /* background - pale  Lorandite, etc.  */
76   { 0xD0D1C3, ' ' }, /* background - dark                   */
77   { 0xE5E6C1, ' ' }, /* background - pale  Cloth            */
78   { 0xD7D8B3, ' ' }, /* background - dark                   */
79   { 0xEDDED9, ' ' }, /* background - pale  Dye              */
80   { 0xDACBC6, ' ' }, /* background - dark                   */
81   { 0xD3DEDF, ' ' }, /* background - pale  Paint            */
82   { 0xC5D0D1, ' ' }, /* background - dark                   */
83   { 0xDCD1CF, ' ' }, /* background - pale  Enamel           */
84   { 0xCEC3C1, ' ' }, /* background - dark                   */
85   { 0xF3F6F5, ' ' }, /* background - pale  fruit            */
86   { 0xE2E7E5, ' ' }, /* background - dark                   */
87
88   { 0x000000, 'o' }, /* foreground */
89   { 0xD4B356, ' ' }, /* background (cursor) */
90   { 0xFFFFFF, 'o' }, /* foreground (cursor) */
91
92   { 0x5B93BF, '_' }, /* selector dropdown background */
93   { 0xD7C94F, 'X' }, /* selector dropdown foreground */
94   { 0,0 }
95 };
96
97 CanonColourInfoReds canoncolourinfo_tree;
98
99 void canon_colour_prepare(void) {
100   const CanonColourInfo *cci;
101   for (cci=canoncolourinfo_table; cci->c; cci++) {
102     unsigned char r= cci->rgb >> 16;
103     unsigned char g= cci->rgb >>  8;
104     unsigned char b= cci->rgb;
105
106     CanonColourInfoGreens *greens= canoncolourinfo_tree.red2[r];
107     if (!greens) {
108       greens= canoncolourinfo_tree.red2[r]= mmalloc(sizeof(*greens));
109       FILLZERO(*greens);
110     }
111
112     CanonColourInfoBlues *blues= greens->green2[g];
113     if (!blues) {
114       blues= greens->green2[g]= mmalloc(sizeof(*blues));
115       memset(blues, '?', sizeof(*blues));
116     }
117
118     blues->blue2[b]= cci->c;
119   }
120 }
121
122
123 static void mustfail1(const char *file, int line, const char *what) {
124   fprintf(stderr,
125  "\n\n"
126  "Unable to figure out contents of YPP client display.\n"
127  "Please check the following:\n"
128  "   * YPP client is showing commodity listing screen\n"
129  "   * YPP client window is on top (we try to raise it but your window\n"
130  "      manager might have prevented that from succeeding)\n"
131  "\n"
132  "If all of these are true, please report this as a fault.\n\n"
133           "Technical details:"
134           " %s:%d: requirement failed:\n"
135           " %s\n",
136           file, line, what);
137 }
138 static void mustfail2(void) NORET;
139 static void mustfail2(void) {
140   fprintf(stderr, "\n\nGiving up.\n");
141   exit(8);
142 }
143
144 #define MUST(x, ifnot) do{                      \
145     if (!(x)) {                                 \
146       mustfail1(__FILE__,__LINE__,#x);          \
147       ifnot;                                    \
148       mustfail2();                              \
149     }                                           \
150   }while(0)
151
152 #define MP(v) fprintf(stderr," %s=%d,%d",#v,(v).x,(v).y)
153 #define MI(v) fprintf(stderr," %s=%d",   #v,(v))
154 #define MIL(v) fprintf(stderr," %s=%ld", #v,(v))
155 #define MRGB(v) fprintf(stderr," %s=%06lx", #v,(v))
156 #define MC(v) fprintf(stderr," %s='%c'", #v,(v))
157 #define MS(v) fprintf(stderr," %s=\"%s\"", #v,(v))
158 #define MF(v) fprintf(stderr," %s=%f", #v,(v))
159 #define MSB(v) fprintf(stderr," %s", (v))
160 #define MR(v) fprintf(stderr," %s=%d,%d..%d,%d",\
161                       #v,(v).tl.x,(v).tl.y,(v).br.x,(v).br.y)
162
163
164 #define REQUIRE_RECTANGLE(tlx,tly,brx,bry,ok) \
165  require_rectangle(tlx, tly, brx, bry, ok, __LINE__);
166
167 #define FOR_P_RECT(p,rr)                                \
168   for ((p).x=(rr).tl.x; (p).x<=(rr).br.x; (p).x++)      \
169     for ((p).y=(rr).tl.y; (p).y<=(rr).br.y; (p).y++)
170
171 static void require_rectangle_r(Rect rr, const char *ok, int lineno) {
172   Point p;
173   FOR_P_RECT(p,rr) {
174     int c= get_p(p);
175     MUST( strchr(ok,c), ({
176       MI(lineno),MR(rr);MP(p);MS(ok);
177     }));
178   }
179 }
180 static void require_rectangle(int tlx, int tly, int brx, int bry,
181                               const char *ok, int lineno) {
182   Rect rr= {{tlx,tly},{brx,bry}};
183   require_rectangle_r(rr, ok, lineno);
184 }
185
186 static void debug_rect(const char *what, int whati, Rect rr) {
187   if (!DEBUGP(rect)) return;
188   int y,w;
189   fprintf(debug, "%s %d: %d,%d..%d,%d:\n", what, whati,
190           rr.tl.x,rr.tl.y, rr.br.x,rr.br.y);
191   w= rr.br.x - rr.tl.x + 1;
192   for (y=rr.tl.y; y<=rr.br.y; y++) {
193     fprintf(debug, "%4d%*s|", y, rr.tl.x,"");
194     fwrite(cim->d + y*cim->w + rr.tl.x, 1, w, debug);
195     fputc('|',debug);
196     fputc('\n',debug);
197   }
198   debug_flush();
199 }
200
201 static int commod_selector_matches(Rect search, const char *const *all,
202                                    int allh, int allw) {
203   int alloffy, alloffx;
204   for (alloffy=0; alloffy < search.br.y; alloffy++) {
205     if (alloffy+allh-1 < search.tl.y) continue;
206     for (alloffx=search.tl.x; alloffx+allw-1 <= search.br.x; alloffx++) {
207       int good=0, bad=0;
208       int x,y;
209       for (x=0; x<allw; x++)
210         for (y=0; y<allh; y++) {
211           int want= all[y][x];
212           if (want==' ') continue;
213           if (get(alloffx+x, alloffy+y) == want)
214             good++;
215           else
216             bad++;
217         }
218       debugf("CHECKCOMMOD alloff=%d,%d good=%d bad=%d\n",
219              alloffx,alloffy, good,bad);
220       if (good > 20*bad)
221         return 1;
222     }
223   }
224   return 0;
225 }
226
227 #define WALK_UNTIL(point,coord,increm,last,edge)                        \
228   for (;;) {                                                            \
229     if ((point).coord == (last)+(increm)) break;                        \
230     if (get_p((point)) == (edge)) { (point).coord -= (increm); break; } \
231     (point).coord += (increm);                                          \
232   }
233
234 #define WALK_UNTIL_MUST(point,coord,increm,last,edge)   \
235   do {                                                  \
236     WALK_UNTIL(point,coord,increm,last,edge);           \
237     MUST( (point).coord != (last)+(increm),             \
238           MP(point); MI(increm); MI(last); MC(edge);    \
239           );                                            \
240   }while(0)
241
242 #define ADJUST_BOX(search,insidechrs,OP,want, lim,LIMIT_MUST, TLBR,XY,increm) \
243   for (;;) {                                                                  \
244     LIMIT_MUST( (search).tl.XY != (search).br.XY &&                           \
245                 (search).TLBR.XY != (lim),                                    \
246                 MR((search));MSB(#TLBR);MSB(#XY) );                           \
247     int got=0;                                                                \
248     Point p=(search).tl;                                                      \
249     for (p.XY=(search).TLBR.XY;                                               \
250          p.OTHERCOORD_##XY <= (search).br.OTHERCOORD_##XY;                    \
251          p.OTHERCOORD_##XY++)                                                 \
252       got += !!strchr(insidechrs, get_p(p));                                  \
253     if ((got) OP (want))                                                      \
254       break;                                                                  \
255     (search).TLBR.XY += increm;                                               \
256   }
257
258 void find_structure(CanonImage *im, int *max_relevant_y_r) {
259   cim= im;
260   
261   Rect whole = { {0,0}, {cim->w-1,cim->h-1} };
262
263   if (DEBUGP(rect)) {
264     int xscaleunit, y,x;
265     for (y=0, xscaleunit=1; y<4; y++, xscaleunit*=10) {
266       fprintf(debug,"     ");
267       for (x=0; x<=cim->w; x++) {
268         if (x % xscaleunit) fputc(' ',debug);
269         else fprintf(debug,"%d",(x / xscaleunit)%10);
270       }
271       fputc('\n',debug);
272     }
273   }
274
275   Point mainr_tl= START_MAIN;
276   mainr.tl= mainr_tl;
277   WALK_UNTIL_MUST(mainr.tl, y,-1, whole.tl.y, ' ');
278   mainr.br= mainr.tl;
279
280   WALK_UNTIL_MUST(mainr.tl, x,-1, whole.tl.x, '*');
281   WALK_UNTIL_MUST(mainr.tl, y,-1, whole.tl.y, '*');
282   WALK_UNTIL_MUST(mainr.br, x,+1, whole.br.x, '*');
283   WALK_UNTIL_MUST(mainr.br, y,+1, whole.br.y, '*');
284
285   REQUIRE_RECTANGLE(mainr.tl.x-1, mainr.tl.y, mainr.tl.x-1, mainr.br.y, "*");
286   REQUIRE_RECTANGLE(mainr.br.x+1, mainr.tl.y, mainr.br.x+1, mainr.br.y, "*");
287   REQUIRE_RECTANGLE(mainr.tl.x, mainr.tl.y-1, mainr.br.x, mainr.tl.y-1, "*");
288   REQUIRE_RECTANGLE(mainr.tl.x, mainr.br.y+1, mainr.br.x, mainr.br.y+1, "*");
289
290 #define CHECK_STRIP_BORDER(tlbr,xy,increm)              \
291   do {                                                  \
292     Point csb_p;                                        \
293     Rect csb_r;                                         \
294     csb_p= mainr.tl;                                    \
295     csb_p.xy= mainr.tlbr.xy;                            \
296     if (get_p(csb_p)=='+') {                            \
297       csb_r= mainr;                                     \
298       csb_r.tl.xy= csb_p.xy;                            \
299       csb_r.br.xy= csb_p.xy;                            \
300       require_rectangle_r(csb_r, "+", __LINE__);        \
301       mainr.tlbr.xy += increm;                          \
302     }                                                   \
303   } while(0)
304
305   debug_rect("mainr",0, mainr);
306
307   CHECK_STRIP_BORDER(tl,x,+1);
308   CHECK_STRIP_BORDER(tl,y,+1);
309   CHECK_STRIP_BORDER(br,x,-1);
310   CHECK_STRIP_BORDER(br,y,-1);
311
312   debug_rect("mainr",1, mainr);
313
314   Rect updown= {START_MAIN,START_MAIN};
315   const int chkw= 100;
316   updown.br.x += chkw-1;
317   updown.br.y++;
318   debug_rect("updown",__LINE__,updown);
319
320   ADJUST_BOX(updown, "+", >=,chkw, mainr.tl.y,   MUST, tl,y,-1);
321   debug_rect("updown",__LINE__,updown);
322   updown.br.y= updown.tl.y;
323   updown.tl.y= updown.tl.y-1;
324
325   ADJUST_BOX(updown, "+*",>=,chkw, mainr.tl.y-1, MUST, tl,y,-1);
326   debug_rect("updown",__LINE__,updown);
327
328   commbasey= updown.tl.y + 1;
329   comminty= updown.br.y - updown.tl.y;
330
331   Rect across= {{ mainr.tl.x - 1, commbasey              },
332                 { mainr.tl.x,     commbasey + comminty-2 }};
333   int colno=0;
334   for (;;) {
335
336 #define LIMIT_QUITEQ(cond,mp) { if (!(cond)) break; }
337     debug_rect("across",colno*1000000+__LINE__, across);
338     ADJUST_BOX(across, "+",>=,comminty-1, mainr.br.x, LIMIT_QUITEQ, br,x,+1);
339     debug_rect("across",colno*1000000+__LINE__, across);
340
341     MUST( colno < MAX_COLUMNS, MI(colno);MR(across);MR(mainr);MI(commbasey); );
342     int colrx= across.br.x-1;
343     if (colrx >= mainr.br.x) colrx= mainr.br.x;
344     if (colno < INTERESTING_COLUMNS)
345       colrightx[colno]= colrx;
346       
347     colno++;
348     
349     if (across.br.x >= mainr.br.x)
350       break;
351
352     REQUIRE_RECTANGLE(across.br.x,mainr.tl.y, across.br.x,mainr.br.y, "+");
353     across.br.x++;
354   }
355   MUST( colno >= MIN_COLUMNS, MI(colno);MR(mainr);MR(across); );
356
357 #define SET_ONCE(var,val) do{                                           \
358     int v= (val);                                                       \
359     if ((var)==-1) (var)= v;                                            \
360     else MUST( (var) == v, MSB(#var);MI((var));MI(v);MR(mainr); );      \
361   }while(0)
362
363   SET_ONCE(columns, colno);
364   SET_ONCE(text_h, comminty - 1);
365   if (max_relevant_y_r)
366     SET_ONCE(*max_relevant_y_r, mainr.br.y + 10);
367
368   MUST( text_h <= OCR_MAX_H, MI(text_h) );
369 }                   
370
371 void check_correct_commodities(void) {
372   Rect search= { { 50,39 }, { 130,59 } };
373
374   ADJUST_BOX(search,"_",>=,10, cim->h, MUST, tl,y,+1);
375   ADJUST_BOX(search,"_",>=,10, 0,      MUST, br,y,-1);
376
377   debug_rect("commodselr",1, search);
378
379   static const char *all_small[]= {
380     "   ___________________________________   ",
381     "  ________X____X__X____________________  ",
382     " ________ X___ X_ X_____XXXXXXXXXXX_____ ",
383     "_________X_X__ X_ X______XXXXXXXXX_______",
384     "________ X X__ X_ X_______XXXXXXX________",
385     "________X_ _X_ X_ X________XXXXX_________",
386     "_______ X__ X_ X_ X_________XXX__________",
387     "_______XXXXXXX X_ X__________X___________",
388     " _____ X     X X_ X______________________",
389     "  ____X_____ _XX_ X______________________",
390     "   __ _______  __ ______________________ ",
391   };
392   static const char *all_big[]= {
393     "???_______________________________________???",
394     "??_________________________________________??",
395     "?_________X______X___X______________________?",
396     "_________?X_____?X__?X______XXXXXXXXXXX______",
397     "_________X_X____?X__?X_______XXXXXXXXX_______",
398     "________?X?X____?X__?X________XXXXXXX________",
399     "________X_?_X___?X__?X_________XXXXX_________",
400     "_______?X__?X___?X__?X__________XXX__________",
401     "_______?XXXXX___?X__?X___________X___________",
402     "_______X????_X__?X__?X_______________________",
403     "?_____?X____?X__?X__?X_______________________",
404     "??____X_____?_X_?X__?X_______________________",
405     "???__?_______?__?___?_______________________?",
406   };
407
408 #define COMMOD_SELECTOR_MATCHES(all)                            \
409   commod_selector_matches(search, all,                          \
410                           sizeof((all))/sizeof((all)[0]),       \
411                           strlen((all)[0]))
412
413   if (!(COMMOD_SELECTOR_MATCHES(all_small) ||
414         COMMOD_SELECTOR_MATCHES(all_big)))
415     fatal("Commodities selector not set to `All'.");
416 }
417
418 CanonImage *alloc_canon_image(int w, int h) {
419   CanonImage *im= mmalloc(sizeof(CanonImage) + w*h);
420   im->w= w;
421   im->h= h;
422   memset(im->d,'?',w*h);
423   return im;
424 }
425
426 static void file_read_image_ppm(FILE *f) {
427   struct pam inpam;
428   unsigned char rgb_buf[3];
429   CanonImage *im;
430
431   pnm_readpaminit(f, &inpam, sizeof(inpam));
432   if (!(inpam.maxval == 255 &&
433         inpam.bytes_per_sample == 1 &&
434         inpam.format == RPPM_FORMAT))
435     fatal("PNM screenshot(s) file must be 8bpp 1 byte-per-sample RGB raw");
436
437   CANONICALISE_IMAGE(im, inpam.width, inpam.height, {
438     int rr= fread(&rgb_buf,1,3,f);
439     sysassert(!ferror(f));
440     if (rr!=3) fatal("PNM screenshot(s) file ends unexpectedly");
441
442     r= rgb_buf[0];
443     g= rgb_buf[1];
444     b= rgb_buf[2];
445   });
446
447   sysassert(!ferror(screenshot_file));
448
449   if (!(npages < MAX_PAGES))
450     fatal("Too many images in screenshots file; max is %d.\n", MAX_PAGES);
451
452   page_images[npages++]= im;
453 }
454
455 void read_one_screenshot(void) {
456   progress("reading screenshot...");
457   file_read_image_ppm(screenshot_file);
458   progress_log("read screenshot.");
459 }
460
461 void read_screenshots(void) {
462   struct stat stab;
463   
464   sysassert(! fstat(fileno(screenshot_file), &stab) );
465   
466   for (;;) {
467     if (S_ISREG(stab.st_mode)) {
468       long pos= ftell(screenshot_file);
469       if (pos == stab.st_size) break;
470     } else {
471       int c= fgetc(screenshot_file);
472       if (c==EOF) break;
473       ungetc(c, screenshot_file);
474     }
475     progress("reading screenshot %d...",npages);
476     file_read_image_ppm(screenshot_file);
477   }
478   sysassert(!ferror(screenshot_file));
479   progress_log("read %d screenshots.",npages);
480 }
481
482 static double find_aa_density(const RgbImage *ri, Point p, long background,
483                               long foreground, int fg_extra) {
484   Rgb here= ri_rgb(ri, p.x, p.y);
485
486   double alpha[3], alpha_mean=0;
487   int i;
488   for (i=0; i<3; i++) {
489     unsigned char here_chan= here       >> (i*8);
490     unsigned char bg_chan=   background >> (i*8);
491     unsigned char fg_chan=   foreground >> (i*8);
492     double alpha_chan=
493       ((double)here_chan    - (double)bg_chan) /
494       ((fg_chan + fg_extra) - (double)bg_chan);
495     alpha[i]= alpha_chan;
496     alpha_mean += alpha_chan * (1/3.0);
497   }
498
499   double thresh= 1.5/AAMAXVAL;
500   double alpha_min= alpha_mean - thresh;
501   double alpha_max= alpha_mean + thresh;
502   for (i=0; i<3; i++)
503     MUST( alpha_min <= alpha[i] && alpha[i] <= alpha_max,
504           MP(p);
505           MRGB(here);MRGB(background);MRGB(foreground);MI(fg_extra);
506           MF(alpha_min); MI(i);MF(alpha[i]);MF(alpha_max) );
507
508   if (   -1e-5 <  alpha_mean && alpha_mean <= 0.0     ) alpha_mean= 0.0;
509   if (1.0      <= alpha_mean && alpha_mean <= 1.0+1e-5) alpha_mean= 1.0;
510
511   MUST( 0 <= alpha_mean &&
512         (fg_extra ? (alpha_mean < 0.999) : (alpha_mean <= 1.0)),
513         MP(p);
514         MRGB(here);MRGB(background);MRGB(foreground);MI(fg_extra);
515         MF(alpha_mean); MF(alpha[0]);MF(alpha[1]);MF(alpha[2]); );
516
517   return alpha_mean;
518 }
519
520 static void find_commodity(int offset, Rect *rr) {
521   /* rr->tl.x==-1 if offset out of range */
522   rr->tl.y= commbasey - offset*comminty;
523   rr->br.y= rr->tl.y + comminty-2;
524   if (rr->tl.y < mainr.tl.y || rr->br.y > mainr.br.y) { rr->tl.x=-1; return; }
525   
526   rr->tl.x= mainr.tl.x;
527   rr->br.x= mainr.br.x;
528
529   if (rr->tl.y > mainr.tl.y)
530     REQUIRE_RECTANGLE(rr->tl.x,rr->tl.y-1, rr->br.x,rr->tl.y-1, "+");
531   if (rr->br.y < mainr.tl.y)
532     REQUIRE_RECTANGLE(rr->tl.x,rr->br.y+1, rr->br.x,rr->br.y+1, "+");
533 }
534
535 static void find_table_entry(Rect commod, int colno, Rect *cell) {
536   cell->tl.y= commod.tl.y;
537   cell->br.y= commod.br.y;
538   cell->tl.x= !colno ? commod.tl.x : colrightx[colno-1]+2;
539   cell->br.x=                        colrightx[colno];
540   debug_rect("cell", colno, *cell);
541
542   const RgbImage *ri= cim->rgb;
543   
544   Rgb background;
545   unsigned char chanbg[3];
546   long bg_count=0, light_count=0, dark_count=0;
547   Point p;
548
549   background= ri_rgb(ri, cell->br.x, cell->br.y);
550   memcpy(chanbg, RI_PIXEL(ri, cell->br.x, cell->br.y), 3);
551
552   FOR_P_RECT(p,*cell) {
553     const unsigned char *here_pixel= RI_PIXEL(ri, p.x, p.y);
554     int i;
555     for (i=0; i<3; i++) {
556       unsigned here= here_pixel[i];
557       if (here == chanbg[i]) bg_count++;
558       else if (here < chanbg[i]) dark_count  += (chanbg[i] - here)/4 + 1;
559       else if (here > chanbg[i]) light_count += (here - chanbg[i])/4 + 1;
560     }
561   }
562   long total_count= RECT_W(*cell) * RECT_H(*cell) * 3;
563
564   MUST( bg_count > total_count / 2,
565         MR(*cell);MIL(total_count);MIL(bg_count);
566         MIL(light_count);MIL(dark_count) );
567
568   if (bg_count == total_count)
569     return;
570
571   Rgb foreground;
572   double fg_extra;
573
574   if (light_count/16 > dark_count) {
575     foreground= 0xffffffU;
576     fg_extra= +1;
577   } else if (dark_count/16 > light_count) {
578     foreground= 0;
579     fg_extra= -1;
580   } else {
581     MUST( !"tell light from dark",
582           MR(*cell);MIL(total_count);MIL(bg_count);
583           MIL(light_count);MIL(dark_count);MRGB(background); );
584   }
585
586   debugf("TABLEENTRY col=%d %d,%d..%d,%d bg=%ld light=%ld dark=%ld\n",
587          colno, cell->tl.x,cell->tl.y, cell->br.x,cell->br.y,
588          bg_count, light_count, dark_count);
589   
590   int monochrome= 1;
591
592   FOR_P_RECT(p,*cell) {
593     double alpha= find_aa_density(ri,p,background,foreground,fg_extra);
594
595     int here_int= floor((AAMAXVAL+1)*alpha);
596     assert(here_int <= AAMAXVAL);
597     if (!(here_int==0 || here_int==AAMAXVAL)) monochrome=0;
598     cim->d[p.y * cim->w + p.x]= '0' + here_int;
599   }
600
601   debug_rect("cell0M", colno, *cell);
602
603   require_rectangle_r(*cell, "0123456789", __LINE__);
604 }
605
606 static void ocr_rectangle(Rect r, const OcrCellType ct, FILE *tsv_output) {
607   OcrResultGlyph *results, *res;
608
609   int w= r.br.x - r.tl.x + 1;
610   Pixcol cols[w+1];
611   int x,y;
612   for (x=0; x<w; x++) {
613     FILLZERO(cols[x]);
614     for (y=0; y<text_h; y++) {
615       Point here= { x+r.tl.x, y+r.tl.y };
616       int pixel= get_p(here);
617       if (pixel==' ') pixel= '0';
618       MUST( pixel >= '0' && pixel <= '0'+AAMAXVAL,
619             MC(pixel);MP(here);MSB(ocr_celltype_name(ct));MR(r); );
620       pixcol_p_add(&cols[x], y, pixel-'0');
621     }
622   }
623   FILLZERO(cols[w]);
624
625   results= ocr(rd,ct,w,cols);
626   for (res=results; res->s; res++)
627     fputs(res->s,tsv_output);
628 }
629
630 void analyse(FILE *tsv_output) {
631   Rect thisr, entryr;
632   int page, tryrect, colno;
633
634   for (page=0; page<npages; page++) {
635     find_structure(page_images[page], 0);
636
637     if (!page)
638       check_correct_commodities();
639
640     if (!rd)
641       rd= ocr_init(text_h);
642
643     progress("Scanning page %d...",page);
644
645     for (tryrect= +cim->h; tryrect >= -cim->h; tryrect--) {
646       find_commodity(tryrect, &thisr);
647       if (thisr.tl.x < 0)
648         continue;
649       debug_rect("commod",tryrect, thisr);
650
651       const char *tab= "";
652       for (colno=0; colno<columns; colno++) {
653         find_table_entry(thisr,colno,&entryr);
654         fputs(tab, tsv_output);
655         ocr_rectangle(entryr,
656                       colno<TEXT_COLUMNS
657                       ? &ocr_celltype_text
658                       : &ocr_celltype_number,
659                       tsv_output);
660         tab= "\t";
661       }
662       fputs("\n", tsv_output);
663       sysassert(!ferror(tsv_output));
664       sysassert(!fflush(tsv_output));
665     }
666   }
667   progress("Commodity table scan complete.");
668 }
669
670 //static Rect islandnamer;
671
672 DEBUG_DEFINE_SOME_DEBUGF(structcolon,colondebugf)
673
674 Rect find_sunshine_widget(void) {
675   Rect sunshiner;
676
677   sunshiner.tl.x= cim->w - 1034 +  885;
678   sunshiner.br.x= cim->w - 1034 + 1020;
679   sunshiner.tl.y= 227;
680   sunshiner.br.y= 228;
681
682   ADJUST_BOX(sunshiner,"o*",>=,30, 100,MUST, tl,y,-1);
683   ADJUST_BOX(sunshiner,"o*",>=,30, 100,MUST, br,y,+1);
684   debug_rect("sunshiner",0, sunshiner);
685
686   MUST(sunshiner.br.y - sunshiner.tl.y > 20, MR(sunshiner));
687   sunshiner.br.y--;
688
689   ADJUST_BOX(sunshiner,"o",>=,20, (cim->w - 1034 + 700), MUST, tl,x,-1);
690   ADJUST_BOX(sunshiner,"o",>=,20,  cim->w,               MUST, br,x,+1);
691   debug_rect("sunshiner",1, sunshiner);
692   return sunshiner;
693 }
694
695 void find_islandname(void) {
696   find_structure(page_images[0], 0);
697
698   RgbImage *ri= alloc_rgb_image(page_images[0]->rgb->w,
699                                 page_images[0]->rgb->h);
700   memcpy(ri->data, page_images[0]->rgb->data, ri->w * ri->h * 3);
701   
702   Rect sunshiner= find_sunshine_widget();
703   char sunshine[MAXIMGIDENT], archisland[MAXIMGIDENT];
704
705   const unsigned char *srcp;
706   unsigned char *destp, *endp;
707   for (srcp=page_images[0]->rgb->data, destp=ri->data,
708          endp= ri->data + 3 * ri->w * ri->h;
709        destp < endp;
710        srcp++, destp++) {
711     unsigned char c= *srcp & 0xf0;
712     *destp= c | (c>>4);
713   }
714
715   identify_rgbimage(ri, sunshiner, sunshine, "sunshine widget");
716   
717   if (!memcmp(sunshine,"Vessel ",5)) {
718     Rect islandnamer;
719     
720     islandnamer.tl.x= cim->w - 1034 +  885;
721     islandnamer.br.x= cim->w - 1034 + 1020;
722     islandnamer.tl.y=                 128;
723     islandnamer.br.y=                 156;
724
725     ADJUST_BOX(islandnamer,"o",>=,5, 0,      MUST, tl,y,+1);
726     ADJUST_BOX(islandnamer,"o",>=,5, cim->h, MUST, br,y,-1);
727
728     ADJUST_BOX(islandnamer,"o",>=,1, 0,      MUST, tl,x,+1);
729     ADJUST_BOX(islandnamer,"o",>=,1, cim->w, MUST, br,x,-1);
730
731     debug_rect("islandnamer",0, islandnamer);
732 //    int larger_islandnamebry= islandnamer.tl.y + 25;
733 //    MUST(islandnamer.br.y < larger_islandnamebry,
734 //       MR(islandnamer);MI(larger_islandnamebry));
735 //    islandnamer.br.y = larger_islandnamebry;
736     debug_rect("islandnamer",1, islandnamer);
737
738     int x,y,i;
739     for (x=islandnamer.tl.x; x<=islandnamer.br.x; x++)
740       for (y=islandnamer.tl.y; y<=islandnamer.br.y; y++) {
741         if (RI_PIXEL(ri,x,y)[0] < 0x40) {
742           for (i=0; i<3; i++) {
743             RI_PIXEL(ri,x,y)[i]= 0;
744           }
745         }
746       }
747
748     identify_rgbimage(ri, islandnamer, archisland, "island");
749   } else if (!strcmp(sunshine,"Land - Ahoy!")) {
750     Rect islandnamer;
751
752     islandnamer.tl.x= (sunshiner.tl.x + sunshiner.br.x) / 2;
753     islandnamer.tl.y= sunshiner.tl.y + 100;
754     islandnamer.br= islandnamer.tl;
755     debug_rect("islandnamer",__LINE__, islandnamer);
756     
757     WALK_UNTIL_MUST(islandnamer.tl,y, -1, sunshiner.br.y, 'H');
758     WALK_UNTIL_MUST(islandnamer.tl,x, -1, 0,              'o');
759     WALK_UNTIL_MUST(islandnamer.br,x, +1, cim->w,         'o');
760     debug_rect("islandnamer",__LINE__, islandnamer);
761
762 #define RW (RECT_W(islandnamer))
763 #define RH (RECT_H(islandnamer))
764
765     ADJUST_BOX(islandnamer,"O",>=,RW-4, cim->h, MUST,br,y,+1);
766     debug_rect("islandnamer",__LINE__, islandnamer);
767
768     islandnamer.br.y += 2;
769
770     ADJUST_BOX(islandnamer,"*",<,RW, cim->h, MUST,br,y,+1);
771     debug_rect("islandnamer",__LINE__, islandnamer);
772
773     islandnamer.tl.y= islandnamer.br.y-1;
774     islandnamer.br.y= islandnamer.br.y+1;
775     debug_rect("islandnamer",__LINE__, islandnamer);
776
777     ADJUST_BOX(islandnamer,"*",>=,RW, cim->h, MUST,br,y,+1);
778     debug_rect("islandnamer",__LINE__, islandnamer);
779
780     ADJUST_BOX(islandnamer,"*",<, RH, cim->w, MUST,tl,x,+1);
781     debug_rect("islandnamer",__LINE__, islandnamer);
782
783     MUST( RECT_H(islandnamer) <= 30, MR(islandnamer));
784
785     Point p;
786     int nspaces=1, might_be_colon=0;
787     uint32_t colon_pattern= 0;
788     p.y=-1;
789
790     for (p.x=islandnamer.br.x; p.x>islandnamer.tl.x; p.x--) {
791       colondebugf("structcolon: x=%4d nsp=%2d mbc=%d cp=%08"PRIx32" ",
792                   p.x, nspaces, might_be_colon, colon_pattern);
793
794       uint32_t pattern=0;
795       int runs[32], nruns=0;
796       runs[0]=0; runs[1]=0;
797       
798       for (p.y=islandnamer.tl.y; p.y<=islandnamer.br.y; p.y++) {
799         pattern <<= 1;
800         double alpha= find_aa_density(ri,p, 0xCCCCAA,0x002255,0);
801         if (alpha >= 0.49) {
802            runs[nruns]++;
803            pattern |= 1u;
804         } else {
805           if (runs[nruns]) {
806             nruns++;
807             runs[nruns]=0;
808           }
809         }
810       }
811
812       colondebugf(" pat=%08"PRIx32" nruns=%d runs[]={%d,%d..} ",
813                   pattern, nruns, runs[0],runs[1]);
814
815       if (!pattern) {
816         if (might_be_colon)
817           /* omg it _is_ a colon */
818           goto colon_found;
819         nspaces++;
820         might_be_colon=0;
821       } else {
822         if (nruns==2 && runs[1]==runs[0]) {
823           if (!nspaces) {
824             if (pattern==colon_pattern)
825               goto ok_might_be_colon;
826           } else if (nspaces>=2) {
827             colon_pattern= pattern;
828             might_be_colon=1;
829             goto ok_might_be_colon;
830           }
831         } else if (nruns==1 && runs[0]==1 && might_be_colon) {
832           goto colon_found;
833         }
834         might_be_colon=0;
835       ok_might_be_colon:
836         nspaces= 0;
837       }
838       colondebugf(" nsp=%2d mbc=%d\n", nspaces, might_be_colon);
839     }
840     MUST(!"colon found", MP(p);MR(islandnamer) );
841
842   colon_found:
843     colondebugf(" found\n");
844     islandnamer.br.x= p.x;
845
846     identify_rgbimage(ri, islandnamer, archisland, "island");
847   } else {
848
849     MUST(!"sunshine shows ship or ahoy", MS(sunshine) );
850
851   }
852
853   char *delim= strstr(archisland," - ");
854   assert(delim);
855   archipelago= masprintf("%.*s", (int)(delim-archisland), archisland);
856   island= masprintf("%s", delim+3);
857
858 }