rockbox/apps/plugins/puzzles
Franklin Wei 552a271c6f puzzles: remove redundant help content
It used to be that each puzzle had a complete copy of the entire
puzzles manual and the "quick help" text for every single puzzle. This
was obviously a waste, so now each puzzle only has the sections of the
manual that apply to it, saving about 100KB or so per puzzle. This
also has the added benefit of shrinking binary size enough to allow
full help support on the c200v2, which has been enabled.

Change-Id: I76c799635de058e4a48e0c18b79537857af7cf85
2017-06-03 13:45:07 -04:00
..
dummy add fake stdio.h 2017-04-30 19:13:13 -04:00
help puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
src puzzles: fix building 2017-05-17 17:42:30 -04:00
genhelp.sh puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
help.c puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
help.h puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
keymaps.h Fix puzzles... again 2017-04-30 13:57:13 -04:00
puzzles.make puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
rbassert.h
rbcompat.h puzzles: refactor and resync with upstream 2017-04-29 18:24:42 -04:00
rbmalloc.c puzzles: refactor and resync with upstream 2017-04-29 18:24:42 -04:00
rbwrappers.c puzzles: refactor and resync with upstream 2017-04-29 18:24:42 -04:00
README.rockbox puzzles: refactor and resync with upstream 2017-04-29 18:24:42 -04:00
rockbox.c puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
SOURCES puzzles: remove redundant help content 2017-06-03 13:45:07 -04:00
SOURCES.games puzzles: clarify target-specific macros 2017-05-21 14:37:17 -04:00

This is the readme for the Rockbox port of Simon Tatham's Portable
Puzzle Collection.

Upstream version used is 7cae89fb4b22c305b3fd98b4e1be065ad527a9f7 from
December 2016. It should be relatively trivial to update it to a newer
version, and should probably be done periodically as changes are made.

Most of the upstream files are essentially untouched, apart from some
minor adjustments to make it compile happily on Rockbox. Some games
still don't work due to issues with their cursor-only control scheme
(untangle being the big culprit here) but the ones that don't are
commented out in SOURCES.games. I'll get around to fixing them
eventually.

Building is done rather hackily, with a rule for every puzzle to be
built... almost 40 at the time of writing. Mr. Someone ought to figure
out how to do that with a wildcard or something.

Kudos to Simon (duh), and Frank, for telling me about it.

Franklin Wei (__builtin)

April 2017: Changes made to move upstream sources to a separate
subdirectory, where they are completely unmodified from the
original. Updating the upstream version is now as simple as copying a
fresh set of sources to src/. Several hacks were used to accomplish
this: a global include specified on the command line, and a directory
of dummy header files.