pdbox: add fuze keymap
[kugel-rb.git] / apps / plugins / SUBDIRS
blob1d0bfe9cc1da6632af525abb51e1b594b55765a5
1 /* For all targets */
2 shortcuts
4 /* For various targets... */
6 #if CONFIG_RTC
7 clock
8 #endif
11 /* For all targets with a bitmap display */
12 #ifdef HAVE_LCD_BITMAP
14 #if    (CONFIG_KEYPAD != ONDIO_PAD) /* not enough buttons */ \
15     && (CONFIG_KEYPAD != SANSA_M200_PAD) /* not enough buttons */ \
16     && (LCD_PIXELFORMAT != HORIZONTAL_PACKING) /* TODO */ \
17     && (LCD_PIXELFORMAT != VERTICAL_INTERLEAVED) /* TODO */ \
18     && (defined(HAVE_LCD_COLOR) || (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) || \
19                                    (LCD_HEIGHT == 128) && (LCD_DEPTH == 2)) \
20     &&  (PLUGIN_BUFFER_SIZE >= 0x60000 /* it needs a lot of RAM */ || \
21          PLUGIN_BUFFER_SIZE <= 0x10000) /* but we can use overlays */
22 rockboy
23 #endif
25 #ifdef HAVE_TAGCACHE
26 pictureflow
27 #endif
29 #if CONFIG_CODEC == SWCODEC && PLUGIN_BUFFER_SIZE > 0x20000
30 fft
31 #endif
33 #if PLUGIN_BUFFER_SIZE > 0x20000 || PLUGIN_BUFFER_SIZE <= 0x10000 /* overlay */
34 chessbox
35 #endif
37 fractals
38 imageviewer
39 sudoku
40 reversi
41 goban
43 /* setjmp/longjmp are not implemented on sh */
44 #if (CONFIG_CPU != SH7034)
45 frotz
46 #endif
48 #ifndef OLYMPUS_MROBE_500
49 #if PLUGIN_BUFFER_SIZE > 0x40000 || PLUGIN_BUFFER_SIZE <= 0x10000 /* overlay */
50 zxbox
51 #endif
52 #endif
54 #endif /* HAVE_LCD_BITMAP */
56 /* For all big enough colour screens, iriver H1x0 and iAudio M5 */
57 #if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\
58  || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
59 pacbox
60 #endif
62 #if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
63     (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) && \
64     !defined(RB_PROFILE)
65 doom
66 #endif
68 /* For all the swcodec targets */
69 #if CONFIG_CODEC == SWCODEC
71 #if MEMORYSIZE > 2 /* we need a lot of RAM for instruments */
72 midi
73 #endif
75 /* beatbox */
76 #if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES) \
77     || CONFIG_KEYPAD == SANSA_FUZE_PAD
78 /* PDBox is confirmed to run on these player models. */
79 pdbox
80 #endif
82 #if !defined(RB_PROFILE) && MEMORYSIZE > 2  /* mpegplayer allocates at least 2MB of RAM */
83 mpegplayer
84 #endif
86 #endif /* CONFIG_CODEC == SWCODEC */
88 /* Lua needs at least 160 KB to work in */
89 #if PLUGIN_BUFFER_SIZE >= 0x80000
90 lua
91 #endif