2019-07-22 11:27:42 +09:00

25 lines
465 B
JavaScript

'use strict'
function Osc (ronin) {
const osc = require('osc')
this.msg = {}
this.start = function () {
const udpPort = new osc.UDPPort({
localAddress: '0.0.0.0',
localPort: 49162,
metadata: true
})
udpPort.on('message', this.onMsg)
udpPort.open()
ronin.log('OSC', 'Started.')
}
this.onMsg = (msg, timeTag, info) => {
if (ronin.bindings[msg.address]) {
ronin.bindings[msg.address](msg.args)
}
}
}