X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=modelchecker%2Fmain.c;h=d8d7e2323f285f52652872c1f1e1e9e4c3136fcd;hb=59b2b66a7c7b6585ebd30e8c530b9f826bcc70e9;hp=5e892113d2f8d5815b016859baac0ef67e96bb4e;hpb=7b58c6ef6de2382ed29f3e618d94b07a4b4f5791;p=mc1516pa.git diff --git a/modelchecker/main.c b/modelchecker/main.c index 5e89211..d8d7e23 100644 --- a/modelchecker/main.c +++ b/modelchecker/main.c @@ -1,8 +1,127 @@ #include +#include +#include +#include #include -int main(void){ - printf("Hello world!\n"); +#include "mc.h" +#include "sokoban.h" +#include "uthash.h" + +//Global variables +bool DEBUG = false; +strategy strat = HYBRID; + +void usage(char *prg) +{ + fprintf(stderr, + "Usage:\n" + "\t%s [opts] [FILE [FILE [...]]]\n" + "\n" + "Options:\n" + "\tAll strategies are mutually exclusive\n" + "\t-c coordinate based strategy\n" + "\t-o object based strategy\n" + "\t-y hybrid strategy\n" +// "\t-l LURD lURD verification strategy\n" +// "\t-r show all positions that are a valid solution\n" + "\n" + "\t-d enable verbose debug output\n" + "\t-h show this help\n" + "\n" + "Positional arguments:\n" + "\tFILE zero or more sokoban screens\n" + "\t when no file is specified stdin will be used\n", prg); +} + +void solve(FILE *inputstream) +{ + clock_t time_start_read, time_end_read; + clock_t time_start_encode, time_end_encode; + + time_start_read = clock(); + sokoban_screen *screen = parse_screen(inputstream); + if (screen == NULL) printf("Something went wrong...\n"); + sokoban_print(screen); + sokoban_free(screen); + //parse_screen(inputstream); + time_end_read = clock(); + + time_start_encode = clock(); + switch(strat){ + case COORD: + if(DEBUG) fprintf(stderr, "Encoding coordinate based\n"); + break; + case OBJECT: + if(DEBUG) fprintf(stderr, "Encoding object based\n"); + break; + case HYBRID: + if(DEBUG) fprintf(stderr, "Encoding hybrid based\n"); + break; + default: + fprintf(stderr, "Huh?"); + exit(2); + } + time_end_encode = clock(); + + // Future: SMC + fprintf(stderr, "Reading: %fs\n", + ((double) (time_end_read-time_start_read))/CLOCKS_PER_SEC); + fprintf(stderr, "Encoding: %fs\n", + ((double) (time_end_encode-time_start_encode))/CLOCKS_PER_SEC); +} + +int main(int argc, char **argv) +{ + int optchar; + + while((optchar = getopt(argc, argv, "cdhoy")) != -1){ + switch(optchar){ + case 'c': + strat = COORD; + if(DEBUG) fprintf(stderr, "Strategy changed to Coordinate based\n"); + break; + case 'd': + DEBUG = true; + if(DEBUG) fprintf(stderr, "Debug enabled\n"); + break; + case 'h': + usage(argv[0]); + return 0; + case 'o': + strat = OBJECT; + if(DEBUG) fprintf(stderr, "Strategy changed to Object based\n"); + break; + case 'y': + strat = HYBRID; + if(DEBUG) fprintf(stderr, "Strategy changed to Hybrid\n"); + break; + case '?': + if(isprint(optopt)){ + fprintf(stderr, "Unknown option `-%c'.\n", optopt); + } else { + fprintf(stderr, "Unknown option char `-\\x%x'.\n", optopt); + } + return 2; + default: + break; + } + } + + if(optind == argc){ + fprintf(stderr, "You have not specified a file, reading from stdin\n"); + solve(stdin); + } + + for(int filepathindex = optind; filepathindex < argc; filepathindex++){ + char *currentfilepath = argv[filepathindex]; + fprintf(stderr, "Processing: %s\n", currentfilepath); + FILE *currentfile = fopen(currentfilepath, "r"); + if(DEBUG) fprintf(stderr, "Opening file\n"); + solve(currentfile); + if(DEBUG) fprintf(stderr, "Closing file\n"); + fclose(currentfile); + } return 0; }