new plugin: FS#10559 - lrcplayer: a plugin to view .lrc file.
[kugel-rb.git] / apps / plugins / SUBDIRS
blobcf1e9d2b802927b12571cb6ef3174ff0bd86d8c9
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 <= 0x10000) /* 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 #if PLUGIN_BUFFER_SIZE > 0x20000 || PLUGIN_BUFFER_SIZE <= 0x10000 /* overlay */
35 chessbox
36 #endif
38 fractals
39 imageviewer
40 sudoku
41 reversi
42 goban
44 /* setjmp/longjmp are not implemented on sh */
45 #if (CONFIG_CPU != SH7034)
46 frotz
47 #endif
49 #ifndef OLYMPUS_MROBE_500
50 #if PLUGIN_BUFFER_SIZE > 0x40000 || PLUGIN_BUFFER_SIZE <= 0x10000 /* overlay */
51 zxbox
52 #endif
53 #endif
55 #endif /* HAVE_LCD_BITMAP */
57 /* For all big enough colour screens, iriver H1x0 and iAudio M5 */
58 #if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\
59  || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5)
60 pacbox
61 #endif
63 #if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
64     (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) && \
65     !defined(RB_PROFILE)
66 doom
67 #endif
69 /* For all the swcodec targets */
70 #if CONFIG_CODEC == SWCODEC
72 #if MEMORYSIZE > 2 /* we need a lot of RAM for instruments */
73 midi
74 #endif
76 /* beatbox */
77 #if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES) || \
78     (CONFIG_KEYPAD == SANSA_FUZE_PAD) || \
79     (CONFIG_KEYPAD == IPOD_4G_PAD) || (CONFIG_KEYPAD == IPOD_3G_PAD) || \
80     (CONFIG_KEYPAD == IPOD_1G2G_PAD)
81 /* PDBox is confirmed to run on these player models. */
82 pdbox
83 #endif
85 #if !defined(RB_PROFILE) && MEMORYSIZE > 2  /* mpegplayer allocates at least 2MB of RAM */
86 mpegplayer
87 #endif
89 #endif /* CONFIG_CODEC == SWCODEC */
91 /* Lua needs at least 160 KB to work in */
92 #if PLUGIN_BUFFER_SIZE >= 0x80000
93 lua
94 #endif