X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.main.git;a=blobdiff_plain;f=yarrg%2Frscommon.h;h=237cab1347d8006ed63587529fd61f442a34acb9;hp=0933e0fecc9565b2368ebb0d3f4b55284aff5f6b;hb=3a24aecf857292701d755173ffdb91d10a3426c8;hpb=706d75804688b94f51b806adc44f10269c35b0db diff --git a/yarrg/rscommon.h b/yarrg/rscommon.h index 0933e0f..237cab1 100644 --- a/yarrg/rscommon.h +++ b/yarrg/rscommon.h @@ -1,3 +1,30 @@ +/* + * Route searcher - common definitions + */ +/* + * This is part of the YARRG website, a tool 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 Affero 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero 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 RSCOMMON_H #define RSCOMMON_H @@ -7,16 +34,24 @@ DF(sql) \ DF(sql2) \ DF(value) \ + DF(value2) \ DF(search) \ DF(filter) \ DF(check) \ + DF(tableau) \ DF(lp) -#define debug stdout -#define DEBUG_DEV "/dev/stdout" +//#define debug_flags 0 + +#define debug debug_file #include "common.h" +extern FILE *debug_file; +#define DEBUG_DEV "/dev/stdout" /* just for glpk */ + + +#define GRANUS 3 #define COUNTER_LIST \ CTR(commodities_loaded) \ @@ -25,26 +60,29 @@ CTR(ipairs_relevant) \ CTR(quantities_loaded) \ CTR(routes_considered) \ + CTR(routes_wrongfinalelim) \ CTR(routes_quickelim) \ - CTR(routes_stratelim) \ + CTR(routes_bucketelim) \ CTR(routes_valued) \ - CTR(newbests_strat_absolute) \ - CTR(newbests_strat_perleague) \ + CTR(routes_wrongfinal) \ + CTRA(newbests_granu,GRANUS*2) \ CTR(subroute_tails_valued) \ CTR(subroutes_valued) \ CTR(subroutes_nonempty) -#define CTR(x) extern int ctr_##x; +#define CTR(x) extern int ctr_##x; +#define CTRA(x,n) extern int ctr_##x[n]; COUNTER_LIST #undef CTR +#undef CTRA #define SQL_MUST( call ) ({ \ /* `call' is an expression returning result, using const char *sqe; \ * chk1 and chk2 are blocks using sqe and int sqr; */ \ const char *sql_must_call_string= #call; \ int sqr; \ - if (DEBUGP(sql2)) fprintf(stderr,"SQL %s", sql_must_call_string); \ + if (DEBUGP(sql2)) fprintf(debug,"SQL %s", sql_must_call_string); \ sqr= (call); \ - if (DEBUGP(sql2)) fprintf(stderr," = %d\n", sqr); \ + if (DEBUGP(sql2)) fprintf(debug," = %d\n", sqr); \ if (sqr) sql_fatal("(unknown)", sqr, sql_must_call_string); \ }) \ @@ -92,7 +130,7 @@ void sql_bind(sqlite3_stmt *ss, int index, int value, extern sqlite3 *db; -void setup_sql(void); +void setup_sql(const char *database); typedef struct { @@ -106,18 +144,28 @@ IslandPair *ipair_get_maybe(int si, int di); double value_route(int nislands, const int *islands, int exclude_arbitrage); void setup_value(void); +#define AP 2 /* 0=absolute, 1=perleague */ +#define A 0 +#define P 1 + typedef struct { - double absolute, perleague; - int absolute_ports[MAX_ROUTELEN], perleague_ports[MAX_ROUTELEN]; -} PotentialResult; + double value[AP]; + int length; + int ports[MAX_ROUTELEN]; +} OnePotentialResult; + +typedef struct { + OnePotentialResult prs[AP]; +} Bucket; void setup_search(void); -void search(int start_isle, PotentialResult ****strat_base_io - /* strat_base[finalarch][midarch]-> */); +void search(int start_isle, int final_isle /* -1 means any */, + Bucket ****buckets_base_io[GRANUS] + /* bucket_base[granui][finalthing][midthing]-> */); extern double max_mass, max_volu, max_capi; extern double distance_loss_factor_per_league; -extern int max_dist; +extern int max_dist, min_trade_maxprofit; #define LOSS_FACTOR_PER_DELAY_SLOT (1-1e-8) @@ -127,6 +175,11 @@ extern int narches; extern char **archnames; extern int *islandid2arch; +extern int granusz_fin[GRANUS], granusz_mid[GRANUS]; + + +extern FILE *output; + #define NEW(ptr) ((ptr)= mmalloc(sizeof(*ptr))) @@ -144,12 +197,12 @@ extern int *islandid2arch; typedef struct { double value; - PotentialResult *pr; + Bucket *bucket; } HighScoreEntry; -extern int nhighscores_absolute, nhighscores_perleague; -extern HighScoreEntry *highscores_absolute; -extern HighScoreEntry *highscores_perleague; +extern int granus; +extern int nhighscores[GRANUS][AP]; +extern HighScoreEntry *highscores[GRANUS][AP]; #define ONDEMAND(pointer_lvalue, calloc_size_count) \