You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Brian Hicks 9b1d627c2f build in optimized mode 4 years ago
nix update niv 4 years ago
src don't iterate over data so much 4 years ago
tests figure out further issues in get 4 years ago
.envrc check in .envrc 4 years ago
.gitignore add deps 4 years ago
README.md number items instead of dashing them 4 years ago
develop.sh add script to use when doing local dev 4 years ago
elm.json hash window for ID instead of using grid location 4 years ago
netlify.toml build in optimized mode 4 years ago
package-lock.json add deps 4 years ago
package.json add deps 4 years ago
shell.nix add deps 4 years ago

README.md

Wave Function Collapse

How to Develop

  1. have Nix (it's available for Mac and Linux)
  2. have direnv
  3. cd here
  4. direnv allow
  5. ./develop.sh
  6. Go to localhost:8000. The browser will reload automatically when you make changes.

To Do / Done

  1. Read the input bitmap and count NxN patterns.
  • (optional) Augment pattern data with rotations and reflections.
  1. Create an array with the dimensions of the output (called "wave" in the source). Each element of this array represents a state of an NxN region in the output. A state of an NxN region is a superposition of NxN patterns of the input with boolean coefficients (so a state of a pixel in the output is a superposition of input colors with real coefficients). False coefficient means that the corresponding pattern is forbidden, true coefficient means that the corresponding pattern is not yet forbidden.
  2. Initialize the wave in the completely unobserved state, i.e. with all the boolean coefficients being true.
  3. Repeat the following steps:
    • Observation:
      • Find a wave element with the minimal nonzero entropy. If there is no such elements (if all elements have zero or undefined entropy) then break the cycle (4) and go to step (5).
      • Collapse this element into a definite state according to its coefficients and the distribution of NxN patterns in the input.
    • Propagation: propagate information gained on the previous observation step.
  4. By now all the wave elements are either in a completely observed state (all the coefficients except one being zero) or in the contradictory state (all the coefficients being zero). In the first case return the output. In the second case finish the work without returning anything.