DoodlesEpic / MultiplayerPicross

Picross-style nonogram puzzles, but multiplayer.
https://picross.doodlesdev.com/
GNU Affero General Public License v3.0
3 stars 0 forks source link

feat: procedural nonogram #10

Open DoodlesEpic opened 1 year ago

DoodlesEpic commented 1 year ago

For longevity and extra difficulty it would be cool to have the option of creating PRNG nonogram rooms. This would also help me with the fact I'm not that creative to create more nonogram pictures for the game.

DoodlesEpic commented 1 year ago

I just noticed this will require some form of change to the database schema. Either we will store the solution inside the rooms table, or the figures table will need to have a field which references a room, so they are only used for one room. This would be a problem however, since right now figures must be unique.

I'll keep thinking how I will implement this.