-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-karaoke.c
116 lines (110 loc) · 3.69 KB
/
setup-karaoke.c
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
105
106
107
108
109
110
111
112
113
114
115
116
/*
* MP3/MPlayer plugin to VDR (C++)
*
* (C) 2001-2005 Stefan Huelswitt <[email protected]>
*
* This code is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*/
#include <string.h>
#include "common.h"
#include "setup-karaoke.h"
cKaraokeSetup KaraokeSetup;
// --- cKaraokeSetup ---------------------------------------------------------------
cKaraokeSetup::cKaraokeSetup(void)
{
InitLoopMode = 0;
InitShuffleMode = 0;
AudioMode = 1;
BgrScan = 1;
EditorMode = 1;
DisplayMode = 2;
BackgrMode = 1;
MenuMode = 2;
TargetLevel = DEFAULT_TARGET_LEVEL;
LimiterLevel = DEFAULT_LIMITER_LEVEL;
Only48kHz = 0;
AudioOutMode = 0;
AbortAtEOL = 1;
HideMainMenu = 0;
KeepSelect = 0;
ExitClose = 0;
osdtheme = 0;
CanScroll = 1;
CanSkip = 0;
Skiptime = 30;
Jumptime = 30;
OSDoffsetx = 0;
OSDoffsety = 0;
Rowcount = 4;
}
const cMP3Theme mp3Theme[eMP3ThemeMaxNumber] =
{
{
// Moronimo NextGen
0xEF2D435A, //clrBackground ok
0xEF416E97, //clrBackground2 ok
0xFFCE7B00, //clrNormalText ok
0xFF9BBAD7, //clrTrackListText ok
0xFF26303A, //clrListItemActiveBackground ok
0xFF9BBAD7, //clrListItemActiveText ok
0xEFCE7B00, //clrProgress ok
0xDF000000, //clrProgressBackground ok
},
{
// Moronimo NextGen Opaque
0xFF2D435A, //clrBackground ok
0xFF416E97, //clrBackground2 ok
0xFFCE7B00, //clrNormalText ok
0xFF9BBAD7, //clrTrackListText ok
0xFF26303A, //clrListItemActiveBackground ok
0xFF9BBAD7, //clrListItemActiveText ok
0xFFCE7B00, //clrProgress ok
0xFF000000, //clrProgressBackground ok
},
{
// Moronimo NextGen Transcluent
0xBC2D435A, //clrBackground ok
0xBC416E97, //clrBackground2 ok
0xBCCE7B00, //clrNormalText ok
0xBC9BBAD7, //clrTrackListText ok
0xBC26303A, //clrListItemActiveBackground ok
0xBC9BBAD7, //clrListItemActiveText ok
0xBCCE7B00, //clrProgress ok
0xBC000000, //clrProgressBackground ok
},
{
// Enigma
0xD0415bBC, //clrBackground ok
0xD0DEE5FA, //clrBackground2 ok
0xFF000000, //clrNormalText ok
0xFF000000, //clrTrackListText ok
0xD0BFC9E6, //clrListItemActiveBackground ok
0xFF000000, //clrListItemActiveText ok
0xFF20C100, //clrProgress ok
0xFFFFFFFF, //clrProgressBackground ok
},
{
// DeepBlue
0xC832557A, //clrBackground ok
0xC80C0C0C, //clrBackground2 ok
0xFF9A9A9A, //clrNormalText ok
0xFF9A9A9A, //clrTrackListText ok
0xC832557A, //clrListItemActiveBackground ok
0xFF9A9A9A, //clrListItemActiveText ok
0xFFCE7B00, //clrProgress ok
0xC832557A, //clrProgressBackground ok
},
};