fix hilight tracking
This commit is contained in:
parent
d2825556f0
commit
79eb342317
@ -18,7 +18,7 @@ screenData = {
|
||||
'oldCursor':{'x':0,'y':0},
|
||||
'oldContentBytes': b'',
|
||||
'oldContentText': '',
|
||||
'oldContentAttrib': b'',
|
||||
'oldContentAttrib': None,
|
||||
'oldApplication': '',
|
||||
'oldTTY':None,
|
||||
'newDelta': '',
|
||||
@ -29,7 +29,7 @@ screenData = {
|
||||
'newCursor':{'x':0,'y':0},
|
||||
'newContentBytes': b'',
|
||||
'newContentText': '',
|
||||
'newContentAttrib': b'',
|
||||
'newContentAttrib': None,
|
||||
'newTTY':'0',
|
||||
'newApplication': '',
|
||||
'lastScreenUpdate': time.time(),
|
||||
|
@ -198,11 +198,11 @@ class driver():
|
||||
|
||||
def autoDecodeVCSA(self, allData, rows, cols):
|
||||
allText = ''
|
||||
allAttrib = b''
|
||||
allAttrib = []
|
||||
i = 0
|
||||
for y in range(rows):
|
||||
lineText = ''
|
||||
lineAttrib = b''
|
||||
lineAttrib = []
|
||||
for x in range(cols):
|
||||
data = allData[i: i + 2]
|
||||
i += 2
|
||||
@ -211,7 +211,7 @@ class driver():
|
||||
#ink = 7
|
||||
#paper = 0
|
||||
#ch = ' '
|
||||
lineAttrib += b'7'
|
||||
lineAttrib.append((7,7,0,0,0,0)) # attribute, ink, paper, blink, bold, underline
|
||||
lineText += ' '
|
||||
continue
|
||||
(sh,) = unpack("=H", data)
|
||||
@ -219,7 +219,6 @@ class driver():
|
||||
ch = sh & 0xFF
|
||||
if self.hichar == 0x100:
|
||||
attr >>= 1
|
||||
lineAttrib += bytes(attr)
|
||||
ink = attr & 0x0F
|
||||
paper = (attr>>4) & 0x0F
|
||||
#if (ink != 7) or (paper != 0):
|
||||
@ -230,6 +229,7 @@ class driver():
|
||||
lineText += self.charmap[ch]
|
||||
except KeyError:
|
||||
lineText += chr('?')
|
||||
lineAttrib.append((attr,ink, paper,0,0,0)) # attribute, ink, paper, blink, bold, underline
|
||||
allText += lineText + '\n'
|
||||
allAttrib += lineAttrib
|
||||
return str(allText), allAttrib
|
||||
@ -280,7 +280,7 @@ class driver():
|
||||
|
||||
if self.env['screen']['newTTY'] != self.env['screen']['oldTTY']:
|
||||
self.env['screen']['oldContentBytes'] = b''
|
||||
self.env['screen']['oldContentAttrib'] = b''
|
||||
self.env['screen']['oldContentAttrib'] = None
|
||||
self.env['screen']['oldContentText'] = ''
|
||||
self.env['screen']['oldCursor']['x'] = 0
|
||||
self.env['screen']['oldCursor']['y'] = 0
|
||||
|
@ -29,11 +29,13 @@ def trackHighlights(oldAttr, newAttr, text, lenght):
|
||||
return result, currCursor
|
||||
if len(oldAttr) != len(newAttr):
|
||||
return result, currCursor
|
||||
|
||||
old = splitEvery(oldAttr,lenght)
|
||||
new = splitEvery(newAttr,lenght)
|
||||
textLines = text.split('\n')
|
||||
background = []
|
||||
if len(textLines) != len(new):
|
||||
|
||||
if len(textLines) - 1 != len(new):
|
||||
return result, currCursor
|
||||
try:
|
||||
bgStat = Counter(newAttr).most_common(3)
|
||||
@ -43,7 +45,7 @@ def trackHighlights(oldAttr, newAttr, text, lenght):
|
||||
if bgStat[1][1] > 40:
|
||||
background.append(bgStat[1][0])
|
||||
except Exception as e:
|
||||
background.append((1,1,1,1))
|
||||
background.append((7,7,0,0,0,0))
|
||||
for line in range(len(new)):
|
||||
if old[line] != new[line]:
|
||||
for column in range(len(new[line])):
|
||||
|
Loading…
Reference in New Issue
Block a user