/**
* Copyright (C) 2023 Shuang Chen
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 .
-----------------------------------------------------------------------
Modified by Isaac Vega
*/
import { circle, get8Perm, rn, rndEl, set8Perm } from "../lib/mathlib";
import { fixCase, regScrambler } from "./scramble";
function FullCube_copy(obj, c) {
obj.ul = c.ul;
obj.ur = c.ur;
obj.dl = c.dl;
obj.dr = c.dr;
obj.ml = c.ml;
}
function FullCube_doMove(obj, move) {
let temp;
move <<= 2;
if (move > 24) {
move = 48 - move;
temp = obj.ul;
obj.ul = ((obj.ul >> move) | (obj.ur << (24 - move))) & 16777215;
obj.ur = ((obj.ur >> move) | (temp << (24 - move))) & 16777215;
} else if (move > 0) {
temp = obj.ul;
obj.ul = ((obj.ul << move) | (obj.ur >> (24 - move))) & 16777215;
obj.ur = ((obj.ur << move) | (temp >> (24 - move))) & 16777215;
} else if (move == 0) {
temp = obj.ur;
obj.ur = obj.dl;
obj.dl = temp;
obj.ml = 1 - obj.ml;
} else if (move >= -24) {
move = -move;
temp = obj.dl;
obj.dl = ((obj.dl << move) | (obj.dr >> (24 - move))) & 16777215;
obj.dr = ((obj.dr << move) | (temp >> (24 - move))) & 16777215;
} else if (move < -24) {
move = 48 + move;
temp = obj.dl;
obj.dl = ((obj.dl >> move) | (obj.dr << (24 - move))) & 16777215;
obj.dr = ((obj.dr >> move) | (temp << (24 - move))) & 16777215;
}
}
function FullCube_getParity(obj) {
let a, b, cnt, i, p;
cnt = 0;
obj.arr[0] = FullCube_pieceAt(obj, 0);
for (i = 1; i < 24; ++i) {
FullCube_pieceAt(obj, i) != obj.arr[cnt] &&
(obj.arr[++cnt] = FullCube_pieceAt(obj, i));
}
p = 0;
for (a = 0; a < 16; ++a) {
for (b = a + 1; b < 16; ++b) {
obj.arr[a] > obj.arr[b] && (p ^= 1);
}
}
return p;
}
function FullCube_getShapeIdx(obj) {
let dlx, drx, ulx, urx;
urx = obj.ur & 1118481;
urx |= urx >> 3;
urx |= urx >> 6;
urx = (urx & 15) | ((urx >> 12) & 48);
ulx = obj.ul & 1118481;
ulx |= ulx >> 3;
ulx |= ulx >> 6;
ulx = (ulx & 15) | ((ulx >> 12) & 48);
drx = obj.dr & 1118481;
drx |= drx >> 3;
drx |= drx >> 6;
drx = (drx & 15) | ((drx >> 12) & 48);
dlx = obj.dl & 1118481;
dlx |= dlx >> 3;
dlx |= dlx >> 6;
dlx = (dlx & 15) | ((dlx >> 12) & 48);
return Shape_getShape2Idx(
(FullCube_getParity(obj) << 24) |
(ulx << 18) |
(urx << 12) |
(dlx << 6) |
drx,
);
}
function FullCube_getSquare(obj, sq) {
let a, b;
for (a = 0; a < 8; ++a) {
obj.prm[a] = FullCube_pieceAt(obj, a * 3 + 1) >> 1;
}
sq.cornperm = get8Perm(obj.prm);
sq.topEdgeFirst = FullCube_pieceAt(obj, 0) == FullCube_pieceAt(obj, 1);
a = sq.topEdgeFirst ? 2 : 0;
for (b = 0; b < 4; a += 3, ++b) obj.prm[b] = FullCube_pieceAt(obj, a) >> 1;
sq.botEdgeFirst = FullCube_pieceAt(obj, 12) == FullCube_pieceAt(obj, 13);
a = sq.botEdgeFirst ? 14 : 12;
for (; b < 8; a += 3, ++b) obj.prm[b] = FullCube_pieceAt(obj, a) >> 1;
sq.edgeperm = get8Perm(obj.prm);
sq.ml = obj.ml;
}
function FullCube_pieceAt(obj, idx) {
let ret;
idx < 6
? (ret = obj.ul >> ((5 - idx) << 2))
: idx < 12
? (ret = obj.ur >> ((11 - idx) << 2))
: idx < 18
? (ret = obj.dl >> ((17 - idx) << 2))
: (ret = obj.dr >> ((23 - idx) << 2));
return ret & 15;
}
function FullCube_setPiece(obj, idx, value) {
if (idx < 6) {
obj.ul &= ~(0xf << ((5 - idx) << 2));
obj.ul |= value << ((5 - idx) << 2);
} else if (idx < 12) {
obj.ur &= ~(0xf << ((11 - idx) << 2));
obj.ur |= value << ((11 - idx) << 2);
} else if (idx < 18) {
obj.dl &= ~(0xf << ((17 - idx) << 2));
obj.dl |= value << ((17 - idx) << 2);
} else {
obj.dr &= ~(0xf << ((23 - idx) << 2));
obj.dr |= value << ((23 - idx) << 2);
}
}
function FullCube_FullCube__Ljava_lang_String_2V() {
this.arr = [];
this.prm = [];
}
function FullCube_randomEP() {
let f, i, shape, edge, n_edge, n_corner, rnd, m;
f = new FullCube_FullCube__Ljava_lang_String_2V();
shape = Shape_ShapeIdx[FullCube_getShapeIdx(f) >> 1];
edge = 0x01234567 << 1;
n_edge = 8;
for (i = 0; i < 24; i++) {
if (((shape >> i) & 1) == 0) {
//edge
rnd = rn(n_edge) << 2;
FullCube_setPiece(f, 23 - i, (edge >> rnd) & 0xf);
m = (1 << rnd) - 1;
edge = (edge & m) + ((edge >> 4) & ~m);
--n_edge;
} else {
++i;
}
}
f.ml = rn(2);
return f;
}
function FullCube_randomCube(indice?) {
let f, i, shape, edge, corner, n_edge, n_corner, rnd, m;
if (indice === undefined) {
indice = rn(3678);
}
f = new FullCube_FullCube__Ljava_lang_String_2V();
shape = Shape_ShapeIdx[indice];
corner = (0x01234567 << 1) | 0x11111111;
edge = 0x01234567 << 1;
n_corner = n_edge = 8;
for (i = 0; i < 24; i++) {
if (((shape >> i) & 1) == 0) {
//edge
rnd = rn(n_edge) << 2;
FullCube_setPiece(f, 23 - i, (edge >> rnd) & 0xf);
m = (1 << rnd) - 1;
edge = (edge & m) + ((edge >> 4) & ~m);
--n_edge;
} else {
//corner
rnd = rn(n_corner) << 2;
FullCube_setPiece(f, 23 - i, (corner >> rnd) & 0xf);
FullCube_setPiece(f, 22 - i, (corner >> rnd) & 0xf);
m = (1 << rnd) - 1;
corner = (corner & m) + ((corner >> 4) & ~m);
--n_corner;
++i;
}
}
f.ml = rn(2);
return f;
}
function FullCube() {}
let _ = (FullCube_FullCube__Ljava_lang_String_2V.prototype =
FullCube.prototype);
_.dl = 10062778;
_.dr = 14536702;
_.ml = 0;
_.ul = 70195;
_.ur = 4544119;
function Search_init2(obj) {
let corner, edge, i, j, ml, prun;
FullCube_copy(obj.Search_d, obj.Search_c);
for (i = 0; i < obj.Search_length1; ++i) {
FullCube_doMove(obj.Search_d, obj.Search_move[i]);
}
FullCube_getSquare(obj.Search_d, obj.Search_sq);
edge = obj.Search_sq.edgeperm;
corner = obj.Search_sq.cornperm;
ml = obj.Search_sq.ml;
prun = Math.max(
SquarePrun[(obj.Search_sq.edgeperm << 1) | ml],
SquarePrun[(obj.Search_sq.cornperm << 1) | ml],
);
for (i = prun; i < obj.Search_maxlen2; ++i) {
if (
Search_phase2(
obj,
edge,
corner,
obj.Search_sq.topEdgeFirst,
obj.Search_sq.botEdgeFirst,
ml,
i,
obj.Search_length1,
0,
)
) {
for (j = 0; j < i; ++j) {
FullCube_doMove(obj.Search_d, obj.Search_move[obj.Search_length1 + j]);
}
obj.Search_sol_string = Search_move2string(obj, i + obj.Search_length1);
return true;
}
}
return false;
}
function Search_move2string(obj, len) {
let s = "";
let top = 0,
bottom = 0;
for (let i = len - 1; i >= 0; i--) {
let val = obj.Search_move[i];
if (val > 0) {
val = 12 - val;
top = val > 6 ? val - 12 : val;
} else if (val < 0) {
val = 12 + val;
bottom = val > 6 ? val - 12 : val;
} else {
const twst = " /";
// if (i == obj.Search_length1 - 1) {
// twst = "`/`";
// }
if (top == 0 && bottom == 0) {
s += twst;
} else {
s += " (" + top + "," + bottom + ")" + twst;
}
top = bottom = 0;
}
}
if (top == 0 && bottom == 0) {
} else {
s += " (" + top + "," + bottom + ") ";
}
return s; // + " (" + len + "t)";
}
function Search_phase1(obj, shape, prunvalue, maxl, depth, lm) {
let m, prunx, shapex;
if (prunvalue == 0 && maxl < 4) {
return maxl == 0 && Search_init2(obj);
}
if (lm != 0) {
shapex = Shape_TwistMove[shape];
prunx = ShapePrun[shapex];
if (prunx < maxl) {
obj.Search_move[depth] = 0;
if (Search_phase1(obj, shapex, prunx, maxl - 1, depth + 1, 0)) {
return true;
}
}
}
shapex = shape;
if (lm <= 0) {
m = 0;
while (true) {
m += Shape_TopMove[shapex];
shapex = m >> 4;
m &= 15;
if (m >= 12) {
break;
}
prunx = ShapePrun[shapex];
if (prunx > maxl) {
break;
} else if (prunx < maxl) {
obj.Search_move[depth] = m;
if (Search_phase1(obj, shapex, prunx, maxl - 1, depth + 1, 1)) {
return true;
}
}
}
}
shapex = shape;
if (lm <= 1) {
m = 0;
while (true) {
m += Shape_BottomMove[shapex];
shapex = m >> 4;
m &= 15;
if (m >= 6) {
break;
}
prunx = ShapePrun[shapex];
if (prunx > maxl) {
break;
} else if (prunx < maxl) {
obj.Search_move[depth] = -m;
if (Search_phase1(obj, shapex, prunx, maxl - 1, depth + 1, 2)) {
return true;
}
}
}
}
return false;
}
function Search_phase2(
obj,
edge,
corner,
topEdgeFirst,
botEdgeFirst,
ml,
maxl,
depth,
lm,
) {
let botEdgeFirstx, cornerx, edgex, m, prun1, prun2, topEdgeFirstx;
if (maxl == 0 && !topEdgeFirst && botEdgeFirst) {
return true;
}
if (lm != 0 && topEdgeFirst == botEdgeFirst) {
edgex = Square_TwistMove[edge];
cornerx = Square_TwistMove[corner];
if (
SquarePrun[(edgex << 1) | (1 - ml)] < maxl &&
SquarePrun[(cornerx << 1) | (1 - ml)] < maxl
) {
obj.Search_move[depth] = 0;
if (
Search_phase2(
obj,
edgex,
cornerx,
topEdgeFirst,
botEdgeFirst,
1 - ml,
maxl - 1,
depth + 1,
0,
)
) {
return true;
}
}
}
if (lm <= 0) {
topEdgeFirstx = !topEdgeFirst;
edgex = topEdgeFirstx ? Square_TopMove[edge] : edge;
cornerx = topEdgeFirstx ? corner : Square_TopMove[corner];
m = topEdgeFirstx ? 1 : 2;
prun1 = SquarePrun[(edgex << 1) | ml];
prun2 = SquarePrun[(cornerx << 1) | ml];
while (m < 12 && prun1 <= maxl && prun1 <= maxl) {
if (prun1 < maxl && prun2 < maxl) {
obj.Search_move[depth] = m;
if (
Search_phase2(
obj,
edgex,
cornerx,
topEdgeFirstx,
botEdgeFirst,
ml,
maxl - 1,
depth + 1,
1,
)
) {
return true;
}
}
topEdgeFirstx = !topEdgeFirstx;
if (topEdgeFirstx) {
edgex = Square_TopMove[edgex];
prun1 = SquarePrun[(edgex << 1) | ml];
m += 1;
} else {
cornerx = Square_TopMove[cornerx];
prun2 = SquarePrun[(cornerx << 1) | ml];
m += 2;
}
}
}
if (lm <= 1) {
botEdgeFirstx = !botEdgeFirst;
edgex = botEdgeFirstx ? Square_BottomMove[edge] : edge;
cornerx = botEdgeFirstx ? corner : Square_BottomMove[corner];
m = botEdgeFirstx ? 1 : 2;
prun1 = SquarePrun[(edgex << 1) | ml];
prun2 = SquarePrun[(cornerx << 1) | ml];
while (m < (maxl > 6 ? 6 : 12) && prun1 <= maxl && prun1 <= maxl) {
if (prun1 < maxl && prun2 < maxl) {
obj.Search_move[depth] = -m;
if (
Search_phase2(
obj,
edgex,
cornerx,
topEdgeFirst,
botEdgeFirstx,
ml,
maxl - 1,
depth + 1,
2,
)
) {
return true;
}
}
botEdgeFirstx = !botEdgeFirstx;
if (botEdgeFirstx) {
edgex = Square_BottomMove[edgex];
prun1 = SquarePrun[(edgex << 1) | ml];
m += 1;
} else {
cornerx = Square_BottomMove[cornerx];
prun2 = SquarePrun[(cornerx << 1) | ml];
m += 2;
}
}
}
return false;
}
function Search_solution(obj, c) {
let shape;
obj.Search_c = c;
shape = FullCube_getShapeIdx(c);
for (
obj.Search_length1 = ShapePrun[shape];
obj.Search_length1 < 100;
++obj.Search_length1
) {
obj.Search_maxlen2 = Math.min(32 - obj.Search_length1, 17);
if (
Search_phase1(obj, shape, ShapePrun[shape], obj.Search_length1, 0, -1)
) {
break;
}
}
return obj.Search_sol_string;
}
function Search_Search() {
this.Search_move = [];
this.Search_d = new FullCube_FullCube__Ljava_lang_String_2V();
this.Search_sq = new Square_Square();
}
function Search() {}
_ = Search_Search.prototype = Search.prototype;
_.Search_c = null;
_.Search_length1 = 0;
_.Search_maxlen2 = 0;
_.Search_sol_string = null;
let Shape_$clinitRet = false;
function Shape_$clinit() {
if (Shape_$clinitRet) {
return;
}
Shape_$clinitRet = true;
Shape_halflayer = [0, 3, 6, 12, 15, 24, 27, 30, 48, 51, 54, 60, 63];
Shape_ShapeIdx = [];
ShapePrun = [];
Shape_TopMove = [];
Shape_BottomMove = [];
Shape_TwistMove = [];
Shape_init();
}
function Shape_bottomMove(obj) {
let move, moveParity;
move = 0;
moveParity = 0;
do {
if ((obj.bottom & 2048) == 0) {
move += 1;
obj.bottom = obj.bottom << 1;
} else {
move += 2;
obj.bottom = (obj.bottom << 2) ^ 12291;
}
moveParity = 1 - moveParity;
} while ((bitCount(obj.bottom & 63) & 1) != 0);
(bitCount(obj.bottom) & 2) == 0 && (obj.Shape_parity ^= moveParity);
return move;
}
function Shape_getIdx(obj) {
let ret;
ret =
(binarySearch(Shape_ShapeIdx, (obj.top << 12) | obj.bottom) << 1) |
obj.Shape_parity;
return ret;
}
function Shape_setIdx(obj, idx) {
obj.Shape_parity = idx & 1;
obj.top = Shape_ShapeIdx[idx >> 1];
obj.bottom = obj.top & 4095;
obj.top >>= 12;
}
function Shape_topMove(obj) {
let move, moveParity;
move = 0;
moveParity = 0;
do {
if ((obj.top & 2048) == 0) {
move += 1;
obj.top = obj.top << 1;
} else {
move += 2;
obj.top = (obj.top << 2) ^ 12291;
}
moveParity = 1 - moveParity;
} while ((bitCount(obj.top & 63) & 1) != 0);
(bitCount(obj.top) & 2) == 0 && (obj.Shape_parity ^= moveParity);
return move;
}
function Shape_Shape() {}
function Shape_getShape2Idx(shp) {
let ret;
ret = (binarySearch(Shape_ShapeIdx, shp & 16777215) << 1) | (shp >> 24);
return ret;
}
function Shape_init() {
let count,
depth,
dl,
done,
done0,
dr,
i,
idx,
m,
s,
ul,
ur,
value,
p1,
p3,
temp;
count = 0;
for (i = 0; i < 28561; ++i) {
dr = Shape_halflayer[i % 13];
dl = Shape_halflayer[~~(i / 13) % 13];
ur = Shape_halflayer[~~(~~(i / 13) / 13) % 13];
ul = Shape_halflayer[~~(~~(~~(i / 13) / 13) / 13)];
value = (ul << 18) | (ur << 12) | (dl << 6) | dr;
bitCount(value) == 16 && (Shape_ShapeIdx[count++] = value);
}
s = new Shape_Shape();
for (i = 0; i < 7356; ++i) {
Shape_setIdx(s, i);
Shape_TopMove[i] = Shape_topMove(s);
Shape_TopMove[i] |= Shape_getIdx(s) << 4;
Shape_setIdx(s, i);
Shape_BottomMove[i] = Shape_bottomMove(s);
Shape_BottomMove[i] |= Shape_getIdx(s) << 4;
Shape_setIdx(s, i);
temp = s.top & 63;
p1 = bitCount(temp);
p3 = bitCount(s.bottom & 4032);
s.Shape_parity ^= 1 & ((p1 & p3) >> 1);
s.top = (s.top & 4032) | ((s.bottom >> 6) & 63);
s.bottom = (s.bottom & 63) | (temp << 6);
Shape_TwistMove[i] = Shape_getIdx(s);
}
for (i = 0; i < 7536; ++i) {
ShapePrun[i] = -1;
}
ShapePrun[Shape_getShape2Idx(14378715)] = 0;
ShapePrun[Shape_getShape2Idx(31157686)] = 0;
ShapePrun[Shape_getShape2Idx(23967451)] = 0;
ShapePrun[Shape_getShape2Idx(7191990)] = 0;
done = 4;
done0 = 0;
depth = -1;
while (done != done0) {
done0 = done;
++depth;
for (i = 0; i < 7536; ++i) {
if (ShapePrun[i] == depth) {
m = 0;
idx = i;
do {
idx = Shape_TopMove[idx];
m += idx & 15;
idx >>= 4;
if (ShapePrun[idx] == -1) {
++done;
ShapePrun[idx] = depth + 1;
}
} while (m != 12);
m = 0;
idx = i;
do {
idx = Shape_BottomMove[idx];
m += idx & 15;
idx >>= 4;
if (ShapePrun[idx] == -1) {
++done;
ShapePrun[idx] = depth + 1;
}
} while (m != 12);
idx = Shape_TwistMove[i];
if (ShapePrun[idx] == -1) {
++done;
ShapePrun[idx] = depth + 1;
}
}
}
}
}
function Shape() {}
_ = Shape_Shape.prototype = Shape.prototype;
_.bottom = 0;
_.Shape_parity = 0;
_.top = 0;
let Shape_BottomMove,
Shape_ShapeIdx,
ShapePrun,
Shape_TopMove,
Shape_TwistMove,
Shape_halflayer;
let Square_$clinitRet = false;
function Square_$clinit() {
if (Square_$clinitRet) {
return;
}
Square_$clinitRet = true;
SquarePrun = [];
Square_TwistMove = [];
Square_TopMove = [];
Square_BottomMove = [];
Square_init();
}
function Square_Square() {}
function Square_init() {
let check, depth, done, find, i, idx, idxx, inv, m, ml, pos;
pos = [];
for (i = 0; i < 40320; ++i) {
set8Perm(pos, i);
circle(pos, 2, 4)(pos, 3, 5);
Square_TwistMove[i] = get8Perm(pos);
set8Perm(pos, i);
circle(pos, 0, 3, 2, 1);
Square_TopMove[i] = get8Perm(pos);
set8Perm(pos, i);
circle(pos, 4, 7, 6, 5);
Square_BottomMove[i] = get8Perm(pos);
}
for (i = 0; i < 80640; ++i) {
SquarePrun[i] = -1;
}
SquarePrun[0] = 0;
depth = 0;
done = 1;
while (done < 80640) {
inv = depth >= 11;
find = inv ? -1 : depth;
check = inv ? depth : -1;
++depth;
OUT: for (i = 0; i < 80640; ++i) {
if (SquarePrun[i] == find) {
idx = i >> 1;
ml = i & 1;
idxx = (Square_TwistMove[idx] << 1) | (1 - ml);
if (SquarePrun[idxx] == check) {
++done;
SquarePrun[inv ? i : idxx] = depth;
if (inv) continue OUT;
}
idxx = idx;
for (m = 0; m < 4; ++m) {
idxx = Square_TopMove[idxx];
if (SquarePrun[(idxx << 1) | ml] == check) {
++done;
SquarePrun[inv ? i : (idxx << 1) | ml] = depth;
if (inv) continue OUT;
}
}
for (m = 0; m < 4; ++m) {
idxx = Square_BottomMove[idxx];
if (SquarePrun[(idxx << 1) | ml] == check) {
++done;
SquarePrun[inv ? i : (idxx << 1) | ml] = depth;
if (inv) continue OUT;
}
}
}
}
}
}
function Square() {}
_ = Square_Square.prototype = Square.prototype;
_.botEdgeFirst = false;
_.cornperm = 0;
_.edgeperm = 0;
_.ml = 0;
_.topEdgeFirst = false;
let Square_BottomMove, SquarePrun, Square_TopMove, Square_TwistMove;
function bitCount(x) {
x -= (x >> 1) & 1431655765;
x = ((x >> 2) & 858993459) + (x & 858993459);
x = ((x >> 4) + x) & 252645135;
x += x >> 8;
x += x >> 16;
return x & 63;
}
function binarySearch(sortedArray, key) {
let high, low, mid, midVal;
low = 0;
high = sortedArray.length - 1;
while (low <= high) {
mid = low + ((high - low) >> 1);
midVal = sortedArray[mid];
if (midVal < key) {
low = mid + 1;
} else if (midVal > key) {
high = mid - 1;
} else {
return mid;
}
}
return -low - 1;
}
const cspcases: any[] = [
0, 1, 3, 18, 19, 1004, 1005, 1006, 1007, 1008, 1009, 1011, 1015, 1016, 1018,
1154, 1155, 1156, 1157, 1158, 1159, 1161, 1166, 1168, 424, 425, 426, 427, 428,
429, 431, 436, 95, 218, 341, 482, 528, 632, 1050, 342, 343, 345, 346, 348,
353, 223, 487, 533, 535, 1055, 219, 225, 483, 489, 639, 1051, 1057, 486, 1054,
1062, 6, 21, 34, 46, 59, 71, 144, 157, 182, 305, 7, 22, 35, 47, 60, 72, 145,
158, 183, 306, 8, 23, 36, 48, 61, 73, 146, 159, 184, 307,
];
let CSPInitRet = false;
function CSPInit() {
if (CSPInitRet) {
return;
}
CSPInitRet = true;
const s = new Shape_Shape();
for (let csp = 0; csp < cspcases.length; csp++) {
const curCases = [cspcases[csp]];
for (let i = 0; i < curCases.length; i++) {
let shape = curCases[i];
do {
shape = Shape_TopMove[shape << 1] >> 5;
if (curCases.indexOf(shape) == -1) {
curCases.push(shape);
}
} while (shape != curCases[i]);
do {
shape = Shape_BottomMove[shape << 1] >> 5;
if (curCases.indexOf(shape) == -1) {
curCases.push(shape);
}
} while (shape != curCases[i]);
Shape_setIdx(s, shape << 1);
const tmp = s.top;
s.top = s.bottom;
s.bottom = tmp;
shape = Shape_getIdx(s) >> 1;
if (curCases.indexOf(shape) == -1) {
curCases.push(shape);
}
}
cspcases[csp] = curCases;
}
}
const cspfilter = [
"Star-x8",
"Star-x71",
"Star-x62",
"Star-x44",
"Star-x53",
"Square-Scallop",
"Square-rPawn",
"Square-Shield",
"Square-Barrel",
"Square-rFist",
"Square-Mushroom",
"Square-lPawn",
"Square-Square",
"Square-lFist",
"Square-Kite",
"Kite-Scallop",
"Kite-rPawn",
"Kite-Shield",
"Kite-Barrel",
"Kite-rFist",
"Kite-Mushroom",
"Kite-lPawn",
"Kite-lFist",
"Kite-Kite",
"Barrel-Scallop",
"Barrel-rPawn",
"Barrel-Shield",
"Barrel-Barrel",
"Barrel-rFist",
"Barrel-Mushroom",
"Barrel-lPawn",
"Barrel-lFist",
"Scallop-Scallop",
"Scallop-rPawn",
"Scallop-Shield",
"Scallop-rFist",
"Scallop-Mushroom",
"Scallop-lPawn",
"Scallop-lFist",
"Shield-rPawn",
"Shield-Shield",
"Shield-rFist",
"Shield-Mushroom",
"Shield-lPawn",
"Shield-lFist",
"Mushroom-rPawn",
"Mushroom-rFist",
"Mushroom-Mushroom",
"Mushroom-lPawn",
"Mushroom-lFist",
"Pawn-rPawn-rPawn",
"Pawn-rPawn-lPawn",
"Pawn-rPawn-rFist",
"Pawn-lPawn-rFist",
"Pawn-lPawn-lPawn",
"Pawn-rPawn-lFist",
"Pawn-lPawn-lFist",
"Fist-rFist-rFist",
"Fist-lFist-rFist",
"Fist-lFist-lFist",
"Pair-x6",
"Pair-r42",
"Pair-x411",
"Pair-r51",
"Pair-l42",
"Pair-l51",
"Pair-x33",
"Pair-x312",
"Pair-x321",
"Pair-x222",
"L-x6",
"L-r42",
"L-x411",
"L-r51",
"L-l42",
"L-l51",
"L-x33",
"L-x312",
"L-x321",
"L-x222",
"Line-x6",
"Line-r42",
"Line-x411",
"Line-r51",
"Line-l42",
"Line-l51",
"Line-x33",
"Line-x312",
"Line-x321",
"Line-x222",
];
const cspprobs = [
16, 16, 16, 10, 16, 24, 16, 24, 16, 24, 16, 16, 4, 24, 16, 48, 32, 48, 32, 48,
32, 32, 48, 16, 48, 32, 48, 16, 48, 32, 32, 48, 36, 48, 72, 72, 48, 48, 72,
48, 36, 72, 48, 48, 72, 32, 48, 16, 32, 48, 16, 32, 48, 48, 16, 48, 48, 36,
72, 36, 72, 96, 96, 72, 96, 72, 72, 72, 72, 24, 48, 64, 64, 48, 64, 48, 48,
48, 48, 16, 24, 32, 32, 24, 32, 24, 24, 24, 24, 8,
];
const search = new Search_Search();
export function square1SolverGetRandomScramble() {
Shape_$clinit();
Square_$clinit();
const scrambleString = Search_solution(search, FullCube_randomCube());
return scrambleString;
}
function square1CubeShapeParityScramble(type: any, length: any, cases: any) {
Shape_$clinit();
Square_$clinit();
CSPInit();
const idx = rndEl(cspcases[fixCase(cases, cspprobs)]);
const scrambleString = Search_solution(search, FullCube_randomCube(idx));
return scrambleString;
}
regScrambler("sqrs", square1SolverGetRandomScramble);
regScrambler("sqrcsp", square1CubeShapeParityScramble, [cspfilter, cspprobs]);