Support customized subtitles.
[vuplus_dvbapp] / lib / python / Components / UsageConfig.py
1 from Components.Harddisk import harddiskmanager
2 from Components.NimManager import nimmanager
3 from config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet, ConfigLocations
4 from Tools.Directories import resolveFilename, SCOPE_HDD
5 from enigma import Misc_Options, eEnv
6 from enigma import setTunerTypePriorityOrder, setPreferredTuner
7 from SystemInfo import SystemInfo
8 import os
9
10 def InitUsageConfig():
11         config.usage = ConfigSubsection();
12         config.usage.showdish = ConfigYesNo(default = True)
13         config.usage.multibouquet = ConfigYesNo(default = False)
14         config.usage.multiepg_ask_bouquet = ConfigYesNo(default = False)
15
16         config.usage.quickzap_bouquet_change = ConfigYesNo(default = False)
17         config.usage.e1like_radio_mode = ConfigYesNo(default = False)
18         config.usage.infobar_timeout = ConfigSelection(default = "5", choices = [
19                 ("0", _("no timeout")), ("1", "1 " + _("second")), ("2", "2 " + _("seconds")), ("3", "3 " + _("seconds")),
20                 ("4", "4 " + _("seconds")), ("5", "5 " + _("seconds")), ("6", "6 " + _("seconds")), ("7", "7 " + _("seconds")),
21                 ("8", "8 " + _("seconds")), ("9", "9 " + _("seconds")), ("10", "10 " + _("seconds"))])
22         config.usage.show_infobar_on_zap = ConfigYesNo(default = True)
23         config.usage.show_infobar_on_skip = ConfigYesNo(default = True)
24         config.usage.show_infobar_on_event_change = ConfigYesNo(default = True)
25         config.usage.hdd_standby = ConfigSelection(default = "600", choices = [
26                 ("0", _("no standby")), ("10", "10 " + _("seconds")), ("30", "30 " + _("seconds")),
27                 ("60", "1 " + _("minute")), ("120", "2 " + _("minutes")),
28                 ("300", "5 " + _("minutes")), ("600", "10 " + _("minutes")), ("1200", "20 " + _("minutes")),
29                 ("1800", "30 " + _("minutes")), ("3600", "1 " + _("hour")), ("7200", "2 " + _("hours")),
30                 ("14400", "4 " + _("hours")) ])
31         config.usage.output_12V = ConfigSelection(default = "do not change", choices = [
32                 ("do not change", _("do not change")), ("off", _("off")), ("on", _("on")) ])
33
34         config.usage.pip_zero_button = ConfigSelection(default = "standard", choices = [
35                 ("standard", _("standard")), ("swap", _("swap PiP and main picture")),
36                 ("swapstop", _("move PiP to main picture")), ("stop", _("stop PiP")) ])
37
38         config.usage.default_path = ConfigText(default = resolveFilename(SCOPE_HDD))
39         config.usage.timer_path = ConfigText(default = "<default>")
40         config.usage.instantrec_path = ConfigText(default = "<default>")
41         config.usage.timeshift_path = ConfigText(default = "/media/hdd/")
42         config.usage.allowed_timeshift_paths = ConfigLocations(default = ["/media/hdd/"])
43
44         config.usage.on_movie_start = ConfigSelection(default = "ask", choices = [
45                 ("ask", _("Ask user")), ("resume", _("Resume from last position")), ("beginning", _("Start from the beginning")) ])
46         config.usage.on_movie_stop = ConfigSelection(default = "ask", choices = [
47                 ("ask", _("Ask user")), ("movielist", _("Return to movie list")), ("quit", _("Return to previous service")) ])
48         config.usage.on_movie_eof = ConfigSelection(default = "ask", choices = [
49                 ("ask", _("Ask user")), ("movielist", _("Return to movie list")), ("quit", _("Return to previous service")), ("pause", _("Pause movie at end")) ])
50
51         config.usage.setup_level = ConfigSelection(default = "intermediate", choices = [
52                 ("simple", _("Simple")),
53                 ("intermediate", _("Intermediate")),
54                 ("expert", _("Expert")) ])
55
56         config.usage.on_long_powerpress = ConfigSelection(default = "show_menu", choices = [
57                 ("show_menu", _("show shutdown menu")),
58                 ("shutdown", _("immediate shutdown")),
59                 ("standby", _("Standby")) ] )
60         
61         config.usage.on_short_powerpress = ConfigSelection(default = "standby", choices = [
62                 ("show_menu", _("show shutdown menu")),
63                 ("shutdown", _("immediate shutdown")),
64                 ("standby", _("Standby")) ] )
65
66
67         config.usage.alternatives_priority = ConfigSelection(default = "0", choices = [
68                 ("0", "DVB-S/-C/-T"),
69                 ("1", "DVB-S/-T/-C"),
70                 ("2", "DVB-C/-S/-T"),
71                 ("3", "DVB-C/-T/-S"),
72                 ("4", "DVB-T/-C/-S"),
73                 ("5", "DVB-T/-S/-C") ])
74
75         nims = [ ("-1", _("auto")) ]
76         for x in nimmanager.nim_slots:
77                 nims.append( (str(x.slot), x.getSlotName()) )
78         config.usage.frontend_priority = ConfigSelection(default = "-1", choices = nims)
79
80         config.usage.show_event_progress_in_servicelist = ConfigYesNo(default = False)
81
82         config.usage.blinking_display_clock_during_recording = ConfigYesNo(default = False)
83
84         config.usage.show_message_when_recording_starts = ConfigYesNo(default = True)
85
86         config.usage.load_length_of_movies_in_moviellist = ConfigYesNo(default = True)
87         
88         def TunerTypePriorityOrderChanged(configElement):
89                 setTunerTypePriorityOrder(int(configElement.value))
90         config.usage.alternatives_priority.addNotifier(TunerTypePriorityOrderChanged, immediate_feedback=False)
91
92         def PreferredTunerChanged(configElement):
93                 setPreferredTuner(int(configElement.value))
94         config.usage.frontend_priority.addNotifier(PreferredTunerChanged)
95
96         def setHDDStandby(configElement):
97                 for hdd in harddiskmanager.HDDList():
98                         hdd[1].setIdleTime(int(configElement.value))
99         config.usage.hdd_standby.addNotifier(setHDDStandby, immediate_feedback=False)
100
101         def set12VOutput(configElement):
102                 if configElement.value == "on":
103                         Misc_Options.getInstance().set_12V_output(1)
104                 elif configElement.value == "off":
105                         Misc_Options.getInstance().set_12V_output(0)
106         config.usage.output_12V.addNotifier(set12VOutput, immediate_feedback=False)
107
108         SystemInfo["12V_Output"] = Misc_Options.getInstance().detected_12V_output()
109
110         config.usage.keymap = ConfigText(default = eEnv.resolve("${datadir}/enigma2/keymap.xml"))
111
112         config.seek = ConfigSubsection()
113         config.seek.selfdefined_13 = ConfigNumber(default=15)
114         config.seek.selfdefined_46 = ConfigNumber(default=60)
115         config.seek.selfdefined_79 = ConfigNumber(default=300)
116
117         config.seek.speeds_forward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
118         config.seek.speeds_backward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
119         config.seek.speeds_slowmotion = ConfigSet(default=[2, 4, 8], choices=[2, 4, 6, 8, 12, 16, 25])
120
121         config.seek.enter_forward = ConfigSelection(default = "2", choices = ["2", "4", "6", "8", "12", "16", "24", "32", "48", "64", "96", "128"])
122         config.seek.enter_backward = ConfigSelection(default = "1", choices = ["1", "2", "4", "6", "8", "12", "16", "24", "32", "48", "64", "96", "128"])
123
124         config.seek.on_pause = ConfigSelection(default = "play", choices = [
125                 ("play", _("Play")),
126                 ("step", _("Singlestep (GOP)")),
127                 ("last", _("Last speed")) ])
128
129         config.usage.timerlist_finished_timer_position = ConfigSelection(default = "beginning", choices = [("beginning", _("at beginning")), ("end", _("at end"))])
130
131         def updateEnterForward(configElement):
132                 if not configElement.value:
133                         configElement.value = [2]
134                 updateChoices(config.seek.enter_forward, configElement.value)
135
136         config.seek.speeds_forward.addNotifier(updateEnterForward, immediate_feedback = False)
137
138         def updateEnterBackward(configElement):
139                 if not configElement.value:
140                         configElement.value = [2]
141                 updateChoices(config.seek.enter_backward, configElement.value)
142
143         config.seek.speeds_backward.addNotifier(updateEnterBackward, immediate_feedback = False)
144
145         config.subtitles = ConfigSubsection()
146         config.subtitles.subtitle_fontcolor = ConfigSelection(default = "0", choices = [
147                 ("0", _("default")),
148                 ("1", _("white")),
149                 ("2", _("yellow")),
150                 ("3", _("green")),
151                 ("4", _("cyan")),
152                 ("5", _("blue")),
153                 ("6", _("magneta")),
154                 ("7", _("red")),
155                 ("8", _("black")) ])
156         config.subtitles.subtitle_fontsize  = ConfigSelection(choices = ["%d" % x for x in range(16,101) if not x % 2], default = "20")
157         config.subtitles.subtitle_bgcolor = ConfigSelection(default = "0", choices = [
158                 ("0", _("black")),
159                 ("1", _("red")),
160                 ("2", _("magneta")),
161                 ("3", _("blue")),
162                 ("4", _("cyan")),
163                 ("5", _("green")),
164                 ("6", _("yellow")),
165                 ("7", _("white"))])
166         config.subtitles.subtitle_bgopacity = ConfigSelection(default = "225", choices = [
167                 ("0", _("No transparency")),
168                 ("25", "10%"),
169                 ("50", "20%"),
170                 ("75", "30%"),
171                 ("100", "40%"),
172                 ("125", "50%"),
173                 ("150", "60%"),
174                 ("175", "70%"),
175                 ("200", "80%"),
176                 ("225", "90%"),
177                 ("255", _("Full transparency"))])
178         config.subtitles.subtitle_edgestyle = ConfigSelection(default = "2", choices = [
179                 ("0", "None"),
180                 ("1", "Raised"),
181                 ("2", "Depressed"),
182                 ("3", "Uniform")])
183         config.subtitles.subtitle_edgestyle_level = ConfigSelection(choices = ["0", "1", "2", "3", "4", "5"], default = "3")
184         config.subtitles.subtitle_opacity = ConfigSelection(default = "0", choices = [
185                 ("0", _("No transparency")),
186                 ("75", "25%"),
187                 ("150", "50%")])
188         config.subtitles.subtitle_original_position = ConfigYesNo(default = True)
189         config.subtitles.subtitle_alignment = ConfigSelection(choices = [("left", _("left")), ("center", _("center")), ("right", _("right"))], default = "center")
190         config.subtitles.subtitle_position = ConfigSelection( choices = ["0", "50", "100", "150", "200", "250", "300", "350", "400", "450", "500", "550", "600"], default = "50")
191
192         config.subtitles.dvb_subtitles_centered = ConfigYesNo(default = False)
193
194         subtitle_delay_choicelist = []
195         for i in range(-900000, 1845000, 45000):
196                 if i == 0:
197                         subtitle_delay_choicelist.append(("0", _("No delay")))
198                 else:
199                         subtitle_delay_choicelist.append((str(i), "%2.1f sec" % (i / 90000.)))
200         config.subtitles.subtitle_noPTSrecordingdelay = ConfigSelection(default = "315000", choices = subtitle_delay_choicelist)
201         config.subtitles.subtitle_bad_timing_delay = ConfigSelection(default = "0", choices = subtitle_delay_choicelist)
202         config.subtitles.subtitle_rewrap = ConfigYesNo(default = False)
203         config.subtitles.colourise_dialogs = ConfigYesNo(default = False)
204         config.subtitles.pango_subtitle_fontswitch = ConfigYesNo(default = True)
205         config.subtitles.pango_subtitles_delay = ConfigSelection(default = "0", choices = subtitle_delay_choicelist)
206         config.subtitles.pango_subtitles_fps = ConfigSelection(default = "1", choices = [
207                 ("1", _("Original")),
208                 ("23976", _("23.976")),
209                 ("24000", _("24")),
210                 ("25000", _("25")),
211                 ("29970", _("29.97")),
212                 ("30000", _("30"))])
213         config.subtitles.pango_autoturnon = ConfigYesNo(default = True)
214
215 def updateChoices(sel, choices):
216         if choices:
217                 defval = None
218                 val = int(sel.value)
219                 if not val in choices:
220                         tmp = choices[:]
221                         tmp.reverse()
222                         for x in tmp:
223                                 if x < val:
224                                         defval = str(x)
225                                         break
226                 sel.setChoices(map(str, choices), defval)
227
228 def preferredPath(path):
229         if config.usage.setup_level.index < 2 or path == "<default>":
230                 return None  # config.usage.default_path.value, but delay lookup until usage
231         elif path == "<current>":
232                 return config.movielist.last_videodir.value
233         elif path == "<timer>":
234                 return config.movielist.last_timer_videodir.value
235         else:
236                 return path
237
238 def preferredTimerPath():
239         return preferredPath(config.usage.timer_path.value)
240
241 def preferredInstantRecordPath():
242         return preferredPath(config.usage.instantrec_path.value)
243
244 def defaultMoviePath():
245         return config.usage.default_path.value
246