-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadplay.ini
305 lines (259 loc) · 5.5 KB
/
adplay.ini
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
; AdPlay/DOS initialization file
;
; This file is organized in sections (enclosed in []-brackets) and
; subsections (enclosed in ()-brackets). All options are "variable = value"
; pairs.
;
; A section is what is selectable in the application. It represents a
; configuration fraction. Sections can reference other sections.
;
; A subsection is generally used to set options for a specific window inside
; the application. These subsections are named accordingly.
;
; The following subsections are available:
; titlebar Title bar Window
; infownd Help/Song Message Window
; songwnd Song Info Window
; instwnd Instruments Window
; filesel File Selector Window
; volbars Volume Bars Window
; mastervol Master Volume Window
;
; Option value types are:
; <string> is any string, processed raw up to the end of the line.
; <boolean> is a boolean value. "True" or "Yes" represent a true logical value,
; any other value represents a false logical value.
; <integer> is any integral value (negative or positive).
; <uint> is any positive integral value.
; <char> is a single character.
;
; Integral values can be specified as decimal, hexadecimal or octal numbers.
; To specify a hexadecimal number, prefix it with 0x. To specify an octal number,
; prefix it with 0. Any other value is interpreted as decimal.
; The section named "Default" is always loaded at startup and has to be
; specified once in each initialization file.
[Default]
; Additionally load the sections "HighRes" and "Color", for a high resolution,
; colorful experience. ;)
Section = HighRes
Section = Color
; The standard OPL2 base port is at 0x388.
AdlibPort = 0x388
; Don't force the OPL2 output port, but probe if it's really there.
Force = No
; Add records from file "adplug.db" in current directory to database, if it exists.
Database = adplug.db
; How to sort files in file selector.
; This option can be set to the following values:
; Name Sort by full filename
; Extension Sort by filename, but group files with the same extension
SortBy = Name
; What to do on song end.
; This option can be set to the following values:
; Nothing Do nothing. The song will auto-rewind eventually
; Rewind Forcibly rewind the song
; Stop Stop playback completely
OnSongEnd = Nothing
; The following section is AdPlay's default color section.
[Color]
; The background color for the whole screen (not visible with the default window layout)
Background = 7
; Window border color
ColBorder = 2
; Window caption color for an unfocused window
ColCaption = 12
; Color for texts inside the windows
ColIn = 10
; Color for selected items in a listbox (like the layout selector)
ColSelect = 0x71
; Color for unselected items in a listbox
ColUnselect = 10
; Color for the volumebars (in the "unclipped" range)
ColBar = 10
; Color for the volumebars (in the "clipped" range)
ColClip = 4
; Color for the window caption of a focused window
ColFocus = 4
; Ordinary file color in file selector (first option for selected, second for unselected)
ColFileSel = 0x71
ColFileUnsel = 4
; Directory color in file selector
ColDirSel = 0x71
ColDirUnsel = 2
; Drive color in file selector
ColDriveSel = 0x71
ColDriveUnsel = 6
; Color for files that are supported by AdPlay/DOS
ColSupportedSel = 0x71
ColSupportedUnsel = 10
; The following section is for monochrome displays. It defines a B/W appearance.
[Monochrome]
Background = 7
ColBorder = 7
ColCaption = 7
ColIn = 7
ColSelect = 0x70
ColUnselect = 7
ColBar = 7
ColClip = 7
ColFocus = 0x70
ColFileSel = 0x70
ColFileUnsel = 7
ColDirSel = 0x70
ColDirUnsel = 7
ColDriveSel = 0x70
ColDriveUnsel = 7
ColSupportedSel = 0x70
ColSupportedUnsel = 7
; The following section was created by Death Adder.
[Cherry]
Background = 7
ColBorder = 4
ColCaption = 12
ColIn = 12
ColSelect = 4
ColUnselect = 12
ColBar = 12
ColClip = 4
ColFocus = 4
ColFileSel = 12
ColFileUnsel = 4
ColDirSel = 12
ColDirUnsel = 4
ColDriveSel = 12
ColDriveUnsel = 4
ColSupportedSel = 4
ColSupportedUnsel = 12
; The following section was created by Death Adder.
[Arctic]
Background = 7
ColBorder = 9
ColCaption = 3
ColIn = 11
ColSelect = 9
ColUnselect = 11
ColBar = 3
ColClip = 9
ColFocus = 11
ColFileSel = 11
ColFileUnsel = 9
ColDirSel = 11
ColDirUnsel = 9
ColDriveSel = 11
ColDriveUnsel = 9
ColSupportedSel = 9
ColSupportedUnsel = 11
; The following section defines a high resolution (80x50) interface.
[HighRes]
HighRes = Yes
(titlebar)
PosX = 0
PosY = 0
SizeX = 80
SizeY = 5
(infownd)
PosX = 15
PosY = 5
SizeX = 65
SizeY = 19
(songwnd)
PosX = 58
PosY = 40
SizeX = 22
SizeY = 10
(instwnd)
PosX = 15
PosY = 24
SizeX = 43
SizeY = 26
(filesel)
PosX = 0
PosY = 5
SizeX = 15
SizeY = 45
(volbars)
PosX = 58
PosY = 24
SizeX = 11
SizeY = 16
(mastervol)
PosX = 69
PosY = 24
SizeX = 11
SizeY = 16
; The following section defines a low resolution (80x25) interface.
[LowRes]
HighRes = No
(titlebar)
PosX = 0
PosY = 0
SizeX = 71
SizeY = 5
(infownd)
PosX = 15
PosY = 5
SizeX = 54
SizeY = 10
(songwnd)
PosX = 58
PosY = 15
SizeX = 22
SizeY = 10
(instwnd)
PosX = 15
PosY = 15
SizeX = 43
SizeY = 10
(filesel)
PosX = 0
PosY = 5
SizeX = 15
SizeY = 20
(volbars)
PosX = 69
PosY = 5
SizeX = 11
SizeY = 10
(mastervol)
PosX = 71
PosY = 0
SizeX = 9
SizeY = 5
; Big spectrum analyzer. ;)
[Analyzer]
HighRes = Yes
(titlebar)
PosX = 0
PosY = 0
SizeX = 71
SizeY = 5
(mastervol)
PosX = 71
PosY = 0
SizeX = 9
SizeY = 5
(volbars)
PosX = 0
PosY = 5
SizeX = 80
SizeY = 19
(filesel)
PosX = 0
PosY = 24
SizeX = 15
SizeY = 26
(infownd)
PosX = 15
PosY = 24
SizeX = 65
SizeY = 16
(instwnd)
PosX = 15
PosY = 40
SizeX = 43
SizeY = 10
(songwnd)
PosX = 58
PosY = 40
SizeX = 22
SizeY = 10