X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-test.git;a=blobdiff_plain;f=pctb%2Fconvert.h;h=07c3a6ffaf366759da1e8fbf9bf5dd2e7b6271ce;hp=d39626926725eab5d6869c7f0cf41437c00d0d00;hb=9c4e6ae34ea06c776ebbf5410f7bc1ce78edad2f;hpb=a628ba6e81f90a4ebc632731bc5e39ca5daae7fb diff --git a/pctb/convert.h b/pctb/convert.h index d396269..07c3a6f 100644 --- a/pctb/convert.h +++ b/pctb/convert.h @@ -1,7 +1,34 @@ +/* + * general header file for ypp-commodities + */ +/* + * This is part of ypp-sc-tools, a set of third-party tools for assisting + * players of Yohoho Puzzle Pirates. + * + * Copyright (C) 2009 Ian Jackson + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Yohoho and Puzzle Pirates are probably trademarks of Three Rings and + * are used without permission. This program is not endorsed or + * sponsored by Three Rings. + */ + #ifndef CONVERT_H #define CONVERT_H - +#include "common.h" #include "ocr.h" #include @@ -11,25 +38,87 @@ #include +/*----- from rgbimage.c -----*/ + +#define MAXIMGIDENT 100 + +typedef struct RgbImage { + int w, h; + unsigned char data[]; + /* red = data[ y*w*3 + x*3 + 0 ] = RI_PIXEL(ri,x,y)[0] + * green = data[ y*w*3 + x*3 + 1 ] = RI_PIXEL(ri,x,y)[1] + * blue = data[ y*w*3 + x*3 + 2 ] = RI_PIXEL(ri,x,y)[2] + */ +} RgbImage; + +typedef unsigned long Rgb; + +void identify_rgbimage(const RgbImage *base, Rect portion, + char result[MAXIMGIDENT], const char *what); +RgbImage *alloc_rgb_image(int w, int h); +void fwrite_ppmraw(FILE *f, const RgbImage *ri); + +#define RI_PIXEL(ri,x,y) ((ri)->data + ((y)*(ri)->w + (x)) * 3) + +static inline Rgb ri_rgb(const RgbImage *ri, int x, int y) { + const unsigned char *rip= RI_PIXEL(ri,x,y); + return (rip[0] << 16) | + (rip[1] << 8) | + (rip[2] ); +} + /*----- from structure.c -----*/ -void find_structure(CanonImage *im); +void find_structure(CanonImage *im, int *max_relevant_y_r); +Rect find_sunshine_widget(void); + +void find_islandname(RgbImage *ri); +void check_correct_commodities(void); void read_screenshots(void); void read_one_screenshot(void); -void analyse(void); +void analyse(FILE *tsv_output); /*----- from convert.c -----*/ -extern FILE *screenshots_file; +extern FILE *screenshot_file; +extern void fetch_with_rsync(const char *stem); + +void vwarning(const char *fmt, va_list) FMT(1,0); +void warning(const char *fmt, ...) FMT(1,2); + +void vprogress(const char *fmt, va_list) FMT(1,0); +void progress(const char *fmt, ...) FMT(1,2); + +void vprogress_log(const char *fmt, va_list) FMT(1,0); +void progress_log(const char *fmt, ...) FMT(1,2); + +void vprogress_spinner(const char *fmt, va_list) FMT(1,0); +void progress_spinner(const char *fmt, ...) FMT(1,2); + +enum flags { + ff_singlepage= 000002, + ff_testservers= 000004, -void vprogress(const char *fmt, va_list); -void progress(const char *fmt, ...); + ff_charset_edit= 000010, + ff_charset_allowedit= 000020, + ff_charset_havelocal= 000040, + ffm_charset= 000070, + + ff_dict_fetch= 000100, + ff_dict_submit= 000200, + ff_dict_pirate= 000400, + ffs_dict= 000700, -void vprogress_log(const char *fmt, va_list); -void progress_log(const char *fmt, ...); + ff_needisland= 001000, + ff_printisland= 002000, + ff_upload= 004000, + ffs_printisland= 003000, + ffs_upload= 005000, +}; +extern enum flags o_flags; -void vprogress_spinner(const char *fmt, va_list); -void progress_spinner(const char *fmt, ...); +extern const char *o_ocean, *o_pirate; +extern int o_quiet; /*----- from pages.c -----*/ @@ -43,7 +132,8 @@ void take_one_screenshot(void); extern CanonImage *page_images[MAX_PAGES]; extern int npages; -extern char *ocean, *pirate; +extern const char *ocean, *pirate; +extern char *archipelago, *island; #endif /*CONVERT_H*/