mirror of
https://github.com/aidygus/LinVAM.git
synced 2024-11-26 02:28:06 +11:00
Compare commits
No commits in common. "60b143be889448a9fad6e390308f7279d0427644" and "5a498172820a4e7e990e2b224918fb9a83335e29" have entirely different histories.
60b143be88
...
5a49817282
@ -6,6 +6,7 @@ from keyactioneditwnd import KeyActionEditWnd
|
|||||||
from mouseactioneditwnd import MouseActionEditWnd
|
from mouseactioneditwnd import MouseActionEditWnd
|
||||||
from pauseactioneditwnd import PauseActionEditWnd
|
from pauseactioneditwnd import PauseActionEditWnd
|
||||||
import json
|
import json
|
||||||
|
import keyboard
|
||||||
|
|
||||||
class CommandEditWnd(QDialog):
|
class CommandEditWnd(QDialog):
|
||||||
def __init__(self, p_command, p_parent = None):
|
def __init__(self, p_command, p_parent = None):
|
||||||
|
@ -2,7 +2,9 @@ from PyQt5.QtCore import *
|
|||||||
from PyQt5.QtGui import *
|
from PyQt5.QtGui import *
|
||||||
from PyQt5.QtWidgets import *
|
from PyQt5.QtWidgets import *
|
||||||
from ui_keyactioneditwnd import Ui_KeyActionEditDialog
|
from ui_keyactioneditwnd import Ui_KeyActionEditDialog
|
||||||
|
import json
|
||||||
import keyboard
|
import keyboard
|
||||||
|
import time
|
||||||
import threading
|
import threading
|
||||||
|
|
||||||
class KeyActionEditWnd(QDialog):
|
class KeyActionEditWnd(QDialog):
|
||||||
|
18
main.py
18
main.py
@ -8,9 +8,10 @@ import json
|
|||||||
from profileexecutor import ProfileExecutor
|
from profileexecutor import ProfileExecutor
|
||||||
import sys
|
import sys
|
||||||
import pickle
|
import pickle
|
||||||
|
import time
|
||||||
|
import keyboard
|
||||||
|
import threading
|
||||||
import signal
|
import signal
|
||||||
import os
|
|
||||||
import shutil
|
|
||||||
|
|
||||||
class MainWnd(QWidget):
|
class MainWnd(QWidget):
|
||||||
def __init__(self, p_parent = None):
|
def __init__(self, p_parent = None):
|
||||||
@ -47,12 +48,12 @@ class MainWnd(QWidget):
|
|||||||
w_profile = json.loads(w_jsonProfile)
|
w_profile = json.loads(w_jsonProfile)
|
||||||
w_profiles.append(w_profile)
|
w_profiles.append(w_profile)
|
||||||
|
|
||||||
with open(self.getSettingsPath("profiles.dat"), "wb") as f:
|
with open("profiles.dat", "wb") as f:
|
||||||
pickle.dump(w_profiles, f, pickle.HIGHEST_PROTOCOL)
|
pickle.dump(w_profiles, f, pickle.HIGHEST_PROTOCOL)
|
||||||
|
|
||||||
def loadFromDatabase(self):
|
def loadFromDatabase(self):
|
||||||
w_profiles = []
|
w_profiles = []
|
||||||
with open(self.getSettingsPath("profiles.dat"), "rb") as f:
|
with open("profiles.dat", "rb") as f:
|
||||||
w_profiles = pickle.load(f)
|
w_profiles = pickle.load(f)
|
||||||
|
|
||||||
for w_profile in w_profiles:
|
for w_profile in w_profiles:
|
||||||
@ -62,15 +63,6 @@ class MainWnd(QWidget):
|
|||||||
|
|
||||||
return len(w_profiles)
|
return len(w_profiles)
|
||||||
|
|
||||||
def getSettingsPath(self, setting):
|
|
||||||
home = os.path.expanduser("~") + '/.linvam/'
|
|
||||||
if not os.path.exists(home):
|
|
||||||
os.mkdir(home)
|
|
||||||
if not os.path.exists(home + setting):
|
|
||||||
shutil.copyfile(setting, home + setting)
|
|
||||||
|
|
||||||
return home + setting
|
|
||||||
|
|
||||||
def loadTestProfiles(self):
|
def loadTestProfiles(self):
|
||||||
|
|
||||||
w_carProfileDict = {
|
w_carProfileDict = {
|
||||||
|
@ -2,6 +2,7 @@ from PyQt5.QtCore import *
|
|||||||
from PyQt5.QtGui import *
|
from PyQt5.QtGui import *
|
||||||
from PyQt5.QtWidgets import *
|
from PyQt5.QtWidgets import *
|
||||||
from ui_mouseactioneditwnd import Ui_MouseActionEditDialog
|
from ui_mouseactioneditwnd import Ui_MouseActionEditDialog
|
||||||
|
import json
|
||||||
|
|
||||||
|
|
||||||
class MouseActionEditWnd(QDialog):
|
class MouseActionEditWnd(QDialog):
|
||||||
|
@ -2,6 +2,7 @@ from PyQt5.QtCore import *
|
|||||||
from PyQt5.QtGui import *
|
from PyQt5.QtGui import *
|
||||||
from PyQt5.QtWidgets import *
|
from PyQt5.QtWidgets import *
|
||||||
from ui_pauseactioneditwnd import Ui_PauseActionEditDialog
|
from ui_pauseactioneditwnd import Ui_PauseActionEditDialog
|
||||||
|
import json
|
||||||
|
|
||||||
class PauseActionEditWnd(QDialog):
|
class PauseActionEditWnd(QDialog):
|
||||||
def __init__(self, p_pauseAction, p_parent = None):
|
def __init__(self, p_pauseAction, p_parent = None):
|
||||||
|
@ -5,6 +5,7 @@ from ui_profileeditwnd import Ui_ProfileEditDialog
|
|||||||
from commandeditwnd import CommandEditWnd
|
from commandeditwnd import CommandEditWnd
|
||||||
import json
|
import json
|
||||||
from profileexecutor import *
|
from profileexecutor import *
|
||||||
|
import sys
|
||||||
|
|
||||||
class ProfileEditWnd(QDialog):
|
class ProfileEditWnd(QDialog):
|
||||||
def __init__(self, p_profile, p_parent = None):
|
def __init__(self, p_profile, p_parent = None):
|
||||||
|
@ -2,8 +2,9 @@ import keyboard
|
|||||||
from pynput.mouse import Button, Controller
|
from pynput.mouse import Button, Controller
|
||||||
import time
|
import time
|
||||||
import threading
|
import threading
|
||||||
import os, pyaudio
|
import copy
|
||||||
import shutil
|
import json
|
||||||
|
import sys, os, pyaudio
|
||||||
from pocketsphinx.pocketsphinx import *
|
from pocketsphinx.pocketsphinx import *
|
||||||
from sphinxbase.sphinxbase import *
|
from sphinxbase.sphinxbase import *
|
||||||
|
|
||||||
@ -29,21 +30,12 @@ class ProfileExecutor(threading.Thread):
|
|||||||
# Process audio chunk by chunk. On keyword detected perform action and restart search
|
# Process audio chunk by chunk. On keyword detected perform action and restart search
|
||||||
self.m_decoder = Decoder(self.m_config)
|
self.m_decoder = Decoder(self.m_config)
|
||||||
|
|
||||||
def getSettingsPath(self, setting):
|
|
||||||
home = os.path.expanduser("~") + '/.linvam/'
|
|
||||||
if not os.path.exists(home):
|
|
||||||
os.mkdir(home)
|
|
||||||
if not os.path.exists(home + setting):
|
|
||||||
shutil.copyfile(setting, home + setting)
|
|
||||||
|
|
||||||
return home + setting
|
|
||||||
|
|
||||||
def setProfile(self, p_profile):
|
def setProfile(self, p_profile):
|
||||||
self.m_profile = p_profile
|
self.m_profile = p_profile
|
||||||
if self.m_profile == None:
|
if self.m_profile == None:
|
||||||
return
|
return
|
||||||
|
|
||||||
w_commandWordFile = open(self.getSettingsPath('command.list'), 'w')
|
w_commandWordFile = open('command.list', 'w')
|
||||||
w_commands = self.m_profile['commands']
|
w_commands = self.m_profile['commands']
|
||||||
i = 0
|
i = 0
|
||||||
for w_command in w_commands:
|
for w_command in w_commands:
|
||||||
@ -52,7 +44,7 @@ class ProfileExecutor(threading.Thread):
|
|||||||
w_commandWordFile.write(w_command['name'] + ' /1e-%d/' % w_command['threshold'])
|
w_commandWordFile.write(w_command['name'] + ' /1e-%d/' % w_command['threshold'])
|
||||||
i = i + 1
|
i = i + 1
|
||||||
w_commandWordFile.close()
|
w_commandWordFile.close()
|
||||||
self.m_config.set_string('-kws', self.getSettingsPath('command.list'))
|
self.m_config.set_string('-kws', 'command.list')
|
||||||
|
|
||||||
def setEnableListening(self, p_enable):
|
def setEnableListening(self, p_enable):
|
||||||
self.m_listening = p_enable
|
self.m_listening = p_enable
|
||||||
|
Loading…
Reference in New Issue
Block a user