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
This commit is contained in:
Franklin Wei 2024-08-18 21:14:07 -04:00
parent 3dd69ce23e
commit eca00638ae
58 changed files with 9698 additions and 26 deletions

View file

@ -0,0 +1,8 @@
#include "help.h"
const char help_text[] __attribute__((weak)) = "";
const char quick_help_text[] __attribute__((weak)) = "";
const unsigned short help_text_len __attribute__((weak)) = 0, quick_help_text_len __attribute__((weak)) = 0, help_text_words __attribute__((weak)) = 0;
struct style_text help_text_style[] __attribute__((weak)) = {};
const bool help_valid __attribute__((weak)) = false;