1
0
Fork 0
baconscript/comment.py

78 lines
2.3 KiB
Python
Raw Normal View History

2018-10-17 20:56:59 -04:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""comment.py: Hog 4 comment macro interpreter and OSC bridge."""
__author__ = "Kevin Matz"
__copyright__ = "Copyright 2018, Company 235, LLC"
__credits__ = ["Kevin Matz"]
__license__ = "MIT"
2018-10-21 14:22:02 -04:00
__version__ = "3.9"
2018-10-17 20:56:59 -04:00
__maintainer__ = "Kevin Matz"
__email__ = "kevin@company235.com"
__status__ = "Prototype"
import antlr4
import configparser
2018-10-21 14:14:56 -04:00
import logging
2018-10-17 20:56:59 -04:00
import readline
import signal
import sys
from CommentMacroLexer import CommentMacroLexer
from CommentMacroParser import CommentMacroParser
2018-10-20 15:55:24 -04:00
from OscCommentMacroListener import OscCommentMacroListener
2018-10-17 20:56:59 -04:00
from pythonosc import udp_client
2018-10-21 14:14:56 -04:00
# setup logging
logger = logging.getLogger("CommentMacro")
logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler() # create console handler and
ch.setLevel(logging.INFO) # set console log level to INFO
logger.addHandler(ch) # add console log handler
# TODO: refactor this to support multiple net#s
2018-10-17 20:56:59 -04:00
config = configparser.ConfigParser(allow_no_value=True)
2018-10-21 14:14:56 -04:00
config.read('server.cfg') # open config file
2018-10-21 22:15:40 -04:00
servers = {} # init an empty dictionary
2018-10-21 14:14:56 -04:00
server = config['hog4'] # section of config file
net = server.getint("net", 1) # default to net #1
logger.info("Adding Hog device at net# " + str(net))
# osc clients are added to the dictionary with the net # as the key
2018-10-21 22:15:40 -04:00
servers[net] = udp_client.SimpleUDPClient(server.get("ip", "10.0.0.1"),
server.getint("port", 6600))
2018-10-17 20:56:59 -04:00
def comment(text):
input_stream = antlr4.InputStream(text)
lexer = CommentMacroLexer(input_stream)
stream = antlr4.CommonTokenStream(lexer)
parser = CommentMacroParser(stream)
2018-10-20 15:55:24 -04:00
tree = parser.prog()
2018-10-21 22:15:40 -04:00
oscMacro = OscCommentMacroListener(servers)
2018-10-20 15:55:24 -04:00
walker = antlr4.ParseTreeWalker()
walker.walk(oscMacro, tree)
2018-10-17 20:56:59 -04:00
2018-10-21 14:20:11 -04:00
def orderly_exit():
logger.info('Goodbye.')
sys.exit(0)
2018-10-17 20:56:59 -04:00
if __name__ == '__main__':
signal.signal(signal.SIGINT, orderly_exit)
if len(sys.argv) > 1:
2018-10-21 14:14:56 -04:00
logger.debug("found macro at argv[1]")
2018-10-17 20:56:59 -04:00
comment(sys.argv[1])
else:
while True:
text = input("comment# ")
if text == 'exit':
2018-10-21 14:20:11 -04:00
orderly_exit()
2018-10-21 14:14:56 -04:00
else:
comment(text)