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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
|
/* Copyright (c) 2000 Shlomi Fish
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
/*
* simpsim.c - a module that contains Simple Simon Moves.
*
*/
#define BUILDING_DLL 1
#include <stdio.h>
#include "config.h"
#include "simpsim.h"
#include "bool.h"
#include "scans.h"
/* This is a fallback in case this module is still compiled with
* FCS_DISABLE_SIMPLE_SIMON.
* */
#ifdef FCS_DISABLE_SIMPLE_SIMON
char fc_solve_simple_simon_nothing;
#else
#include "instance.h"
#include "meta_move_funcs_helpers.h"
#define fcs_is_ss_false_parent(parent, child) \
(fcs_card_rank(parent) == fcs_card_rank(child)+1)
#define fcs_suit_is_ss_true_parent(parent_suit, child_suit) \
((parent_suit) == (child_suit))
static GCC_INLINE const fcs_bool_t fcs_is_ss_suit_true(const fcs_card_t parent, const fcs_card_t child)
{
return fcs_suit_is_ss_true_parent(
fcs_card_suit(parent),fcs_card_suit(child)
);
}
static GCC_INLINE const fcs_bool_t fcs_is_ss_true_parent(const fcs_card_t parent, const fcs_card_t child)
{
return
(
fcs_is_ss_false_parent(parent, child) &&
fcs_is_ss_suit_true(parent, child)
);
}
#define STACK_SOURCE_LOOP_START(min_num_cards) \
for (int stack_idx=0 ; stack_idx < LOCAL_STACKS_NUM ; stack_idx++) \
{ \
const fcs_cards_column_t col = fcs_state_get_col(state, stack_idx); \
const int cards_num = fcs_col_len(col); \
if (cards_num < min_num_cards) \
{ \
continue; \
} \
#define STACK_SOURCE_LOOP_END() \
} \
#define STACK_DEST_LOOP_START(min_num_cards) \
for (int ds = 0 ; ds<LOCAL_STACKS_NUM ; ds++) \
{ \
if (ds == stack_idx) \
{ \
continue; \
} \
\
const fcs_cards_column_t dest_col = fcs_state_get_col(state, ds); \
const int dest_cards_num = fcs_col_len(dest_col); \
\
if (dest_cards_num < min_num_cards) \
{ \
continue; \
} \
#define STACK_DEST_LOOP_END() \
} \
#define DC_LOOP_START(offset, filter) \
for (int dc = dest_cards_num-offset ; dc >= 0 ; dc--) \
{ \
if (!filter(fcs_col_get_card(dest_col, dc), card)) \
{ \
continue; \
} \
#define DC_LOOP_END() \
}
#define DS_DC_LOOP_START(min_num_cards, offset, filter) \
STACK_DEST_LOOP_START(min_num_cards) \
DC_LOOP_START(offset, filter)
#define DS_DC_LOOP_END() \
DC_LOOP_END() \
STACK_DEST_LOOP_END()
#ifndef HARD_CODED_NUM_STACKS
#define SIMPS_SET_GAME_PARAMS() SET_GAME_PARAMS()
#else
#define SIMPS_SET_GAME_PARAMS()
#endif
#define SIMPS_define_accessors() \
tests_define_accessors(); \
SIMPS_SET_GAME_PARAMS()
#define SIMPS_define_vacant_stacks_accessors() \
SIMPS_define_accessors(); \
fcs_game_limit_t num_vacant_stacks = soft_thread->num_vacant_stacks
static char * get_the_positions_by_rank_data__ss_generator(
fc_solve_soft_thread_t * const soft_thread,
const fcs_state_t * const the_state
)
{
fc_solve_instance_t * const instance = soft_thread->hard_thread->instance;
SET_GAME_PARAMS();
#define FCS_SS_POS_BY_RANK_WIDTH (13+1)
#define FCS_SS_CELL_WIDTH 2
#define FCS_POS_BY_RANK_LEN ( FCS_SS_POS_BY_RANK_WIDTH * FCS_SS_CELL_WIDTH * 4 )
#define FCS_POS_BY_RANK_SIZE (sizeof(positions_by_rank[0]) * FCS_POS_BY_RANK_LEN)
#define FCS_POS_COL(rank, suit) positions_by_rank[((suit)*FCS_SS_POS_BY_RANK_WIDTH + (rank)) * FCS_SS_CELL_WIDTH]
#define FCS_POS_HEIGHT(rank, suit) positions_by_rank[((suit)*FCS_SS_POS_BY_RANK_WIDTH + (rank)) * FCS_SS_CELL_WIDTH + 1]
char * const positions_by_rank = SMALLOC(positions_by_rank, FCS_POS_BY_RANK_LEN);
memset(positions_by_rank, -1, FCS_POS_BY_RANK_SIZE);
for (int ds = 0 ; ds < LOCAL_STACKS_NUM ; ds++)
{
const fcs_const_cards_column_t dest_col = fcs_state_get_col(*the_state, ds);
const int dest_cards_num = fcs_col_len(dest_col);
for (int dc = 0 ; dc < dest_cards_num ; dc++)
{
const fcs_card_t card = fcs_col_get_card(dest_col, dc);
const int suit = fcs_card_suit(card);
const int rank = fcs_card_rank(card);
FCS_POS_COL(rank, suit) = ds;
FCS_POS_HEIGHT(rank, suit) = dc;
}
}
return positions_by_rank;
}
#define CALC_POSITIONS_BY_RANK() \
char * positions_by_rank = \
fc_solve_get_the_positions_by_rank_data( \
soft_thread, \
ptr_state_key, \
get_the_positions_by_rank_data__ss_generator \
)
#define STACKS_MAP_LEN MAX_NUM_STACKS
static GCC_INLINE void init_stacks_map(fcs_bool_t * const stacks_map, const int stack_idx, const int ds)
{
for (int i=0 ; i < STACKS_MAP_LEN ; i++)
{
stacks_map[i] = FALSE;
}
stacks_map[stack_idx] = stacks_map[ds] = TRUE;
}
typedef struct {
int num_separate_false_seqs;
int seq_points[MAX_NUM_CARDS_IN_A_STACK];
int junk_move_to_stacks[MAX_NUM_STACKS];
int after_junk_num_freestacks;
int above_num_true_seqs[MAX_NUM_CARDS_IN_A_STACK];
} sequences_analysis_t;
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_to_founds)
{
/*
* stack_idx - the stack index from which to move cards to the founds.
* cards_num - the number of cards in "stack"
* suit - the suit of the complete sequence
* a - the height of the card
* */
/*
* card - the current card (at height a)
* above_card - the card above it.
* */
SIMPS_define_accessors();
STACK_SOURCE_LOOP_START(13)
fcs_card_t card = fcs_col_get_card(col, cards_num-1);
/* Check if the top 13 cards are a sequence */
int a;
for (a=2 ; a<=13 ; a++)
{
const fcs_card_t above_card = fcs_col_get_card(col, cards_num-a);
if (! fcs_is_ss_true_parent(above_card, card))
{
break;
}
card = above_card;
}
if (a == 14)
{
/* We can move this sequence up there */
sfs_check_state_begin();
my_copy_stack(stack_idx);
fcs_cards_column_t new_src_col = fcs_state_get_col(
new_state, stack_idx
);
for (a=0 ; a<13 ; a++)
{
fcs_col_pop_top(new_src_col);
}
const int suit = fcs_card_suit(card);
fcs_set_foundation(new_state, suit, a);
fcs_move_stack_non_seq_push(moves,
FCS_MOVE_TYPE_SEQ_TO_FOUNDATION,
stack_idx, suit);
sfs_check_state_end();
}
STACK_SOURCE_LOOP_END()
return;
}
#define LOOK_FOR_TRUE_PARENT_with_ds_dc__START(card) \
if (fcs_card_rank(card) < 13) \
{ \
const int ds = FCS_POS_COL(fcs_card_rank(card)+1, fcs_card_suit(card)); \
\
if (ds != stack_idx) \
{ \
const int dc = FCS_POS_HEIGHT(fcs_card_rank(card)+1, fcs_card_suit(card)); \
const fcs_cards_column_t dest_col = fcs_state_get_col(state, ds); \
const int dest_cards_num = fcs_col_len(dest_col); \
#define LOOK_FOR_TRUE_PARENT_with_ds_dc__END() \
} \
} \
#define LOOK_FOR_TRUE_PARENT_AT_TOP__START(card) \
LOOK_FOR_TRUE_PARENT_with_ds_dc__START(card) \
if (dc == dest_cards_num - 1) \
{ \
#define LOOK_FOR_TRUE_PARENT_AT_TOP__END() \
} \
LOOK_FOR_TRUE_PARENT_with_ds_dc__END()
/*
* TODO:
*
* Convert to fc_solve_get_the_positions_by_rank_data.
* */
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_to_true_parent)
{
/*
* stack_idx - the source stack index on which the sequence currently
* resides.
* cards_num - the number of cards in "stack".
* suit - the suit of the current card
* a - a temporary variable that designates a card height
* h - the current height in stack
* card - the current card (at height h)
* above_card - the card above it.
* dest_card - the destination card on which to put the sequence
* rank - the rank (i.e: A, 2 ,3 ... K) of the card, or
* its previous one.
* num_true_seqs - the number of true sequences (i.e: sequences of a
* unified suit) in the source sequence.
* ds - the destination stack index.
* dest_cards_num - the number of cards in "ds".
* */
SIMPS_define_vacant_stacks_accessors();
CALC_POSITIONS_BY_RANK();
STACK_SOURCE_LOOP_START(1)
/* Loop on the cards in the stack and try to look for a true
* parent on top one of the stacks */
fcs_card_t card = fcs_col_get_card(col, cards_num-1);
int num_true_seqs = 1;
for (int h=cards_num-2 ; h>=-1 ; h--)
{
LOOK_FOR_TRUE_PARENT_AT_TOP__START(card)
/* This is a suitable parent - let's check if we
* have enough empty stacks to make the move feasible */
/* We can do it - so let's move */
sfs_check_state_begin();
my_copy_stack(stack_idx);
my_copy_stack(ds);
fcs_move_sequence(ds, stack_idx, h+1, cards_num-1);
sfs_check_state_end();
LOOK_FOR_TRUE_PARENT_AT_TOP__END()
/* Stop if we reached the bottom of the stack */
if (h == -1)
{
break;
}
const fcs_card_t prev_card = card;
card = fcs_col_get_card(col, h);
/* If this is no longer a sequence - move to the next stack */
if (!fcs_is_ss_false_parent(card, prev_card))
{
break;
}
if (!fcs_is_ss_suit_true(card, prev_card))
{
num_true_seqs++;
/* We can no longer perform the move so go to the next
* stack. */
if (calc_max_simple_simon_seq_move(num_vacant_stacks)
< num_true_seqs)
{
break;
}
}
}
STACK_SOURCE_LOOP_END()
}
static GCC_INLINE int get_seq_h(const fcs_cards_column_t col, int * num_true_seqs_out_ptr)
{
const int cards_num = fcs_col_len(col);
fcs_card_t card = fcs_col_get_card(col,cards_num-1);
int num_true_seqs = 1;
int h;
/* Stop if we reached the bottom of the stack */
for ( h=cards_num-2 ; h>-1 ; h--)
{
const fcs_card_t next_card = fcs_col_get_card(col, h);
/* If this is no longer a sequence - move to the next stack */
if (!fcs_is_ss_false_parent(next_card, card))
{
break;
}
if (!fcs_is_ss_suit_true(next_card, card))
{
num_true_seqs++;
}
card = next_card;
}
*num_true_seqs_out_ptr = num_true_seqs;
return h+1;
}
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_whole_stack_sequence_to_false_parent)
{
/*
* stack_idx - the source stack index
* cards_num - number of cards in "stack"
* ds - the dest stack index
* dest_cards_num - number of cards in "ds".
* card - the current card
* rank - its rank
* suit - its suit
* dest_card - the card at the top of "ds".
* h - the height of the current card on "stack"
* num_true_seqs - the number of true sequences on the current
* false sequence
* */
SIMPS_define_vacant_stacks_accessors();
STACK_SOURCE_LOOP_START(1)
int num_true_seqs;
int h = get_seq_h(col, &num_true_seqs);
/* This means that the loop exited prematurely and the stack does
* not contain a sequence. */
if ((h > 0)
|| (calc_max_simple_simon_seq_move(num_vacant_stacks) < num_true_seqs)
)
{
continue;
}
const fcs_card_t card = fcs_col_get_card(col, h);
STACK_DEST_LOOP_START(1)
const fcs_card_t dest_card =
fcs_col_get_card(dest_col, dest_cards_num-1);
if (!
(fcs_is_ss_false_parent(dest_card, card))
)
{
continue;
}
/* This is a suitable parent - let's check if we
* have enough empty stacks to make the move feasible */
/* We can do it - so let's move */
sfs_check_state_begin();
my_copy_stack(stack_idx);
my_copy_stack(ds);
fcs_move_sequence(ds, stack_idx, h, cards_num-1);
sfs_check_state_end();
STACK_DEST_LOOP_END()
STACK_SOURCE_LOOP_END()
return;
}
static GCC_INLINE void generic_populate_seq_points(
const fcs_cards_column_t dest_col,
const int dc,
sequences_analysis_t * const seqs,
const int dest_cards_num
)
{
int num_separate_false_seqs = seqs->num_separate_false_seqs;
seqs->above_num_true_seqs[num_separate_false_seqs] = 1;
fcs_card_t above_card = fcs_col_get_card(dest_col, dest_cards_num-1);
for (int above_c = dest_cards_num-2 ; above_c > dc ; above_c--)
{
const fcs_card_t up_above_card = fcs_col_get_card(dest_col, above_c);
if (! fcs_is_ss_false_parent(up_above_card, above_card))
{
seqs->seq_points[num_separate_false_seqs++] = above_c+1;
seqs->above_num_true_seqs[num_separate_false_seqs] = 1;
}
seqs->above_num_true_seqs[num_separate_false_seqs] +=
! fcs_is_ss_suit_true(up_above_card, above_card);
above_card = up_above_card;
}
if (dc <= dest_cards_num - 2)
{
seqs->seq_points[num_separate_false_seqs++] = dc+1;
}
seqs->num_separate_false_seqs = num_separate_false_seqs;
}
static GCC_INLINE void populate_seq_points(
const fcs_cards_column_t dest_col,
const int dc,
sequences_analysis_t * const seqs
)
{
seqs->num_separate_false_seqs = 0;
generic_populate_seq_points(dest_col, dc, seqs, fcs_col_len(dest_col));
}
static GCC_INLINE const fcs_bool_t generic_false_seq_index_loop(
const int stacks_num,
fcs_kv_state_t * const raw_ptr_state_raw,
int num_vacant_stacks,
const fcs_cards_column_t col,
sequences_analysis_t * const seqs,
const int stack_idx,
const int ds,
const fcs_bool_t behaviour_flag,
const fcs_bool_t should_src_col,
const fcs_card_t src_card,
const int num_src_junk_true_seqs
)
{
const int num_separate_false_seqs = seqs->num_separate_false_seqs;
fcs_bool_t stacks_map[STACKS_MAP_LEN];
init_stacks_map(stacks_map, stack_idx, ds);
int after_junk_num_freestacks = num_vacant_stacks;
const int false_seq_index_limit
= num_separate_false_seqs + (should_src_col ? 1 : 0);
int false_seq_index;
for (false_seq_index = 0 ;
false_seq_index < false_seq_index_limit ;
false_seq_index++)
{
const fcs_bool_t is_ultimate_iter =
(false_seq_index == num_separate_false_seqs);
/* Find a suitable place to put it */
const fcs_card_t the_card =
is_ultimate_iter
? src_card
: fcs_col_get_card(col, seqs->seq_points[false_seq_index]);
const int the_num_true_seqs =
is_ultimate_iter
? num_src_junk_true_seqs
: seqs->above_num_true_seqs[false_seq_index];
/* Let's try to find a suitable parent on top one of the stacks */
int clear_junk_dest_stack;
for(clear_junk_dest_stack=0;
clear_junk_dest_stack < stacks_num;
clear_junk_dest_stack++
)
{
const fcs_cards_column_t clear_junk_dest_col = fcs_state_get_col(state, clear_junk_dest_stack);
const int clear_junk_stack_len = fcs_col_len(clear_junk_dest_col);
if (! ((clear_junk_stack_len > 0) && (! stacks_map[clear_junk_dest_stack])))
{
continue;
}
const fcs_card_t clear_junk_dest_card = fcs_col_get_card(clear_junk_dest_col, clear_junk_stack_len-1);
if (fcs_is_ss_false_parent(clear_junk_dest_card, the_card))
{
if (calc_max_simple_simon_seq_move(after_junk_num_freestacks) >= the_num_true_seqs)
{
stacks_map[clear_junk_dest_stack] = TRUE;
break;
}
}
}
if (clear_junk_dest_stack == stacks_num)
{
/* Check if there is a vacant stack */
if (behaviour_flag || (!
(
(num_vacant_stacks > 0)
&&
(calc_max_simple_simon_seq_move(after_junk_num_freestacks-1) >= the_num_true_seqs)
)
))
{
break;
}
/* Find an empty stack and designate it as the destination for the junk */
for(
clear_junk_dest_stack = 0;
clear_junk_dest_stack < stacks_num;
clear_junk_dest_stack++
)
{
if ((fcs_col_len(fcs_state_get_col(state, clear_junk_dest_stack)) == 0) && (! stacks_map[clear_junk_dest_stack]))
{
stacks_map[clear_junk_dest_stack] = TRUE;
break;
}
}
after_junk_num_freestacks--;
}
seqs->junk_move_to_stacks[false_seq_index] = clear_junk_dest_stack;
}
seqs->after_junk_num_freestacks = after_junk_num_freestacks;
return (false_seq_index == false_seq_index_limit);
}
static GCC_INLINE const fcs_bool_t false_seq_index_loop(
const int stacks_num,
fcs_kv_state_t * const raw_ptr_state_raw,
int num_vacant_stacks,
const fcs_cards_column_t col,
sequences_analysis_t * const seqs,
const int stack_idx,
const int ds,
const fcs_bool_t behaviour_flag
)
{
return generic_false_seq_index_loop(
stacks_num, raw_ptr_state_raw, num_vacant_stacks,
col, seqs, stack_idx, ds,
behaviour_flag,
/* Params that should be ignored in this case. */
FALSE, fc_solve_empty_card, 0
);
}
#define IS_false_seq_index_loop(col, behavior_flag, stack_idx, ds) \
false_seq_index_loop( \
LOCAL_STACKS_NUM, \
raw_ptr_state_raw, \
num_vacant_stacks, \
col, \
&seqs, \
stack_idx, ds, \
behavior_flag \
)
#define POPULATE_AND_CHECK_IF_FALSE_SEQ(col, height, stack_idx, ds, behavior_flag) \
({ \
populate_seq_points(col, height, &seqs); \
IS_false_seq_index_loop(col, behavior_flag, stack_idx, ds); \
})
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_to_true_parent_with_some_cards_above)
{
/*
* stack - the source stack index
* cards_num - the number of cards in "stack"
* h - the height of the current card in "stack"
* card - the card in height "h"
* suit - its suit
* rank - its rank
* ds - the destionation stack index
* dest_cards_num - the number of cards in "ds"
* dc - the index of the current card in "ds".
* num_separate_false_seqs - this variable tells how many distinct false
* sequences exist above the true parent
* above_num_true_seqs[] - the number of true sequences in each false
* sequence
* seq_points[] - the separation points of the false sequences (i.e: where
* they begin and end)
* stacks_map[] - a boolean map that indicates if one can place a card
* on this stack or is it already taken.
* junk_move_to_stacks[] - the stacks to move each false sequence of the
* junk to.
* false_seq_index - an iterator to hold the index of the current false
* sequence.
* after_junk_num_freestacks - this variable holds the number of stacks
* that remained unoccupied during and after the process of moving
* the junk sequences to different stacks.
*
* */
SIMPS_define_vacant_stacks_accessors();
CALC_POSITIONS_BY_RANK();
STACK_SOURCE_LOOP_START(1)
fcs_card_t card = fcs_col_get_card(col, cards_num-1);
int num_true_seqs = 1;
for (int h=cards_num-2 ; h>=-1 ; h--)
{
fcs_card_t h_above_card;
fcs_bool_t should_search = TRUE;
fcs_bool_t should_increment_num_true_seqs = FALSE;
fcs_bool_t should_break = FALSE;
/* Stop if we reached the bottom of the stack */
if (h == -1)
{
should_break = TRUE;
}
else
{
h_above_card = fcs_col_get_card(col, h);
/* If this is no longer a sequence - move to the next stack */
if (! fcs_is_ss_false_parent(h_above_card, card))
{
should_break = TRUE;
}
else if ((should_search = (!fcs_is_ss_suit_true(h_above_card, card))))
{
should_increment_num_true_seqs = TRUE;
}
}
if (should_search)
{
LOOK_FOR_TRUE_PARENT_with_ds_dc__START(card)
/* This is a suitable parent - let's check if there's a sequence above it. */
/*
* above_c - the height of the card that is to be checked.
* above_card - the card at height above_c+1
* up_above_card - the card at height above_c
*
* */
sequences_analysis_t seqs;
if (
(
POPULATE_AND_CHECK_IF_FALSE_SEQ(dest_col, dc, stack_idx, ds, FALSE)
&&
(calc_max_simple_simon_seq_move(seqs.after_junk_num_freestacks) >= num_true_seqs)
)
)
{
/*
* We can do it - so let's move everything.
* Notice that we only put the child in a different stack
* then the parent and let it move to the parent in the
* next iteration of the program
* */
sfs_check_state_begin();
my_copy_stack(ds);
my_copy_stack(stack_idx);
/* Move the junk cards to their place */
for (int seq_index = 0;
seq_index < seqs.num_separate_false_seqs;
seq_index++
)
{
const int dest_index = seqs.junk_move_to_stacks[seq_index];
my_copy_stack(dest_index);
fcs_move_sequence(
dest_index,
ds,
seqs.seq_points[seq_index],
((seq_index == 0) ? (dest_cards_num-1) : (seqs.seq_points[seq_index-1]-1))
);
}
/* Move the source seq on top of the dest seq */
fcs_move_sequence(ds, stack_idx, h+1, cards_num-1);
sfs_check_state_end();
}
LOOK_FOR_TRUE_PARENT_with_ds_dc__END()
}
if (should_break)
{
break;
}
if (should_increment_num_true_seqs)
{
num_true_seqs++;
}
card = h_above_card;
}
STACK_SOURCE_LOOP_END()
return;
}
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_with_some_cards_above_to_true_parent)
{
SIMPS_define_vacant_stacks_accessors();
CALC_POSITIONS_BY_RANK();
STACK_SOURCE_LOOP_START(1)
for (int src_card_height = cards_num-1 ; src_card_height >= 0 ; src_card_height--)
{
int end_of_src_seq;
const fcs_card_t h_card = fcs_col_get_card(col, src_card_height);
fcs_card_t card = h_card;
int num_true_seqs = 1;
for (end_of_src_seq = src_card_height+1; end_of_src_seq < cards_num ; end_of_src_seq++)
{
const fcs_card_t above_card
= fcs_col_get_card(col, end_of_src_seq);
if (!fcs_is_ss_false_parent(card, above_card))
{
break;
}
if (!fcs_is_ss_suit_true(card, above_card))
{
num_true_seqs++;
}
card = above_card;
}
if (end_of_src_seq == cards_num)
{
continue;
}
/* Split the cards above it into false sequences */
LOOK_FOR_TRUE_PARENT_AT_TOP__START(h_card)
/* This is a suitable parent - let's check if we
* have enough empty stacks to make the move feasible */
sequences_analysis_t seqs;
if (
(
POPULATE_AND_CHECK_IF_FALSE_SEQ(col, end_of_src_seq-1, stack_idx, ds, FALSE)
&&
(calc_max_simple_simon_seq_move(seqs.after_junk_num_freestacks) > num_true_seqs)
)
)
{
sfs_check_state_begin();
my_copy_stack(stack_idx);
my_copy_stack(ds);
/* Let's boogie - we can move everything */
/* Move the junk cards to their place */
for (int seq_index = 0;
seq_index < seqs.num_separate_false_seqs;
seq_index++
)
{
const int dest_index = seqs.junk_move_to_stacks[seq_index];
my_copy_stack(dest_index);
fcs_move_sequence(
dest_index,
stack_idx,
seqs.seq_points[seq_index],
((seq_index == 0) ? (cards_num-1) : (seqs.seq_points[seq_index-1]-1))
);
}
fcs_move_sequence(ds, stack_idx, src_card_height, end_of_src_seq-1);
sfs_check_state_end();
}
LOOK_FOR_TRUE_PARENT_AT_TOP__END()
}
STACK_SOURCE_LOOP_END()
return;
}
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_with_junk_seq_above_to_true_parent_with_some_cards_above)
{
/*
* stack_idx - the source stack index
* cards_num - the number of cards in "stack"
* h - the height of the current card in "stack".
* card - the current card in "stack"
* suit - its suit
* rank - its rank
* ds - the index of the destination stack
* dest_cards_num - the number of cards in "ds".
* dc - the height of the current card in "ds".
* num_separate_false_seqs - the number of false sequences
* seq_points[] - the places in which the false sequences of the junk begin
* and end
* false_seq_index - an iterator that marks the index of the current
* false sequence
* stacks_map[] - a map of booleans that indicates if one can place a card
* on this stack or is already taken.
* above_num_true_seqs[] - the number of true sequences in each false
* sequence
* num_src_junk_true_seqs - the number of true seqs in the false seq above
* the source card.
* end_of_junk - the height marking the end of the source junk.
* num_true_seqs - the number of true sequences in the false seq which we
* wish to move.
* */
SIMPS_define_vacant_stacks_accessors();
CALC_POSITIONS_BY_RANK();
STACK_SOURCE_LOOP_START(1)
int num_src_junk_true_seqs = 1;
int h = get_seq_h(col, &num_src_junk_true_seqs);
if (! h)
{
continue;
}
fcs_card_t card = fcs_col_get_card(col, h);
const int end_of_junk = (--h);
int num_true_seqs = 1;
for(;h>-1;h--)
{
const fcs_card_t next_card = fcs_col_get_card(col, h);
if (!fcs_is_ss_false_parent(next_card, card))
{
card = next_card;
break;
}
if (!fcs_is_ss_suit_true(next_card, card))
{
num_true_seqs++;
}
card = next_card;
}
/* Start at the card below the top one, so we will
* make sure there's at least some junk above it
* */
LOOK_FOR_TRUE_PARENT_with_ds_dc__START(card)
if (dc <= dest_cards_num - 2)
{
/* This is a suitable parent - let's check if there's a sequence above it. */
sequences_analysis_t seqs;
populate_seq_points(dest_col, dc, &seqs);
const fcs_bool_t verdict = generic_false_seq_index_loop(
LOCAL_STACKS_NUM, raw_ptr_state_raw, num_vacant_stacks,
dest_col, &seqs, stack_idx, ds, FALSE, TRUE,
fcs_col_get_card(col, end_of_junk+1), num_src_junk_true_seqs
);
if (
verdict
&&
(calc_max_simple_simon_seq_move(seqs.after_junk_num_freestacks) >= num_true_seqs)
)
{
/* We can do it - so let's move everything */
sfs_check_state_begin();
my_copy_stack(stack_idx);
my_copy_stack(ds);
/* Move the junk cards to their place */
for (int seq_index = 0;
seq_index < seqs.num_separate_false_seqs+1;
seq_index++
)
{
int start;
int end;
int src_stack;
if (seq_index == seqs.num_separate_false_seqs)
{
start = end_of_junk+1;
end = cards_num-1;
src_stack = stack_idx;
}
else
{
start = seqs.seq_points[seq_index];
end = ((seq_index == 0) ? (dest_cards_num-1) : (seqs.seq_points[seq_index-1]-1));
src_stack = ds;
}
my_copy_stack(src_stack);
const int dest_index = seqs.junk_move_to_stacks[seq_index];
my_copy_stack(dest_index);
fcs_move_sequence(dest_index, src_stack, start, end);
}
/* Move the source seq on top of the dest seq */
fcs_move_sequence(ds, stack_idx, h, end_of_junk);
sfs_check_state_end();
}
}
LOOK_FOR_TRUE_PARENT_with_ds_dc__END()
STACK_SOURCE_LOOP_END()
return;
}
typedef struct {
int ds;
int dc;
} ds_dc_t;
static GCC_INLINE void sort_ds_dcs(
ds_dc_t * ds_dcs,
const int len
)
{
ds_dc_t * start = ds_dcs;
ds_dc_t * limit = start + len;
for (ds_dc_t * b = start+1 ; b < limit ; b++)
{
for (ds_dc_t * c = b ; (c > start) && (c[0].ds < c[-1].ds || (c[0].ds == c[-1].ds && c[0].dc > c[-1].dc)); c--)
{
ds_dc_t temp = c[-1];
c[-1] = c[0];
c[0] = temp;
}
}
}
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_whole_stack_sequence_to_false_parent_with_some_cards_above)
{
/*
* stack_idx - the source stack index
* cards_num - the number of cards in "stack"
* h - the height of the current card in stack
* card - the current card
* suit - its suit
* rank - its rank
* ds - the destination stack index.
* dest_cards_num - the number of cards in it.
* dc - the height of the card in "ds".
* num_separate_false_seqs - this variable tells how many distinct false
* sequences exist above the false parent
* above_num_true_seqs[] - the number of true sequences in each false
* sequence
* seq_points[] - the separation points of the false sequences (i.e: where
* they begin and end)
* stacks_map[] - a boolean map that indicates if one can place a card
* on this stack or is it already taken.
* junk_move_to_stacks[] - the stacks to move each false sequence of the
* junk to.
* false_seq_index - an iterator to hold the index of the current false
* sequence.
* after_junk_num_freestacks - a variable that holds the number of stacks
* that are left unoccupied as part of the junk disposal process.
*
* */
SIMPS_define_vacant_stacks_accessors();
CALC_POSITIONS_BY_RANK();
STACK_SOURCE_LOOP_START(1)
int num_true_seqs;
if (get_seq_h(col, &num_true_seqs))
{
continue;
}
#define h 0
fcs_card_t card = fcs_col_get_card(col, h);
if (fcs_card_rank(card) == 13)
{
continue;
}
ds_dc_t ds_dcs[4];
int len = 0;
for (int parent_suit = 0; parent_suit < 4 ; parent_suit++)
{
const int ds = FCS_POS_COL(fcs_card_rank(card)+1, parent_suit);
if ((ds < 0) || (ds == stack_idx))
{
continue;
}
const int dc = FCS_POS_HEIGHT(fcs_card_rank(card)+1, parent_suit);
ds_dcs[len].ds = ds;
ds_dcs[len].dc = dc;
len++;
}
/* This is done to preserve the original order in the solutions. */
sort_ds_dcs(ds_dcs, len);
for (int i=0 ; i < len ; i++)
{
const int ds = ds_dcs[i].ds;
const int dc = ds_dcs[i].dc;
const fcs_cards_column_t dest_col = fcs_state_get_col(state, ds);
const int dest_cards_num = fcs_col_len(dest_col);
/* This is a suitable parent - let's check if there's a sequence above it. */
sequences_analysis_t seqs;
if (! POPULATE_AND_CHECK_IF_FALSE_SEQ(dest_col, dc, stack_idx, ds, TRUE))
{
continue;
}
/* This is a suitable parent - let's check if we
* have enough empty stacks to make the move feasible */
if (calc_max_simple_simon_seq_move(num_vacant_stacks) < num_true_seqs)
{
continue;
}
/* We can do it - so let's move */
sfs_check_state_begin();
my_copy_stack(stack_idx);
my_copy_stack(ds);
/* Move the junk cards to their place */
for (int seq_index = 0;
seq_index < seqs.num_separate_false_seqs;
seq_index++
)
{
const int src_stack_idx = ds;
const int dest_stack_idx
= seqs.junk_move_to_stacks[
seq_index
];
my_copy_stack(src_stack_idx);
my_copy_stack(dest_stack_idx);
fcs_move_sequence(
dest_stack_idx,
src_stack_idx,
seqs.seq_points[seq_index],
((seq_index == 0) ? (dest_cards_num-1) : (seqs.seq_points[seq_index-1]-1))
);
}
fcs_move_sequence( ds, stack_idx, h, cards_num-1);
sfs_check_state_end();
#undef h
}
STACK_SOURCE_LOOP_END()
return;
}
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_to_parent_on_the_same_stack)
{
SIMPS_define_vacant_stacks_accessors();
STACK_SOURCE_LOOP_START(3)
/* Search for a parent card */
for(int parent_card_height = 0 ; parent_card_height < cards_num-2 ; parent_card_height++)
{
const fcs_card_t parent_card
= fcs_col_get_card(col, parent_card_height);
if (
fcs_is_ss_true_parent(
parent_card,
fcs_col_get_card(col, parent_card_height+1)
)
)
{
continue;
}
for(int child_card_height = parent_card_height + 2 ; child_card_height < cards_num ; child_card_height++)
{
if (! fcs_is_ss_true_parent(
parent_card,
fcs_col_get_card(col, child_card_height)
)
)
{
continue;
}
/* We have a matching parent and child cards */
#if 0
printf("Stack %i, Parent %i, Child %i\n", stack_idx, parent_card_height, child_card_height);
fflush(stdout);
#endif
/*
* Now let's try to find stacks to place the cards above
* the child card.
* */
int end_of_child_seq = child_card_height;
int child_num_true_seqs = 1;
while ((end_of_child_seq+1 < cards_num) &&
fcs_is_ss_false_parent(
fcs_col_get_card(col, end_of_child_seq),
fcs_col_get_card(col, end_of_child_seq+1)
)
)
{
child_num_true_seqs += (!fcs_is_ss_true_parent(
fcs_col_get_card(col, end_of_child_seq),
fcs_col_get_card(col, end_of_child_seq+1)
));
end_of_child_seq++;
}
sequences_analysis_t seqs;
populate_seq_points(col, end_of_child_seq, &seqs);
/* Add the child to the seq_points */
const int child_seq_index = seqs.num_separate_false_seqs;
seqs.above_num_true_seqs[seqs.num_separate_false_seqs]
= child_num_true_seqs;
seqs.seq_points[seqs.num_separate_false_seqs++] = child_card_height;
/* Add the cards between the parent and the child to the seq_points */
generic_populate_seq_points(col, parent_card_height, &seqs,
child_card_height);
/* Let's check if we can move the child after we are done
* moving all the junk cards */
if (!
(
IS_false_seq_index_loop(col, FALSE, stack_idx, stack_idx)
&&
(calc_max_simple_simon_seq_move(seqs.after_junk_num_freestacks) >= child_num_true_seqs)
)
)
{
continue;
}
/* We can do it - so let's move everything */
sfs_check_state_begin();
/* Move the junk cards to their place */
my_copy_stack(stack_idx);
for (int seq_index = 0;
seq_index < seqs.num_separate_false_seqs;
seq_index++
)
{
const int dest_idx
= seqs.junk_move_to_stacks[seq_index];
my_copy_stack(dest_idx);
fcs_move_sequence (
dest_idx,
stack_idx,
seqs.seq_points[seq_index],
((seq_index == 0) ? (cards_num-1) : (seqs.seq_points[seq_index-1]-1))
);
}
{
const int source_idx
= seqs.junk_move_to_stacks[child_seq_index];
const fcs_cards_column_t move_junk_to_col
= fcs_state_get_col(new_state, source_idx);
const int end = fcs_col_len(move_junk_to_col)-1;
my_copy_stack(source_idx);
fcs_move_sequence(
stack_idx,
source_idx,
end-(end_of_child_seq-child_card_height),
end
);
}
sfs_check_state_end();
}
}
STACK_SOURCE_LOOP_END()
return;
}
DECLARE_MOVE_FUNCTION(fc_solve_sfs_simple_simon_move_sequence_to_false_parent)
{
/*
* stack - the source stack index
* cards_num - number of cards in "stack"
* ds - the dest stack index
* dest_cards_num - number of cards in "ds".
* card - the current card
* next_card - the next card on the stack.
* h - the height of the current card on "stack"
* num_true_seqs - the number of true sequences on the current
* false sequence
* */
SIMPS_define_vacant_stacks_accessors();
STACK_SOURCE_LOOP_START(1)
int num_true_seqs;
int h = get_seq_h(col, &num_true_seqs);
/* Let's check if we have enough empty stacks to make the move
* feasible.
* */
if (calc_max_simple_simon_seq_move(num_vacant_stacks) < num_true_seqs)
{
continue;
}
const fcs_card_t card = fcs_col_get_card(col, h);
/* take the sequence and try and put it on another stack */
STACK_DEST_LOOP_START(1)
if (!fcs_is_ss_false_parent(
fcs_col_get_card( dest_col, dest_cards_num-1),
card
)
)
{
continue;
}
/* We can do it - so let's perform the move */
sfs_check_state_begin();
my_copy_stack(stack_idx);
my_copy_stack(ds);
fcs_move_sequence(ds, stack_idx, h, cards_num-1);
sfs_check_state_end();
STACK_DEST_LOOP_END()
STACK_SOURCE_LOOP_END()
return;
}
#undef state
#undef new_state
#endif /* #ifdef FCS_DISABLE_SIMPLE_SIMON */
|