mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
- Update assets and references for new project - Revert DFU image and CLI motd - Remove NSFW text and flag - Remove credits animation (will be replaced with a setting menu soon) - New EvilPortal example HTML and better error message - Initial standalone naming for asset packs and mainmenu apps - File migration fixes/improvements - Remove hotfix workflow
30 lines
928 B
C
30 lines
928 B
C
#pragma once
|
|
|
|
#include <gui/scene_manager.h>
|
|
|
|
// Generate scene id and total number
|
|
#define ADD_SCENE(prefix, name, id) MomentumAppScene##id,
|
|
typedef enum {
|
|
#include "momentum_app_scene_config.h"
|
|
MomentumAppSceneNum,
|
|
} MomentumAppScene;
|
|
#undef ADD_SCENE
|
|
|
|
extern const SceneManagerHandlers momentum_app_scene_handlers;
|
|
|
|
// Generate scene on_enter handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) void prefix##_scene_##name##_on_enter(void*);
|
|
#include "momentum_app_scene_config.h"
|
|
#undef ADD_SCENE
|
|
|
|
// Generate scene on_event handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) \
|
|
bool prefix##_scene_##name##_on_event(void* context, SceneManagerEvent event);
|
|
#include "momentum_app_scene_config.h"
|
|
#undef ADD_SCENE
|
|
|
|
// Generate scene on_exit handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) void prefix##_scene_##name##_on_exit(void* context);
|
|
#include "momentum_app_scene_config.h"
|
|
#undef ADD_SCENE
|