summaryrefslogtreecommitdiffstats
path: root/apps/plugins/SOURCES
blob: 3e7ca5894c7213ab70bd69efe6ac7c3bef12dc25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* plugins common to all models */
battery_bench.c
battery_test.c
chessclock.c
credits.c
cube.c
favorites.c
firmware_flash.c
logo.c
mosaique.c
rockbox_flash.c
search.c
snow.c
sort.c
stats.c
stopwatch.c
vbrfix.c
viewer.c
dict.c
metronome.c

#ifndef IRIVER_IFP7XX_SERIES /* Temporarily disable plugins for iFP7xx */
#ifdef HAVE_LCD_BITMAP /* Recorder/Ondio models only */

/* Plugins needing the grayscale lib */
#if CONFIG_LCD != LCD_IPOD2BPP
#ifndef HAVE_LCD_COLOR
fire.c
#endif
plasma.c
jpeg.c
mandelbrot.c
#endif

solitaire.c
bejeweled.c
bounce.c
/* H300 and iPod Color/Video only */
#if (LCD_WIDTH >= 220) && (LCD_HEIGHT >= 176) && (LCD_DEPTH == 16)
brickmania.c
#endif
calculator.c
chip8.c
demystify.c
flipit.c
grayscale.c
minesweeper.c
oscillograph.c
oscilloscope.c
pong.c
rockblox.c
#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(SIMULATOR)
/* loader, only needed for Archos */
rockboy.c
#endif
sliding_puzzle.c
snake.c
snake2.c
sokoban.c
star.c
starfield.c
#if (LCD_WIDTH != 176)
/* These need adjusting for the Nano's screen */
sudoku.c
#endif
#if CONFIG_LCD == LCD_SSD1815
video.c
#endif
vu_meter.c

#ifdef CONFIG_RTC 
#if CONFIG_KEYPAD == RECORDER_PAD
/* Recorder models only for now */
calendar.c
clock.c
#endif
#endif /* #ifdef CONFIG_RTC */

#if CONFIG_KEYPAD != ONDIO_PAD
/* gradually bring in the ones not working yet */
wormlet.c
#endif /* #if CONFIG_KEYPAD != ONDIO_PAD */
#endif /*#ifdef HAVE_LCD_BITMAP */

#ifdef HAVE_LCD_CHARCELLS /* Player model only */
euroconverter.c
jackpot.c
nim.c
#endif /* #ifdef HAVE_LCD_CHARCELLS */

#ifndef HAVE_MMC
/* not for Ondio, has no remote control pin */
alpine_cdc.c
#endif

#if CONFIG_CODEC == SWCODEC /* software codec platforms */
mp3_encoder.c
iriverify.c
wav2wv.c
midi2wav.c
#else
splitedit.c
#endif /* iFP7xx */
#endif