-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ini
85 lines (75 loc) · 2.97 KB
/
config.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
;ASAPCabinetFE Config file
;Do not change anything between []s or before the = sign.
;If a field is left empty, it will use a default value.
[VPX]
;These must be absolute paths to the tables folder and vpx executable.
;You MUST SET THESE TO YOUR OWN!
TablesPath = /home/tarso/Games/vpinball/build/tables/
ExecutableCmd = /home/tarso/Games/vpinball/build/VPinballX_GL
;Use Args if you need extra settings, the cmdline form as below:
;StartArgs ExecutableCmd -play TablesPath/<selectedtable>.vpx EndArgs
StartArgs =
EndArgs =
[CustomMedia]
;These are relative to the table folder.
;So /path/to/<allmytables>/<mytable1>/ 'images/|video/'
;Priority is: custom video/ -> custom images/ -> [default video -> default image.](/img/)
;Images can be PNG or JPG, Videos MP4
;Defaults to images/table|backglass|wheel|marquee.png
TableImage = images/table.png
BackglassImage = images/backglass.png
WheelImage = images/wheel.png
;If you want a marquee where the dmd lies, use this file and no dmd video file present.
;Note that if the field is left empty it will use a default value.(video/dmd.mp4)
DmdImage = images/marquee.png
;Videos will take priority over images if both found.
;Defaults to video/table/backglass/dmd.mp4
TableVideo = video/table.mp4
BackglassVideo = video/backglass.mp4
DmdVideo = video/dmd.mp4
[WindowSettings]
;These are not the resolution of the monitor per se, but usually they are.
;These are the window sizes to be created, so you can have 2 windows
;on the same monitor, for example. Best if it's a match with vpx settings.
;The main monitor is the table playfield window
;Defaults to :1 1080x1920 (portrait)
MainMonitor = 1
MainWidth = 1080
MainHeight = 1920
;The secondary monitor is the backglass + dmd window
;Defaults to :0 1024x1024 (square)
SecondMonitor = 0
SecondWidth = 1024
SecondHeight = 1024
[Font]
;Defaults to 28
Size = 28
[MediaDimensions]
;Media will be scaled to these sizes, so try to keep your art close to that resolution.
;Size defaults to 300, margin 24
WheelImageSize = 350
WheelImageMargin = 24
;Note that the backglass + dmd media size must not be over the secondary window area.
;So a 1024x1024 window can support a 1024x768 backglass with a 1024x256 dmd under it.(default)
BackglassWidth = 1024
BackglassHeight = 768
DmdWidth = 1024
DmdHeight = 256
;---------------------------------------------------------------------------------------
[Internal]
;You should probably leave these alone.
SubCmd = -Play
DefaultTableImage = img/default_table.png
DefaultBackglassImage = img/default_backglass.png
DefaultDmdImage = img/default_dmd.png
DefaultWheelImage = img/default_wheel.png
DefaultTableVideo = img/default_table.mp4
DefaultBackglassVideo = img/default_backglass.mp4
DefaultDmdVideo = img/default_dmd.mp4
;Transition ms time for images, for videos use '1' = No Transition
FadeDurationMs = 1
;Alpha goes from 0 to 255 (128 for 50%)
FadeTargetAlpha = 255
FontPath = /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
TableChangeSound = snd/table_change.mp3
TableLoadSound = snd/table_load.mp3