Merge branch 'master' into processing
This commit is contained in:
commit
5acf27f407
@ -18,7 +18,7 @@ screenData = {
|
||||
'oldCursor':{'x':0,'y':0},
|
||||
'oldContentBytes': b'',
|
||||
'oldContentText': '',
|
||||
'oldContentAttrib': b'',
|
||||
'oldContentAttrib': None,
|
||||
'oldApplication': '',
|
||||
'oldTTY':None,
|
||||
'newDelta': '',
|
||||
@ -29,9 +29,27 @@ screenData = {
|
||||
'newCursor':{'x':0,'y':0},
|
||||
'newContentBytes': b'',
|
||||
'newContentText': '',
|
||||
'newContentAttrib': b'',
|
||||
'newContentAttrib': None,
|
||||
'newTTY':'0',
|
||||
'newApplication': '',
|
||||
'lastScreenUpdate': time.time(),
|
||||
'autoIgnoreScreens':[],
|
||||
}
|
||||
'''
|
||||
screenData = {
|
||||
'columns': 0,
|
||||
'lines': 0,
|
||||
'textDelta': '',
|
||||
'negativeDelta': '',
|
||||
'attribDelta': '',
|
||||
'reviewCursor':None, #{'x':0,'y':0}
|
||||
'attribCursor':None, #{'x':0,'y':0}
|
||||
'textCursor':None, #{'x':0,'y':0}
|
||||
'content': None, #{'x':0,'y':0}
|
||||
'Text': '',
|
||||
'Attrib': None,
|
||||
'screen': None,
|
||||
'application': '',
|
||||
'timestamp': 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
|
||||
|
@ -7,7 +7,7 @@
|
||||
from core import debug
|
||||
from collections import Counter
|
||||
import string
|
||||
|
||||
|
||||
def removeNonprintable(text):
|
||||
# Get the difference of all ASCII characters from the set of printable characters
|
||||
nonprintable = set([chr(i) for i in range(128)]).difference(string.printable)
|
||||
@ -17,8 +17,8 @@ def removeNonprintable(text):
|
||||
def insertNewlines(string, every=64):
|
||||
return '\n'.join(string[i:i+every] for i in range(0, len(string), every))
|
||||
|
||||
def splitEvery(string, every=64):
|
||||
return list(string[i:i+every] for i in range(0, len(string), every))
|
||||
def splitEvery(toSplit, every=64):
|
||||
return list(toSplit[i:i+every] for i in range(0, len(toSplit), every))
|
||||
|
||||
def trackHighlights(oldAttr, newAttr, text, lenght):
|
||||
result = ''
|
||||
@ -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,10 +45,11 @@ def trackHighlights(oldAttr, newAttr, text, lenght):
|
||||
if bgStat[1][1] > 40:
|
||||
background.append(bgStat[1][0])
|
||||
except Exception as e:
|
||||
background.append(chr(7))
|
||||
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])):
|
||||
print(new[line][column])
|
||||
if old[line][column] != new[line][column]:
|
||||
if not new[line][column] in background:
|
||||
if not currCursor:
|
||||
@ -56,3 +59,11 @@ def trackHighlights(oldAttr, newAttr, text, lenght):
|
||||
result += textLines[line][column]
|
||||
result += ' '
|
||||
return result, currCursor
|
||||
|
||||
'''
|
||||
t = 'hallo\nwelt!'
|
||||
old = ((1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0))
|
||||
new = ((0,1,1,1),(1,1,1,1),(1,1,1,1),(1,1,1,1),(1,1,1,1),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0),(1,1,0,0))
|
||||
|
||||
trackHighlights(old,new,t,5)
|
||||
'''
|
||||
|
Loading…
Reference in New Issue
Block a user