1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
* This file is part of Freecell Solver. It is subject to the license terms in
* the COPYING.txt file found in the top-level directory of this distribution
* and at http://fc-solve.shlomifish.org/docs/distro/COPYING.html . No part of
* Freecell Solver, including this file, may be copied, modified, propagated,
* or distributed except according to the terms contained in the COPYING file.
*
* Copyright (c) 2000 Shlomi Fish
*/
// summarizing_solver.c - solves several indices of deals and prints a summary
// of the solutions of each one.
#include "freecell-solver/fcs_cl.h"
#include "range_solvers_gen_ms_boards.h"
#include "handle_parsing.h"
#include "try_param.h"
static void __attribute__((noreturn)) print_help(void)
{
printf("\n%s", "summary-fc-solve [deal1_idx] [deal2_idx] .. -- \n"
" [--variant variant_str] [fc-solve theme args]\n"
"\n"
"Attempts to solve several arbitrary deal indexes from the\n"
"Microsoft/Freecell Pro deals using the fc-solve's theme "
"and reports a\n"
"summary of their results to STDOUT\n");
exit(-1);
}
static long *mydeals = NULL;
static size_t num_deals = 0, max_num_deals = 0;
static inline void append(const long idx)
{
if (num_deals == max_num_deals)
{
mydeals = SREALLOC(mydeals, max_num_deals += 1000);
if (!mydeals)
{
fc_solve_err(
"Number of deals exceeded %ld!\n", (long)max_num_deals);
}
}
mydeals[num_deals++] = idx;
}
int main(int argc, char *argv[])
{
const char *variant = "freecell";
int arg = 1;
while (arg < argc && (strcmp(argv[arg], "--")))
{
if (!strcmp(argv[arg], "seq"))
{
if (++arg >= argc)
{
fc_solve_err("seq without args!\n");
}
const long start = atol(argv[arg]);
if (++arg >= argc)
{
fc_solve_err("seq without args!\n");
}
const long end = atol(argv[arg++]);
for (long deal = start; deal <= end; ++deal)
{
append(deal);
}
}
else if (!strcmp(argv[arg], "slurp"))
{
if (++arg >= argc)
{
fc_solve_err("slurp without arg!\n");
}
FILE *const f = fopen(argv[arg++], "rt");
if (!f)
{
fc_solve_err("Cannot slurp file!\n");
}
while (!feof(f))
{
long deal;
if (fscanf(f, "%ld", &deal) == 1)
{
append(deal);
}
}
fclose(f);
}
else
{
append(atol(argv[arg++]));
}
}
if (arg == argc)
{
fc_solve_err("No double dash (\"--\") after deals indexes!\n");
}
for (++arg; arg < argc; ++arg)
{
const char *param;
if ((param = TRY_P("--variant")))
{
if (strlen(variant = param) > 50)
{
fprintf(stderr, "--variant's argument is too long!\n");
print_help();
}
}
else
{
break;
}
}
void *const instance = simple_alloc_and_parse(argc, argv, arg);
const bool variant_is_freecell = (!strcmp(variant, "freecell"));
char buffer[2000];
for (size_t deal_idx = 0; deal_idx < num_deals; ++deal_idx)
{
const_AUTO(board_num, mydeals[deal_idx]);
if (variant_is_freecell)
{
get_board_l(board_num, buffer);
}
else
{
char command[1000];
sprintf(command, "make_pysol_freecell_board.py -F -t %ld %s",
board_num, variant);
FILE *const from_make_pysol = popen(command, "r");
fread(
buffer, sizeof(buffer[0]), COUNT(buffer) - 1, from_make_pysol);
pclose(from_make_pysol);
}
LAST(buffer) = '\0';
long num_moves;
const char *verdict;
switch (freecell_solver_user_solve_board(instance, buffer))
{
case FCS_STATE_SUSPEND_PROCESS:
num_moves = -1;
verdict = "Intractable";
break;
case FCS_STATE_IS_NOT_SOLVEABLE:
num_moves = -1;
verdict = "Unsolved";
break;
default:
#ifdef FCS_WITH_MOVES
num_moves = freecell_solver_user_get_moves_left(instance);
#else
num_moves = -1;
#endif
verdict = "Solved";
break;
}
printf("%ld = Verdict: %s ; Iters: %ld ; Length: %ld\n", board_num,
verdict, (long)freecell_solver_user_get_num_times_long(instance),
num_moves);
fflush(stdout);
freecell_solver_user_recycle(instance);
}
freecell_solver_user_free(instance);
free(mydeals);
return 0;
}
|