summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/unfinished/README
diff options
context:
space:
mode:
authorFranklin Wei <franklin@rockbox.org>2024-08-18 21:14:07 -0400
committerFranklin Wei <franklin@rockbox.org>2024-08-25 19:30:01 -0400
commiteca00638aeab59cf03287b9f298c86a6de1b5a9a (patch)
tree32f14d7c1a05f86b2ba7e91be647233570203599 /apps/plugins/puzzles/src/unfinished/README
parent3dd69ce23e3089ac78c512f02e59406d05302fa4 (diff)
downloadrockbox-eca00638aeab59cf03287b9f298c86a6de1b5a9a.tar.gz
rockbox-eca00638aeab59cf03287b9f298c86a6de1b5a9a.zip
puzzles: add Slide and Sokoban.
This enables two of the "unfinished" puzzles. Slide requires a new "sticky mouse mode" to enable dragging. The help system is disabled for these puzzles, since they lack manual chapters. Group is currently unplayable due to lack of request_keys() support, which will need to be added upstream. Separate fails to draw anything. Change-Id: I7bcff3679ac5b10b0f39c5eaa19a36b4b1fe8d53
Diffstat (limited to 'apps/plugins/puzzles/src/unfinished/README')
-rw-r--r--apps/plugins/puzzles/src/unfinished/README14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/plugins/puzzles/src/unfinished/README b/apps/plugins/puzzles/src/unfinished/README
new file mode 100644
index 0000000000..c96ccc935a
--- /dev/null
+++ b/apps/plugins/puzzles/src/unfinished/README
@@ -0,0 +1,14 @@
1This subdirectory contains puzzle implementations which are
2half-written, fundamentally flawed, or in other ways unready to be
3shipped as part of the polished Puzzles collection.
4
5The CMake build system will _build_ all of the source in this
6directory (to ensure it hasn't become unbuildable), but they won't be
7included in all-in-one puzzle binaries or installed by 'make install'
8targets. If you want to temporarily change that, you can reconfigure
9your build by defining the CMake variable PUZZLES_ENABLE_UNFINISHED.
10For example,
11
12 cmake . -DPUZZLES_ENABLE_UNFINISHED="group;slide"
13
14will build as if both Group and Slide were fully official puzzles.