fix playing change screen sound, directly bypass keypress on ignorescreen
This commit is contained in:
parent
51e5935e19
commit
598ef8d96c
@ -22,10 +22,11 @@ class screenManager():
|
|||||||
self.env['runtime']['settingsManager'].shutdownDriver('screenDriver')
|
self.env['runtime']['settingsManager'].shutdownDriver('screenDriver')
|
||||||
|
|
||||||
def update(self, trigger = 'onUpdate'):
|
def update(self, trigger = 'onUpdate'):
|
||||||
self.env['screenData']['newTTY'] = self.env['runtime']['screenDriver'].getCurrScreen()
|
self.env['runtime']['screenDriver'].getCurrScreen()
|
||||||
if trigger == 'onUpdate':
|
|
||||||
self.env['runtime']['applicationManager'].getCurrentApplication()
|
|
||||||
if not self.isSuspendingScreen():
|
if not self.isSuspendingScreen():
|
||||||
|
if trigger == 'onUpdate':
|
||||||
|
self.env['runtime']['applicationManager'].getCurrentApplication()
|
||||||
self.env['runtime']['screenDriver'].update(trigger)
|
self.env['runtime']['screenDriver'].update(trigger)
|
||||||
self.env['screenData']['lastScreenUpdate'] = time.time()
|
self.env['screenData']['lastScreenUpdate'] = time.time()
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ class fenrir():
|
|||||||
eventReceived = self.environment['runtime']['inputManager'].getInputEvent()
|
eventReceived = self.environment['runtime']['inputManager'].getInputEvent()
|
||||||
if eventReceived:
|
if eventReceived:
|
||||||
self.prepareCommand()
|
self.prepareCommand()
|
||||||
if not (self.wasCommand or self.environment['runtime']['inputManager'].isFenrirKeyPressed() or self.environment['generalInformation']['tutorialMode']):
|
if not (self.wasCommand or self.environment['runtime']['inputManager'].isFenrirKeyPressed() or self.environment['generalInformation']['tutorialMode']) or self.environment['runtime']['screenManager'].isSuspendingScreen():
|
||||||
self.environment['runtime']['inputManager'].writeEventBuffer()
|
self.environment['runtime']['inputManager'].writeEventBuffer()
|
||||||
|
|
||||||
if self.environment['runtime']['inputManager'].noKeyPressed():
|
if self.environment['runtime']['inputManager'].noKeyPressed():
|
||||||
|
@ -19,19 +19,18 @@ class driver():
|
|||||||
return '\n'.join(string[i:i+every] for i in range(0, len(string), every))
|
return '\n'.join(string[i:i+every] for i in range(0, len(string), every))
|
||||||
|
|
||||||
def getCurrScreen(self):
|
def getCurrScreen(self):
|
||||||
currScreen = ''
|
self.env['screenData']['oldTTY'] = self.env['screenData']['newTTY']
|
||||||
try:
|
try:
|
||||||
currScreenFile = open('/sys/devices/virtual/tty/tty0/active','r')
|
currScreenFile = open('/sys/devices/virtual/tty/tty0/active','r')
|
||||||
currScreen = currScreenFile.read()[3:-1]
|
self.env['screenData']['newTTY'] = str(currScreenFile.read()[3:-1])
|
||||||
currScreenFile.close()
|
currScreenFile.close()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
|
self.env['runtime']['debug'].writeDebugOut(str(e),debug.debugLevel.ERROR)
|
||||||
return currScreen
|
|
||||||
|
|
||||||
def getCurrApplication(self):
|
def getCurrApplication(self):
|
||||||
apps = []
|
apps = []
|
||||||
try:
|
try:
|
||||||
currScreen = str(self.env['screenData']['newTTY'])
|
currScreen = self.env['screenData']['newTTY']
|
||||||
apps = subprocess.Popen('ps -t tty' + currScreen + ' -o comm,tty,stat', shell=True, stdout=subprocess.PIPE).stdout.read().decode()[:-1].split('\n')
|
apps = subprocess.Popen('ps -t tty' + currScreen + ' -o comm,tty,stat', shell=True, stdout=subprocess.PIPE).stdout.read().decode()[:-1].split('\n')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
@ -73,11 +72,10 @@ class driver():
|
|||||||
|
|
||||||
|
|
||||||
def update(self, trigger='updateScreen'):
|
def update(self, trigger='updateScreen'):
|
||||||
newTTY = ''
|
|
||||||
newContentBytes = b''
|
newContentBytes = b''
|
||||||
try:
|
try:
|
||||||
# read screen
|
# read screen
|
||||||
vcsa = open(self.vcsaDevicePath + newTTY,'rb',0)
|
vcsa = open(self.vcsaDevicePath + self.env['screenData']['newTTY'],'rb',0)
|
||||||
newContentBytes = vcsa.read()
|
newContentBytes = vcsa.read()
|
||||||
vcsa.close()
|
vcsa.close()
|
||||||
if len(newContentBytes) < 5:
|
if len(newContentBytes) < 5:
|
||||||
@ -92,10 +90,6 @@ class driver():
|
|||||||
self.env['screenData']['oldContentTextAttrib'] = self.env['screenData']['newContentAttrib']
|
self.env['screenData']['oldContentTextAttrib'] = self.env['screenData']['newContentAttrib']
|
||||||
self.env['screenData']['oldCursor']['x'] = self.env['screenData']['newCursor']['x']
|
self.env['screenData']['oldCursor']['x'] = self.env['screenData']['newCursor']['x']
|
||||||
self.env['screenData']['oldCursor']['y'] = self.env['screenData']['newCursor']['y']
|
self.env['screenData']['oldCursor']['y'] = self.env['screenData']['newCursor']['y']
|
||||||
if self.env['screenData']['oldTTY'] == '-1':
|
|
||||||
self.env['screenData']['oldTTY'] = self.env['screenData']['newTTY']
|
|
||||||
else:
|
|
||||||
self.env['screenData']['oldTTY'] = self.env['screenData']['newTTY']
|
|
||||||
self.env['screenData']['oldDelta'] = self.env['screenData']['newDelta']
|
self.env['screenData']['oldDelta'] = self.env['screenData']['newDelta']
|
||||||
self.env['screenData']['oldNegativeDelta'] = self.env['screenData']['newNegativeDelta']
|
self.env['screenData']['oldNegativeDelta'] = self.env['screenData']['newNegativeDelta']
|
||||||
self.env['screenData']['newContentBytes'] = newContentBytes
|
self.env['screenData']['newContentBytes'] = newContentBytes
|
||||||
|
Loading…
Reference in New Issue
Block a user