PuzzleServer / mainpuzzleserver

The main repo for the Puzzle Hunt and Puzzleday servers.
MIT License
9 stars 32 forks source link

Feature request: better group sorting for puzzle state map #1024

Closed jbodner09 closed 2 weeks ago

jbodner09 commented 2 weeks ago

Right now, the state map sorts each puzzle within a group by the number of solves. This is only useful if there are a small number of groups/large number of puzzles per group. If it's the opposite, it becomes very difficult to tell which puzzles are getting the most/least solves within a group (and therefore overall).

Possible solution: In the filter, change the "all other puzzles" star * to lump all puzzles together instead of sorting them by group. That way, any specific groups that are important like the meta still get shown together if they're mentioned specifically in the filter, and all others are just measured together, as if the group doesn't matter.

Bonus feature: filter out, or have a way to optionally filter out, any non-puzzles from the state map, likely based on the isPuzzle flag that's set per puzzle.