X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=blobdiff_plain;f=pctb%2Fconvert.h;h=7a9e252511942ff899afafce277877f786b4477f;hp=d39626926725eab5d6869c7f0cf41437c00d0d00;hb=a2a2f9d982ee233f3d89fb7137f532c9eec3b97c;hpb=a628ba6e81f90a4ebc632731bc5e39ca5daae7fb diff --git a/pctb/convert.h b/pctb/convert.h index d396269..7a9e252 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 @@ -13,23 +40,26 @@ /*----- from structure.c -----*/ -void find_structure(CanonImage *im); +void find_structure(CanonImage *im, int *max_relevant_y_r); 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; + +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); -void progress(const char *fmt, ...); +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); -void progress_log(const char *fmt, ...); +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); -void progress_spinner(const char *fmt, ...); +void vprogress_spinner(const char *fmt, va_list) FMT(1,0); +void progress_spinner(const char *fmt, ...) FMT(1,2); /*----- from pages.c -----*/