Gather data
This commit is contained in:
@@ -3,6 +3,7 @@ package puzzle;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Value;
|
||||
import lombok.experimental.Accessors;
|
||||
import puzzle.Main.PuzzleResult;
|
||||
import java.util.*;
|
||||
import static puzzle.SwedishGenerator.*;
|
||||
|
||||
@@ -55,21 +56,21 @@ public final class ExportFormat {
|
||||
}
|
||||
|
||||
// 2) bounding box around all word cells + arrow cells, with 1-cell margin
|
||||
List<int[]> allCells = new ArrayList<>();
|
||||
for (var p : placed) {
|
||||
allCells.addAll(p.cells);
|
||||
allCells.add(p.arrow);
|
||||
}
|
||||
|
||||
int minR = Integer.MAX_VALUE, minC = Integer.MAX_VALUE;
|
||||
int maxR = Integer.MIN_VALUE, maxC = Integer.MIN_VALUE;
|
||||
|
||||
for (var rc : allCells) {
|
||||
int rr = rc[0], cc = rc[1];
|
||||
minR = Math.min(minR, rr);
|
||||
minC = Math.min(minC, cc);
|
||||
maxR = Math.max(maxR, rr);
|
||||
maxC = Math.max(maxC, cc);
|
||||
for (var rc : placed) {
|
||||
for (var r : rc.cells) {
|
||||
minR = Math.min(minR, r[0]);
|
||||
minC = Math.min(minC, r[1]);
|
||||
maxR = Math.max(maxR, r[0]);
|
||||
maxC = Math.max(maxC, r[1]);
|
||||
}
|
||||
minR = Math.min(minR, rc.arrowRow);
|
||||
minC = Math.min(minC, rc.arrowCol);
|
||||
maxR = Math.max(maxR, rc.arrowRow);
|
||||
maxC = Math.max(maxC, rc.arrowCol);
|
||||
}
|
||||
|
||||
// 3) map of only used letter cells (everything else becomes '#')
|
||||
@@ -116,9 +117,9 @@ public final class ExportFormat {
|
||||
int c = s.clueC();
|
||||
int d = s.dir();
|
||||
|
||||
List<int[]> cells = new ArrayList<>();
|
||||
int[][] cells = new int[s.len()][];
|
||||
for (int i = 0; i < s.len(); i++) {
|
||||
cells.add(new int[]{ s.r(i), s.c(i) });
|
||||
cells[i] = new int[]{ s.r(i), s.c(i) };
|
||||
}
|
||||
|
||||
// Canonicalize: always output right/down
|
||||
@@ -128,28 +129,28 @@ public final class ExportFormat {
|
||||
|
||||
if (d == 2) { // right -> horizontal
|
||||
direction = HORIZONTAL;
|
||||
startRow = cells.get(0)[0];
|
||||
startCol = cells.get(0)[1];
|
||||
startRow = cells[0][0];
|
||||
startCol = cells[0][1];
|
||||
arrowRow = r;
|
||||
arrowCol = c;
|
||||
} else if (d == 3 || d == 5) { // down or down-bent -> vertical
|
||||
direction = VERTICAL;
|
||||
startRow = cells.get(0)[0];
|
||||
startCol = cells.get(0)[1];
|
||||
startRow = cells[0][0];
|
||||
startCol = cells[0][1];
|
||||
arrowRow = r;
|
||||
arrowCol = c;
|
||||
} else if (d == 4) { // left -> horizontal (REVERSED)
|
||||
direction = HORIZONTAL;
|
||||
isReversed = true;
|
||||
startRow = cells.get(0)[0];
|
||||
startCol = cells.get(0)[1];
|
||||
startRow = cells[0][0];
|
||||
startCol = cells[0][1];
|
||||
arrowRow = r;
|
||||
arrowCol = c;
|
||||
} else if (d == 1) { // up -> vertical (REVERSED)
|
||||
direction = VERTICAL;
|
||||
isReversed = true;
|
||||
startRow = cells.get(0)[0];
|
||||
startCol = cells.get(0)[1];
|
||||
startRow = cells[0][0];
|
||||
startCol = cells[0][1];
|
||||
arrowRow = r;
|
||||
arrowCol = c;
|
||||
} else {
|
||||
@@ -164,46 +165,20 @@ public final class ExportFormat {
|
||||
arrowRow,
|
||||
arrowCol,
|
||||
cells,
|
||||
new int[]{ arrowRow, arrowCol },
|
||||
isReversed
|
||||
);
|
||||
}
|
||||
|
||||
private static long pack(int r, int c) { return (((long) r) << 32) ^ (c & 0xFFFFFFFFL); }
|
||||
@Value @Accessors(fluent = true) @AllArgsConstructor
|
||||
private static class Placed {
|
||||
Lemma lemma;
|
||||
int startRow, startCol;
|
||||
String direction;
|
||||
int arrowRow, arrowCol;
|
||||
List<int[]> cells;
|
||||
int[] arrow;
|
||||
boolean isReversed;
|
||||
}
|
||||
|
||||
@Value @Accessors(fluent = true) @AllArgsConstructor
|
||||
public static class Rewards {
|
||||
int coins, stars, hints;
|
||||
}
|
||||
|
||||
@Value @Accessors(fluent = true) @AllArgsConstructor
|
||||
public static class WordOut {
|
||||
Lemma lemma;
|
||||
int startRow, startCol;
|
||||
String direction;
|
||||
int arrowRow, arrowCol;
|
||||
boolean isReversed;
|
||||
int complex;
|
||||
|
||||
public String word() { return lemma().word(); }
|
||||
public ArrayList<String> clue() { return lemma.clue(); }
|
||||
}
|
||||
|
||||
@Value @Accessors(fluent = true) @AllArgsConstructor
|
||||
public static class ExportedPuzzle {
|
||||
List<String> gridv2;
|
||||
WordOut[] words;
|
||||
int difficulty;
|
||||
Rewards rewards;
|
||||
}
|
||||
private record Placed(Lemma lemma, int startRow, int startCol, String direction, int arrowRow, int arrowCol, int[][] cells, boolean isReversed) { }
|
||||
|
||||
public record Rewards(int coins, int stars, int hints) { }
|
||||
|
||||
public record WordOut(Lemma lemma, int startRow, int startCol, String direction, int arrowRow, int arrowCol, boolean isReversed, int complex) {
|
||||
|
||||
public String word() { return lemma().word(); }
|
||||
public ArrayList<String> clue() { return lemma.clue(); }
|
||||
}
|
||||
|
||||
public record ExportedPuzzle(List<String> gridv2, WordOut[] words, int difficulty, Rewards rewards) { }
|
||||
}
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package puzzle;
|
||||
|
||||
import lombok.Data;
|
||||
import puzzle.SwedishGenerator.PuzzleResult;
|
||||
import puzzle.SwedishGenerator.Rng;
|
||||
|
||||
import java.io.IOException;
|
||||
@@ -19,7 +18,8 @@ import static puzzle.SwedishGenerator.*;
|
||||
import static puzzle.SwedishGenerator.loadWords;
|
||||
|
||||
public class Main {
|
||||
|
||||
// ---------------- Top-level generatePuzzle ----------------
|
||||
public record PuzzleResult(SwedishGenerator swe, Dict dict, Grid mask, FillResult filled) { }
|
||||
final static String OUT_DIR = envOrDefault("OUT_DIR", "/data/puzzle");
|
||||
final static Path PUZZLE_DIR = Paths.get(OUT_DIR, "puzzles");
|
||||
static final Path INDEX_FILE = PUZZLE_DIR.resolve("index.json");
|
||||
|
||||
@@ -19,23 +19,27 @@ import java.util.function.Supplier;
|
||||
@SuppressWarnings("ALL")
|
||||
public record SwedishGenerator(int[] buff) {
|
||||
|
||||
static final int W = Config.PUZZLE_COLS;
|
||||
static final int H = Config.PUZZLE_ROWS;
|
||||
static final int SIZE = W * H;
|
||||
static final int MAX_WORD_LENGTH = Math.min(W, H);
|
||||
static final int MIN_LEN = Config.MIN_LEN;
|
||||
static final int CLUE_SIZE = Config.CLUE_SIZE;
|
||||
static final int SIMPLICITY_DEFAULT_SCORE = 2;
|
||||
static final int MAX_TRIES_PER_SLOT = Config.MAX_TRIES_PER_SLOT;
|
||||
static final char C_DASH = '\0';
|
||||
static final byte _1 = 49, _9 = 57, A = 65, Z = 90, DASH = (byte) C_DASH;
|
||||
record CandidateInfo(int[] indices, int count) { }
|
||||
|
||||
record nbrs_8(int x, int y) { }
|
||||
|
||||
static final int W = Config.PUZZLE_COLS;
|
||||
static final double CROSS_Y = (W - 1) / 2.0;
|
||||
static final int H = Config.PUZZLE_ROWS;
|
||||
static final double CROSS_X = (H - 1) / 2.0;
|
||||
static final int SIZE = W * H;
|
||||
static final int MAX_WORD_LENGTH = Math.min(W, H);
|
||||
static final int MIN_LEN = Config.MIN_LEN;
|
||||
static final int CLUE_SIZE = Config.CLUE_SIZE;
|
||||
static final int SIMPLICITY_DEFAULT_SCORE = 2;
|
||||
static final int MAX_TRIES_PER_SLOT = Config.MAX_TRIES_PER_SLOT;
|
||||
static final char C_DASH = '\0';
|
||||
static final byte _1 = 49, _9 = 57, A = 65, Z = 90, DASH = (byte) C_DASH;
|
||||
static final ThreadLocal<Context> CTX = ThreadLocal.withInitial(Context::new);
|
||||
static boolean isLetter(char ch) { return ch >= 'A' && ch <= 'Z'; }
|
||||
static int clamp(int x, int a, int b) { return Math.max(a, Math.min(b, x)); }
|
||||
static record CandidateInfo(int[] indices, int count) { }
|
||||
|
||||
static record nbrs_8(int x, int y) { }
|
||||
public SwedishGenerator() { this(new int[8124]); }
|
||||
public SwedishGenerator() { this(new int[8124]); }
|
||||
|
||||
// Directions for '1'..'6'
|
||||
static final nbrs_8[] OFFSETS = new nbrs_8[7];
|
||||
@@ -124,8 +128,10 @@ public record SwedishGenerator(int[] buff) {
|
||||
void setCharAt(int r, int c, char ch) { g[offset(r, c)] = (byte) ch; }
|
||||
boolean isLetterAt(int r, int c) { return ((g[offset(r, c)] & 64) != 0); }
|
||||
boolean isDigitAt(int r, int c) { return (g[offset(r, c)] & 48) == 48; }
|
||||
public int H() {
|
||||
return g.length / W;
|
||||
public double similarity(Grid b) {
|
||||
var same = 0;
|
||||
for (int i = 0; i < SIZE; i++) if (g[i] == b.g[i]) same++;
|
||||
return same / (double) (SIZE);
|
||||
}
|
||||
}
|
||||
static Grid makeEmptyGrid() { return new Grid(new byte[SIZE]); }
|
||||
@@ -260,7 +266,7 @@ public record SwedishGenerator(int[] buff) {
|
||||
|
||||
return new Dict(map.values().toArray(Lemma[]::new));
|
||||
}
|
||||
private static int[] intersectSorted(int[] buff, int[] a, int aLen, int[] b, int bLen) {
|
||||
static int[] intersectSorted(int[] buff, int[] a, int aLen, int[] b, int bLen) {
|
||||
//var out = new int[Math.min(aLen, bLen)];
|
||||
int i = 0, j = 0, k = 0, x = 0, y = 0;
|
||||
while (i < aLen && j < bLen) {
|
||||
@@ -324,7 +330,6 @@ public record SwedishGenerator(int[] buff) {
|
||||
public boolean horiz() { return horiz(key); }
|
||||
public int r(int i) { return r(rs, i); }
|
||||
public int c(int i) { return c(cs, i); }
|
||||
|
||||
public static boolean horiz(int key) { return ((key & 15) & 1) == 0; }
|
||||
public static int r(long rs, int i) { return (int) ((rs >> (i << 2)) & 15); }
|
||||
public static int c(long cs, int i) { return (int) ((cs >> (i << 2)) & 15); }
|
||||
@@ -441,7 +446,7 @@ public record SwedishGenerator(int[] buff) {
|
||||
if (lenCounts[n] <= 0) penalty += 12000;
|
||||
}
|
||||
|
||||
boolean horiz = Slot.horiz((r << 8) | (c << 4) | d);
|
||||
boolean horiz = Slot.horiz(d);
|
||||
for (var i = 0; i < n; i++) {
|
||||
int sr = Slot.r(packedRs, i);
|
||||
int sc = Slot.c(packedCs, i);
|
||||
@@ -563,17 +568,13 @@ public record SwedishGenerator(int[] buff) {
|
||||
|
||||
Grid crossover(Rng rng, Grid a, Grid b) {
|
||||
var out = makeEmptyGrid();
|
||||
var cx = (H - 1) / 2.0;
|
||||
var cy = (W - 1) / 2.0;
|
||||
var theta = rng.nextFloat() * Math.PI;
|
||||
var nx = Math.cos(theta);
|
||||
var ny = Math.sin(theta);
|
||||
|
||||
for (var r = 0; r < H; r++)
|
||||
for (var c = 0; c < W; c++) {
|
||||
double x = r - cx, y = c - cy;
|
||||
var side = x * nx + y * ny;
|
||||
out.setCharAt(r, c, (side >= 0) ? a.getCharAt(r, c) : b.getCharAt(r, c));
|
||||
out.setCharAt(r, c, ((r - CROSS_X) * nx + (c - CROSS_Y) * ny >= 0) ? a.getCharAt(r, c) : b.getCharAt(r, c));
|
||||
}
|
||||
|
||||
for (var r = 0; r < H; r++)
|
||||
@@ -602,12 +603,6 @@ public record SwedishGenerator(int[] buff) {
|
||||
return best;
|
||||
}
|
||||
|
||||
double similarity(Grid a, Grid b) {
|
||||
var same = 0;
|
||||
for (var r = 0; r < H; r++) for (var c = 0; c < W; c++) if (a.byteAt(r, c) == b.byteAt(r, c)) same++;
|
||||
return same / (double) (W * H);
|
||||
}
|
||||
|
||||
public Grid generateMask(Rng rng, int[] lenCounts, int popSize, int gens, boolean verbose) {
|
||||
if (verbose) System.out.println("generateMask init pop: " + popSize);
|
||||
var pop = new ArrayList<Grid>();
|
||||
@@ -637,7 +632,7 @@ public record SwedishGenerator(int[] buff) {
|
||||
if (next.size() >= popSize) break;
|
||||
var ok = true;
|
||||
for (var kept : next) {
|
||||
if (similarity(cand, kept) > 0.92) {
|
||||
if (cand.similarity(kept) > 0.92) {
|
||||
ok = false;
|
||||
break;
|
||||
}
|
||||
@@ -666,9 +661,7 @@ public record SwedishGenerator(int[] buff) {
|
||||
public int lastMRV;
|
||||
}
|
||||
|
||||
record Pick(Slot slot,
|
||||
CandidateInfo info,
|
||||
boolean done) { }
|
||||
record Pick(Slot slot, CandidateInfo info, boolean done) { }
|
||||
|
||||
public static record FillResult(boolean ok,
|
||||
Grid grid,
|
||||
@@ -932,7 +925,4 @@ public record SwedishGenerator(int[] buff) {
|
||||
return s + " ".repeat(n - s.length());
|
||||
}
|
||||
|
||||
// ---------------- Top-level generatePuzzle ----------------
|
||||
public record PuzzleResult(SwedishGenerator swe, Dict dict, Grid mask, FillResult filled) { }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user