4074177ce25b04100d87fdfea71b75429214564e
[kugel-rb.git] / apps / plugins / SUBDIRS
blob4074177ce25b04100d87fdfea71b75429214564e
1 /* For all targets */
2 shortcuts
3 text_viewer
5 /* For various targets... */
7 #if CONFIG_RTC
8 clock
9 #endif
12 /* For all targets with a bitmap display */
13 #ifdef HAVE_LCD_BITMAP
15 #if    (CONFIG_KEYPAD != ONDIO_PAD) /* not enough buttons */ \
16     && (CONFIG_KEYPAD != SANSA_M200_PAD) /* not enough buttons */ \
17     && (LCD_PIXELFORMAT != HORIZONTAL_PACKING) /* TODO */ \
18     && (LCD_PIXELFORMAT != VERTICAL_INTERLEAVED) /* TODO */ \
19     && (defined(HAVE_LCD_COLOR) || (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) || \
20                                    (LCD_HEIGHT == 128) && (LCD_DEPTH == 2)) \
21     &&  (PLUGIN_BUFFER_SIZE >= 0x60000 /* it needs a lot of RAM */ || \
22          PLUGIN_BUFFER_SIZE <= 0x20000) /* but we can use overlays */
23 rockboy
24 #endif
26 #ifdef HAVE_TAGCACHE
27 pictureflow
28 #endif
30 #if CONFIG_CODEC == SWCODEC && PLUGIN_BUFFER_SIZE > 0x20000
31 fft
32 #endif
34 chessbox
35 fractals
36 imageviewer
37 sudoku
38 reversi
39 goban
41 /* setjmp/longjmp are not implemented on sh */
42 #if (CONFIG_CPU != SH7034)
43 frotz
44 #endif
46 #ifndef OLYMPUS_MROBE_500
47 #if PLUGIN_BUFFER_SIZE > 0x40000 || PLUGIN_BUFFER_SIZE <= 0x20000 /* overlay */
48 zxbox
49 #endif
50 #endif
52 #endif /* HAVE_LCD_BITMAP */
54 /* For all big enough colour screens, iriver H1x0 and iAudio M5 */
55 #if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\
56  || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
57 pacbox
58 #endif
60 #if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
61     (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) && \
62     !defined(RB_PROFILE)
63 doom
64 #endif
66 /* For all the swcodec targets */
67 #if CONFIG_CODEC == SWCODEC
69 #if MEMORYSIZE > 2 /* we need a lot of RAM for instruments */
70 midi
71 #endif
73 /* beatbox */
74 #if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES) || \
75     (CONFIG_KEYPAD == SANSA_FUZE_PAD) || \
76     (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
77     (CONFIG_KEYPAD == IPOD_1G2G_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