-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathifrac.bgl
91 lines (76 loc) · 2.58 KB
/
ifrac.bgl
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
#========================================================
# Sample background music play list for IFRAC
# See man page for details
#--------------------------------------------------------
# Created 13-Aug-00
#========================================================
# Default settings (apply to all levels,
# unless otherwise specified).
[default]
out=%null #redirect stdout to /dev/null
in=%null #redirect stdin to /dev/null
err=%std #don't redirect stderr
opt=loop,nostop,nokill #resume play after finished
#do not use SIGSTOP for pausing
#use SIGTERM (not SIGKILL) to terminate
vol=50 #volume: 0 - no volume, 99 - max volume
# %same - volume unchanged (default)
pau=0 # default pause value
pri=4 # default priority increment
[ext:mp3]
# A command line may have '%f' for explicit file name location,
# as seen from the following example. Actually, in this case
# it is redundant, becase file name is automatically appended,
# if '%f' is not specified.
app=mpg123 -q %f
opt=stop # Recent mpg123 should work OK with SIGSTOP
[ext:mod,xm,s3m,it]
app=mikmod -q
opt=stop
[ext:mid,kar]
app=playmidi
# playmidi does not seem to support SIGSTOP
pau=1000
pri=2
[intro]
file=/f:/mid/gusmid/672-chia.mid
opt=noloop # Specific option for a particular level
[scores]
file=/f:/mid/gusmid/675-du.mid
[topscore]
file=/f:/mid/abba/trooper.mid
[stat]
file=%stop # Stop music for 'Statistics' screen
[1] # Level 1
# ~ stands for current home directory
# (~homer would stand for homer's home directory)
# '.gz' suffix does not effect the file type: it
# will be interpreted as '.mod'
file=~/stamper.mod.gz
[2] # Level 2
# Exaple of having a space in the middle of file name.
# Don't use back slash, or surrounding quotation marks
# just type 'as is'
file=~/mp3/Eagles HotelCalifornia.mp3 # ~ stands for home directory
[3]
file=%leave # Same tune can be spread ...
[4]
file=%leave # ... over several adjacent levels
# Level 5
[5]
# When the explicit file type is needed...
file=/f:/mod/lizard/mod[1].whispers.zip
app=%mod
vol=30 # Specific volume level
[6]
file=%leave
vol=50 # Back to standard volume
[7]
# ~fred stands for fred's home directory. For current user's
# home directory just use ~ as showin in example for level 2
file=~fred/xm/n97-amb2.xm
[8]
file=%leave
[9]
file=%stop # Stop music for the last level
# A a good idea, esp. with a 486 :=)