improve application detection and speed up
This commit is contained in:
parent
bc5bc3d1ef
commit
f231f72cbe
@ -21,12 +21,12 @@ class screenManager():
|
||||
def shutdown(self):
|
||||
self.env['runtime']['settingsManager'].shutdownDriver('screenDriver')
|
||||
|
||||
def update(self, trigger = 'onUpdate'):
|
||||
def update(self, trigger='onUpdate'):
|
||||
self.env['runtime']['screenDriver'].getCurrScreen()
|
||||
if not self.isSuspendingScreen():
|
||||
if trigger == 'onUpdate' or self.isScreenChange():
|
||||
self.env['runtime']['screenDriver'].getCurrApplication()
|
||||
if not self.isSuspendingScreen():
|
||||
self.env['runtime']['screenDriver'].update(trigger)
|
||||
if trigger == 'onUpdate' or self.isScreenChange() or len(self.env['screenData']['newDelta']) > 6:
|
||||
self.env['runtime']['screenDriver'].getCurrApplication()
|
||||
self.env['screenData']['lastScreenUpdate'] = time.time()
|
||||
|
||||
def isSuspendingScreen(self):
|
||||
|
@ -49,7 +49,7 @@ class fenrir():
|
||||
if self.environment['input']['keyForeward'] > 0:
|
||||
self.environment['input']['keyForeward'] -=1
|
||||
self.environment['runtime']['screenManager'].update('onInput')
|
||||
self.environment['runtime']['commandManager'].executeDefaultTrigger('onInput')
|
||||
self.environment['runtime']['commandManager'].executeDefaultTrigger('onInput')
|
||||
else:
|
||||
self.environment['runtime']['screenManager'].update('onUpdate')
|
||||
if self.environment['runtime']['applicationManager'].isApplicationChange():
|
||||
|
@ -33,14 +33,17 @@ class driver():
|
||||
r, w, x = select(self.iDevices, [], [], self.env['runtime']['settingsManager'].getSettingAsFloat('screen', 'screenUpdateDelay'))
|
||||
if r != []:
|
||||
for fd in r:
|
||||
event = self.iDevices[fd].read_one()
|
||||
self.env['input']['eventBuffer'].append( [self.iDevices[fd], self.uDevices[fd], event])
|
||||
if event.code != 0:
|
||||
currMapEvent = self.env['runtime']['inputDriver'].mapEvent(event)
|
||||
if not currMapEvent:
|
||||
return currMapEvent
|
||||
if currMapEvent['EventState'] in [0,1,2]:
|
||||
return currMapEvent
|
||||
while(True):
|
||||
event = self.iDevices[fd].read_one()
|
||||
if not event:
|
||||
return None
|
||||
self.env['input']['eventBuffer'].append( [self.iDevices[fd], self.uDevices[fd], event])
|
||||
if event.code != 0:
|
||||
currMapEvent = self.env['runtime']['inputDriver'].mapEvent(event)
|
||||
if not currMapEvent:
|
||||
return currMapEvent
|
||||
if currMapEvent['EventState'] in [0,1,2]:
|
||||
return currMapEvent
|
||||
return None
|
||||
|
||||
def writeEventBuffer(self):
|
||||
|
@ -71,7 +71,7 @@ class driver():
|
||||
return xlist
|
||||
|
||||
|
||||
def update(self, trigger='updateScreen'):
|
||||
def update(self, trigger='onUpdate'):
|
||||
newContentBytes = b''
|
||||
try:
|
||||
# read screen
|
||||
|
Loading…
Reference in New Issue
Block a user