fix toneburst
[enigma2.git] / lib / python / Components / NimManager.py
index f9b9ff6d55956c3c8152ea54adc20dbcb43946c6..18c09b6e63f249e90f3f172265eb053c274b2a3b 100644 (file)
@@ -1,4 +1,4 @@
-from config import config, ConfigSubsection, ConfigSelection, ConfigFloat, ConfigSatlist, ConfigYesNo, ConfigInteger, ConfigSubList, ConfigNothing, ConfigSubDict
+from config import config, ConfigSubsection, ConfigSelection, ConfigFloat, ConfigSatlist, ConfigYesNo, ConfigInteger, ConfigSubList, ConfigNothing, ConfigSubDict, ConfigOnOff
 
 from enigma import eDVBSatelliteEquipmentControl, \
        eDVBSatelliteLNBParameters as lnbParam, \
@@ -16,6 +16,14 @@ from xml.sax.handler import ContentHandler
 
 from Tools.BoundFunction import boundFunction
 
+def getConfigSatlist(orbpos, satlist):
+       default_orbpos = None
+       for x in satlist:
+               if x[0] == orbpos:
+                       default_orbpos = orbpos
+                       break
+       return ConfigSatlist(satlist, default_orbpos)
+
 def tryOpen(filename):
        try:
                procFile = open(filename)
@@ -32,7 +40,6 @@ class SecConfigure:
                        tunermask |= (1 << self.equal[slotid])
                elif self.linked.has_key(slotid):
                        tunermask |= (1 << self.linked[slotid])
-               sec.setLNBTunerMask(tunermask)
                sec.setLNBLOFL(9750000)
                sec.setLNBLOFH(10600000)
                sec.setLNBThreshold(11700000)
@@ -56,7 +63,6 @@ class SecConfigure:
                elif (diseqcmode == 3): # diseqc 1.2
                        if self.satposdepends.has_key(slotid):
                                tunermask |= (1 << self.satposdepends[slotid])
-                               sec.setLNBTunerMask(tunermask)
                        sec.setLatitude(latitude)
                        sec.setLaDirection(laDirection)
                        sec.setLongitude(longitude)
@@ -72,6 +78,8 @@ class SecConfigure:
                                sec.setRotorPosNum(0) # USALS
                                self.satList.append(int(x[0]))
 
+               sec.setLNBTunerMask(tunermask)
+
        def setSatposDepends(self, sec, nim1, nim2):
                print "tuner", nim1, "depends on satpos of", nim2
                sec.setTunerDepends(nim1, nim2)
@@ -97,13 +105,13 @@ class SecConfigure:
                        nim = config.Nims[x]
                        if slot.nimType == self.NimManager.nimType["DVB-S"]:
                                if nim.configMode.value == "equal":
-                                       self.equal[nim.equalTo.value]=x
+                                       self.equal[nim.equalTo.index]=x
                                if nim.configMode.value == "loopthrough":
-                                       self.linkNIMs(sec, x, nim.linkedTo.value)
-                                       self.linked[nim.linkedTo.value]=x
+                                       self.linkNIMs(sec, x, nim.linkedTo.index)
+                                       self.linked[nim.linkedTo.index]=x
                                elif nim.configMode.value == "satposdepends":
                                        self.setSatposDepends(sec, x, nim.satposDependsTo.index)
-                                       self.satposdepends[nim.satposDependsTo.value]=x
+                                       self.satposdepends[nim.satposDependsTo.index]=x
 
                for slot in self.NimManager.nimslots:
                        x = slot.slotid
@@ -353,14 +361,14 @@ class NimManager:
                                self.parsedCab = str(tname)
                        elif (name == "transponder"):
                                freq = int(attrs.get('frequency',""))
-                               sr = int(attrs.get('symbol_rate',""))
-                               mod = int(attrs.get('modulation',"3")) # QAM64 default
-                               fec = int(attrs.get('fec_inner',"0")) # AUTO default
+                               #sr = int(attrs.get('symbol_rate',""))
+                               #mod = int(attrs.get('modulation',"3")) # QAM64 default
+                               #fec = int(attrs.get('fec_inner',"0")) # AUTO default
                                if self.parsedCab in self.transponders:
                                        pass
                                else:
                                        self.transponders[self.parsedCab] = [ ]
-                               self.transponders[self.parsedCab].append((1, freq, sr, mod, fec))
+                               self.transponders[self.parsedCab].append((1, freq))
 
        class parseTerrestrials(ContentHandler):
                def __init__(self, terrestrialsList, transponders):
@@ -410,13 +418,16 @@ class NimManager:
                return self.transpondersterrestrial[region]
        
        def getCableDescription(self, nim):
-               return self.cablesList[config.Nims[nim].cable.value]
+               return self.cablesList[0]
+       
+       def getCableTrustNit(self, nim):
+               return (config.Nims[nim].cabletype.value == "quick")
 
        def getTerrestrialDescription(self, nim):
-               return self.terrestrialsList[config.Nims[nim].terrestrial.value][0]
+               return self.terrestrialsList[config.Nims[nim].terrestrial.index][0]
 
        def getTerrestrialFlags(self, nim):
-               return self.terrestrialsList[config.Nims[nim].terrestrial.value][1]
+               return self.terrestrialsList[config.Nims[nim].terrestrial.index][1]
 
        def getConfiguredSats(self):
                return self.sec.getSatList()
@@ -573,9 +584,9 @@ class NimManager:
 
                        if configMode == "simple":
                                dm = config.Nims[slotid].diseqcMode.value
-                               if dm in ["single", "toneburst", "diseqc_a_b", "diseqc_a_b_c_d"]:
+                               if dm in ["single", "toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"]:
                                        list.append(self.satList[config.Nims[slotid].diseqcA.index])
-                               if dm in ["toneburst", "diseqc_a_b", "diseqc_a_b_c_d"]:
+                               if dm in ["toneburst_a_b", "diseqc_a_b", "diseqc_a_b_c_d"]:
                                        list.append(self.satList[config.Nims[slotid].diseqcB.index])
                                if dm == "diseqc_a_b_c_d":
                                        list.append(self.satList[config.Nims[slotid].diseqcC.index])
@@ -608,7 +619,7 @@ class NimManager:
                                        lnbnum = int(nim.advanced.sat[x[0]].lnb.value)
                                        if lnbnum != 0:
                                                lnb = nim.advanced.lnb[lnbnum]
-                                               if lnb.diseqcMode.value == "diseqc_a_b_c_d":
+                                               if lnb.diseqcMode.value == "1_2":
                                                        list.append(x)
                return list
 
@@ -661,16 +672,15 @@ def InitNimManager(nimmgr):
                                                "advanced": _("advanced")},
                                        default = "simple")
                        else:
-
                                nim.configMode = ConfigSelection(
                                        choices = {
                                                "equal": _("equal to Socket A"),
-                                               "looptrough": _("loopthrough to socket A"),
+                                               "loopthrough": _("loopthrough to socket A"),
                                                "nothing": _("nothing connected"),
                                                "satposdepends": _("second cable of motorized LNB"),
                                                "simple": _("simple"),
                                                "advanced": _("advanced")},
-                                       default = "looptrough")
+                                       default = "loopthrough")
 
                        #important - check if just the 2nd one is LT only and the first one is DVB-S
                        if nim.configMode.value in ["loopthrough", "satposdepends", "equal"]:
@@ -695,8 +705,9 @@ def InitNimManager(nimmgr):
                                        ("diseqc_a_b_c_d", _("DiSEqC A/B/C/D")),
                                        ("positioner", _("Positioner"))],
                                default = "diseqc_a_b")
-                       nim.diseqcA = ConfigSatlist(default = 192, list = nimmgr.satList)
-                       nim.diseqcB = ConfigSatlist(default = 130, list = nimmgr.satList)
+
+                       nim.diseqcA = getConfigSatlist(192, nimmgr.satList)
+                       nim.diseqcB = getConfigSatlist(130, nimmgr.satList)
                        nim.diseqcC = ConfigSatlist(list = nimmgr.satList)
                        nim.diseqcD = ConfigSatlist(list = nimmgr.satList)
                        nim.positionerMode = ConfigSelection(
@@ -727,7 +738,7 @@ def InitNimManager(nimmgr):
                        
                        # advanced config:
                        nim.advanced = ConfigSubsection()
-                       nim.advanced.sats = ConfigSatlist(default = 192, list = nimmgr.satList)
+                       nim.advanced.sats = getConfigSatlist(192,nimmgr.satList)
                        nim.advanced.sat = ConfigSubDict()
                        lnbs = [("0", "not available")]
                        for y in range(1, 33):
@@ -783,11 +794,13 @@ def InitNimManager(nimmgr):
                                nim.advanced.lnb[x].powerThreshold = ConfigInteger(default=50, limits=(0, 100))
 
                elif slot.nimType == nimmgr.nimType["DVB-C"]:
-                       nim.cable = ConfigSelection(choices = nimmgr.cablesList)
+                       nim.cabletype = ConfigSelection(choices = [("quick", _("Quick")), ("complete", _("Complete"))])
                elif slot.nimType == nimmgr.nimType["DVB-T"]:
                        list = []
+                       n = 0
                        for x in nimmgr.terrestrialsList:
-                               list.append(x[0])
+                               list.append((str(n), x[0]))
+                               n += 1
                        nim.terrestrial = ConfigSelection(choices = list)
                        nim.terrestrial_5V = ConfigOnOff()
                else: