X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/81659a17b0d13c96114c9b3a58550305ca31ce2a..a091c966e5377c1dea045747d8478b734e5c66c9:/badge/main.c?ds=inline diff --git a/badge/main.c b/badge/main.c index a712686..466ae3e 100644 --- a/badge/main.c +++ b/badge/main.c @@ -54,10 +54,13 @@ #endif #include "init.h" +#include "ui/browser.h" #include "ui/display.h" -#include "ui/sprite.h" #include "ui/event.h" #include "ui/font.h" +#include "ui/menu.h" +#include "ui/sprite.h" +#include "ui/vanity.h" #include "util/util.h" #include "jumpnrun/jumpnrun.h" @@ -183,17 +186,62 @@ void rbInit() { #endif -/**************************************************************************/ -/*! - Main program entry point. After reset, normal code execution will - begin here. +static void usbmode(void) { + badge_event_stop(); + + badge_framebuffer fb = { { { 0 } } }; + + badge_framebuffer_render_text(&fb, 23, 30, "USB-Modus"); +/* + badge_framebuffer_render_number(&fb, 23, 50, sizeof(jumpnrun_tile)); + badge_framebuffer_render_number(&fb, 33, 50, sizeof(jumpnrun_item)); + badge_framebuffer_render_number(&fb, 48, 50, sizeof(jumpnrun_enemy)); */ -/**************************************************************************/ + badge_framebuffer_flush(&fb); + usbMSCInit(); + for(;;); +} + +static void fahrplan(void) { + f_chdir("/fahrplan"); + badge_browse_textfiles("fahrplan.lst"); +} + +uint8_t main_menu_show(uint8_t selected) { + char const menu_buf[][15] = { + "Vanity-Screen", + "Super Hackio", + "Fahrplan", + "USB-Modus" + }; + + char const *menu[ARRAY_SIZE(menu_buf)]; + for(uint8_t i = 0; i < ARRAY_SIZE(menu_buf); ++i) { + menu[i] = menu_buf[i]; + } + + f_chdir("/"); + // first_visible = 0, weil Menü so kurz. Ggf. Parameter aus main_menu empfangen und merken. + size_t first_visible = 0; + return (uint8_t) badge_menu(menu, ARRAY_SIZE(menu), &first_visible, selected); +} + +void main_menu(void) { + uint8_t selected = 0; + + for(;;) { + selected = main_menu_show(selected); + switch(selected) { + case 0: badge_vanity_show(); break; + case 1: jumpnrun_play (); break; + case 2: fahrplan (); break; + case 3: usbmode (); break; + } + } +} + int main(void) { - // Configure cpu and mandatory peripherals - //systemInit(); - cpuInit(); systickInit(CFG_SYSTICK_DELAY_IN_MS); @@ -209,16 +257,11 @@ int main(void) f_mount(0, &fs); if(badge_input_raw() & BADGE_EVENT_KEY_DOWN) { - badge_framebuffer fb = { { { 0 } } }; - - fb.data[0][0] = badge_framebuffer_render_text(&fb, 23, 30, "USB-Modus"); - badge_framebuffer_flush(&fb); - usbMSCInit(); - for(;;); + usbmode(); } badge_event_start(); - jumpnrun_play(); + main_menu(); return 0; }