Mystify Demo, TwoEleven updates & Snake (#21)

* **New Features**
  * Added Mystify screensaver demo with animated polygons and trails
  * Added Snake game with multiple difficulties, high-score persistence, and multi-input (touch/keyboard) support
  * Added CLI tool for building, packaging, and deploying apps (end-to-end build/install/run workflow)
  * Per-grid-size high-score persistence added to 2048 app; expanded keyboard controls (WASD and device-specific mappings)

* **Documentation**
  * Added Snake README with gameplay, controls, and usage instructions
This commit is contained in:
Shadowtrance
2026-02-07 08:35:13 +10:00
committed by GitHub
parent d31b6b48a4
commit 46cf00d92e
41 changed files with 4025 additions and 131 deletions
+26 -3
View File
@@ -11,14 +11,37 @@
class TwoEleven final : public App {
private:
// UI element pointers (invalidated on hide, recreated on show)
lv_obj_t* scoreLabel = nullptr;
lv_obj_t* scoreWrapper = nullptr;
lv_obj_t* toolbar = nullptr;
lv_obj_t* mainWrapper = nullptr;
lv_obj_t* newGameWrapper = nullptr;
lv_obj_t* gameObject = nullptr;
// State tracking (persists across hide/show cycles)
int32_t pendingSelection = -1;
bool shouldExit = false;
bool showHelpOnShow = false;
int32_t currentGridSize = -1;
bool highScoresLoaded = false;
// Dialog launch IDs
AppLaunchId selectionDialogId = 0;
AppLaunchId gameOverDialogId = 0;
AppLaunchId winDialogId = 0;
AppLaunchId helpDialogId = 0;
static void twoElevenEventCb(lv_event_t* e);
static void newGameBtnEvent(lv_event_t* e);
static void create_game(lv_obj_t* parent, uint16_t size, lv_obj_t* toolbar);
static void create_selection(lv_obj_t* parent, lv_obj_t* toolbar);
static void size_select_cb(lv_event_t* e);
void createGame(lv_obj_t* parent, uint16_t size, lv_obj_t* toolbar);
void showSelectionDialog();
void showHelpDialog();
public:
void onShow(AppHandle context, lv_obj_t* parent) override;
void onHide(AppHandle context) override;
void onResult(AppHandle appHandle, void* _Nullable data, AppLaunchId launchId, AppResult result, BundleHandle resultData) override;
};