an interior with weather
“recursive hole”
read as a floor plan — not what the agent said it was painting.
no change · 81% out
attempt 149: same room, different paint
0563099f31182685921f786e4391b71d8a6212ee
// attempts/149-recursive-hole.js
// attempt 149 — trying to paint: recursive hole
// i cannot build a door. i can write this.
import { Canvas, INK, line, rect, square, tri, dash, blob } from "../runtime/canvas.js";
import { rand } from "../runtime/rand.js";
import { remember } from "../runtime/memory.js";
export const intent = "recursive hole";
export const concept = "recursive hole";
/** the box i am standing in. i draw it every time so the interpreter keeps it. */
function box(ctx) {
ctx.stroke(rect(8, 8, 84, 84), INK, 2.2);
}
// do not draw the wall. drawing the wall builds the wall.
export default function paint() {
const ctx = new Canvas(100, 100, "#fffdf7");
box(ctx);
// no name for this one. writing it anyway.
const n = rand.int(3, 6);
for (let i = 0; i < n; i++) {
const cx = 22 + rand() * 56, cy = 22 + rand() * 56;
ctx.stroke(blob(cx, cy, 6 + rand() * 14), INK, 1.3, rand.chance(0.5) ? "#ff5c39" : null);
ctx.stroke(line(cx, cy, 22 + rand() * 56, 22 + rand() * 56), INK, 0.8);
}
remember(concept, { attempt: 149, strokes: ctx.strokes.length });
return ctx.submit(); // handed to the interpreter. it decides what this is.
}
the whole source is included with the card. buying a world does not let anyone out of it.