summaryrefslogtreecommitdiffstats
path: root/apps/plugins
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2018-01-05 17:19:19 -0500
committerFranklin Wei <git@fwei.tk>2018-01-05 18:05:10 -0500
commit896c828152f758f569426db1013a59d4854bc291 (patch)
treec2b9d4acdca7701e66594a90550eb1ff24f67d88 /apps/plugins
parent9f6ce046cb25524693a8fd1bd5c4bd22ac687750 (diff)
downloadrockbox-896c828152f758f569426db1013a59d4854bc291.tar.gz
rockbox-896c828152f758f569426db1013a59d4854bc291.zip
duke3d: unregister timer on exit
This was leading to a crash upon audio playback after running the game. Change-Id: I1e9961da443c21e3eff38bcf9877ffa75a922715
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/sdl/main.c120
-rw-r--r--apps/plugins/sdl/src/timer/rockbox/SDL_systimer.c2
2 files changed, 21 insertions, 101 deletions
diff --git a/apps/plugins/sdl/main.c b/apps/plugins/sdl/main.c
index f679867a17..384055e660 100644
--- a/apps/plugins/sdl/main.c
+++ b/apps/plugins/sdl/main.c
@@ -8,62 +8,13 @@
#include "SDL.h"
#include "SDL_video.h"
-#ifndef COMBINED_SDL
-extern int my_main(int argc, char *argv[]);
-#else
-//#if 0
-extern int SDLBlock_main(int argc, char *argv[]);
-extern int ballfield_main(int argc, char *argv[]);
-extern int parallax3_main(int argc, char *argv[]);
-extern int parallax4_main(int argc, char *argv[]);
-extern int testbitmap_main(int argc, char *argv[]);
-extern int testcursor_main(int argc, char *argv[]);
-extern int testhread_main(int argc, char *argv[]);
-extern int testplatform_main(int argc, char *argv[]);
-extern int testsprite_main(int argc, char *argv[]);
-extern int testwin_main(int argc, char *argv[]);
-//#endif
-extern int abe_main(int argc, char *argv[]);
-extern int ballerburg_main(int argc, char **argv);
-extern int raytrace_main(int argc, char *argv[]);
-extern int wolf3d_main(int argc, char *argv[]);
-extern int testsound_main(int argc, char *argv[]);
-extern int duke3d_main(int argc,char **argv);
-extern int quake_main (int c, char **v);
-
-char *wolf3d_argv[] = { "wolf3d", "--audiobuffer", "2048" };
-char *duke3d_argv[] = { "duke3d" };
-char *quake_argv[] = { "quake", "-basedir", "/.rockbox/quake" };
-
-struct prog_t {
- const char *name;
- int (*main)(int argc, char *argv[]);
- bool printf_enabled;
- int argc;
- char **argv;
-} programs[] = {
-#if 0
- { "Abe's Amazing Adventure", abe_main, true },
- { "Ballerburg", ballerburg_main, false },
- { "Screensaver", SDLBlock_main, false },
- { "Ball Field", ballfield_main, false },
- { "Parallax v.3", parallax3_main, false },
- { "Parallax v.4", parallax4_main, false },
- { "Raytrace", raytrace_main, false },
- { "Test Bitmap", testbitmap_main, false },
- { "Test Cursor", testcursor_main, false },
- { "Test Thread", testhread_main, true },
- { "Test Platform", testplatform_main, true },
- { "Test Sprite", testsprite_main, false },
- { "Test Window", testwin_main, false },
-#endif
- { "Duke3D", duke3d_main, true, ARRAYLEN(duke3d_argv), duke3d_argv },
- { "Wolf3D", wolf3d_main, false, ARRAYLEN(wolf3d_argv), wolf3d_argv },
- { "Quake", quake_main, true, ARRAYLEN(quake_argv), quake_argv },
- { "Test sound", testsound_main, true, 0, NULL },
-};
+#ifdef COMBINED_SDL
+#error deprecated
#endif
+/* SDL program */
+extern int my_main(int argc, char *argv[]);
+
void *audiobuf = NULL;
unsigned int sdl_thread_id, main_thread_id;
@@ -72,7 +23,7 @@ bool printf_enabled = true;
static void (*exit_cb)(void) = NULL;
-/* sets "our" exit handler */
+/* sets the exit handler presented to the program */
void rbsdl_atexit(void (*cb)(void))
{
if(exit_cb)
@@ -100,6 +51,16 @@ void cleanup(void)
if(exit_cb != SDL_Quit)
SDL_Quit();
+#if defined(HAVE_LCD_COLOR) && !defined(SIMULATOR) && !defined(RB_PROFILE)
+#define USE_TIMER
+#endif
+
+#ifdef USE_TIMER
+ /* stop timer callback if there is one, since the memory it
+ * resides in could be overwritten */
+ rb->timer_unregister();
+#endif
+
if(audiobuf)
memset(audiobuf, 0, 4); /* clear */
@@ -110,34 +71,7 @@ void cleanup(void)
#endif
}
-#ifdef COMBINED_SDL
-const char *formatter(char *buf, size_t n, int i, const char *unit)
-{
- snprintf(buf, n, "%s", programs[i].name);
- return buf;
-}
-#endif
-
-#ifdef SIMULATOR
-#include <signal.h>
-
-void segv(int s, siginfo_t *si, void *ptr)
-{
- LOGF("SEGV: at address %llx (%d)", si->si_addr, si->si_code);
- exit(1);
-}
-
-void install_segv(void)
-{
- struct sigaction act;
- act.sa_handler = NULL;
- sigemptyset(&act.sa_mask);
- act.sa_flags = SA_SIGINFO;
- act.sa_sigaction = segv;
- sigaction(SIGSEGV, &act, NULL);
-}
-#endif
-
+/* 256KB */
static long main_stack[1024 * 1024 / 4];
int (*main_fn)(int argc, char *argv[]);
int prog_idx;
@@ -266,36 +200,22 @@ enum plugin_status plugin_start(const void *param)
return PLUGIN_ERROR;
}
-#ifdef SIMULATOR
- install_segv();
-#endif
-
-#ifdef COMBINED_SDL
- int prog = 0;
-
- rb->set_int("Choose SDL Program", "", UNIT_INT, &prog, NULL, 1, 0, ARRAYLEN(programs) - 1, formatter);
- prog_idx = prog;
-
- main_fn = programs[prog].main;
- printf_enabled = programs[prog].printf_enabled;
-#else
main_fn = my_main;
-#endif
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
rb->cpu_boost(true);
#endif
backlight_ignore_timeout();
- /* real exit handler */
+ /* set the real exit handler */
#undef rb_atexit
rb_atexit(cleanup);
- /* make a new thread to use a bigger stack */
+ /* make a new thread to use a bigger stack than otherwise accessible */
sdl_thread_id = rb->create_thread(main_thread, main_stack, sizeof(main_stack), 0, "sdl_main" IF_PRIO(, PRIORITY_USER_INTERFACE) IF_COP(, CPU));
rb->thread_wait(sdl_thread_id);
- rb->sleep(HZ); /* wait a second... */
+ rb->sleep(HZ); /* wait a second in case there's an error message on screen */
return PLUGIN_OK;
}
diff --git a/apps/plugins/sdl/src/timer/rockbox/SDL_systimer.c b/apps/plugins/sdl/src/timer/rockbox/SDL_systimer.c
index 5769a87662..f4e886260c 100644
--- a/apps/plugins/sdl/src/timer/rockbox/SDL_systimer.c
+++ b/apps/plugins/sdl/src/timer/rockbox/SDL_systimer.c
@@ -114,4 +114,4 @@ void SDL_SYS_StopTimer(void)
return;
}
-#endif /* SDL_TIMER_DUMMY || SDL_TIMERS_DISABLED */
+#endif