-
Notifications
You must be signed in to change notification settings - Fork 12
/
onset_simulator.py
64 lines (49 loc) · 1.73 KB
/
onset_simulator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# This file is part of Firemix.
#
# Copyright 2013-2016 Jonathan Evans <jon@craftyjon.com>
#
# Firemix is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Firemix is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Firemix. If not, see <http://www.gnu.org/licenses/>.
from PyQt5 import QtCore, QtNetwork
import logging
import sys
import signal
logging.basicConfig()
log = logging.getLogger("onset_simulator")
class OnsetSimulator(QtCore.QObject):
"""
Simulates onset detector for testing without a sound source
"""
def __init__(self):
QtCore.QObject.__init__(self)
self.socket = QtNetwork.QUdpSocket(self)
self.timer = QtCore.QTimer()
self.timer.setInterval(500)
self.timer.timeout.connect(self.send_packet)
self.timer.start()
def stop(self):
self.timer.stop()
def send_packet(self):
dgram = QtCore.QByteArray()
dgram.append(0x77)
self.socket.writeDatagram(dgram, QtNetwork.QHostAddress.LocalHost, 3010)
def sig_handler(s, f):
global app
app.quit()
if __name__ == "__main__":
log.info("OnsetSimulator starting up")
app = QtCore.QCoreApplication(sys.argv)
onset = OnsetSimulator()
app.aboutToQuit.connect(onset.stop)
signal.signal(signal.SIGINT, sig_handler)
sys.exit(app.exec_())